sshguard-2.3.1/000755 001751 001751 00000000000 13412703327 014217 5ustar00kevinzkevinz000000 000000 sshguard-2.3.1/src/000755 001751 001751 00000000000 13412703327 015006 5ustar00kevinzkevinz000000 000000 sshguard-2.3.1/configure.ac000644 001751 001751 00000002514 13411747072 016513 0ustar00kevinzkevinz000000 000000 # Process this file with autoconf to produce a configure script. AC_PREREQ([2.60]) AC_INIT([sshguard], [2.3.1], [sshguard-users@lists.sourceforge.net]) AM_MAINTAINER_MODE([enable]) AC_CONFIG_SRCDIR([src/sshguard.in]) AM_CONFIG_HEADER([src/common/config.h]) AM_INIT_AUTOMAKE([foreign]) AM_SILENT_RULES([yes]) AC_REQUIRE_AUX_FILE([tap-driver.sh]) # Enable POSIX extensions on hosts that normally disable them. AC_USE_SYSTEM_EXTENSIONS AS_BOX([Program Checks]) AC_PROG_CC_C99 AC_PROG_RANLIB AC_PROG_YACC AM_PROG_AR AM_PROG_LEX AS_BOX([Headers, Types, and Compiler Checks]) AC_CHECK_HEADERS([getopt.h]) AC_CHECK_HEADERS([sys/capsicum.h sys/capability.h], capsicum_found=candidate) AS_IF([test "$capsicum_found" == "candidate"], AC_CHECK_FUNCS([cap_enter cap_rights_limit], capsicum_found=yes)) AS_IF([test "$capsicum_found" == "yes"], [AC_DEFINE([CAPSICUM], [1], [Use Capsicum])]) AC_CHECK_PROGS(RST2MAN_PROG, [rst2man rst2man.py], no) AM_CONDITIONAL([BUILD_MAN], [test "x$RST2MAN_PROG" != xno]) AS_IF([test "$RST2MAN_PROG" == "no"], [AC_MSG_WARN([rst2man not found; using pre-built man pages])]) AS_BOX([Library Functions]) AC_SEARCH_LIBS([gethostbyname], [nsl]) AC_SEARCH_LIBS([pthread_create], [pthread]) AC_SEARCH_LIBS([socket], [socket]) AC_OUTPUT([Makefile src/Makefile src/blocker/Makefile src/fw/Makefile src/parser/Makefile]) sshguard-2.3.1/Makefile.am000644 001751 001751 00000000324 13405335557 016262 0ustar00kevinzkevinz000000 000000 SUBDIRS = src EXTRA_DIST = doc/ examples/ CHANGELOG.rst CONTRIBUTING.rst INSTALL.rst README.rst dist_man_MANS = doc/sshguard-setup.7 doc/sshguard.8 if BUILD_MAN SUFFIXES=.rst .rst: $(RST2MAN_PROG) $< $@ endif sshguard-2.3.1/test-driver000755 001751 001751 00000011042 13405337255 016420 0ustar00kevinzkevinz000000 000000 #! /bin/sh # test-driver - basic testsuite driver script. scriptversion=2018-03-07.03; # UTC # Copyright (C) 2011-2018 Free Software Foundation, Inc. # # 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, 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, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . # Make unconditional expansion of undefined variables an error. This # helps a lot in preventing typo-related bugs. set -u usage_error () { echo "$0: $*" >&2 print_usage >&2 exit 2 } print_usage () { cat <$log_file 2>&1 estatus=$? if test $enable_hard_errors = no && test $estatus -eq 99; then tweaked_estatus=1 else tweaked_estatus=$estatus fi case $tweaked_estatus:$expect_failure in 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;; 0:*) col=$grn res=PASS recheck=no gcopy=no;; 77:*) col=$blu res=SKIP recheck=no gcopy=yes;; 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;; *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;; *:*) col=$red res=FAIL recheck=yes gcopy=yes;; esac # Report the test outcome and exit status in the logs, so that one can # know whether the test passed or failed simply by looking at the '.log' # file, without the need of also peaking into the corresponding '.trs' # file (automake bug#11814). echo "$res $test_name (exit status: $estatus)" >>$log_file # Report outcome to console. echo "${col}${res}${std}: $test_name" # Register the test result, and other relevant metadata. echo ":test-result: $res" > $trs_file echo ":global-test-result: $res" >> $trs_file echo ":recheck: $recheck" >> $trs_file echo ":copy-in-global-log: $gcopy" >> $trs_file # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: sshguard-2.3.1/missing000755 001751 001751 00000015336 13405337255 015633 0ustar00kevinzkevinz000000 000000 #! /bin/sh # Common wrapper for a few potentially missing GNU programs. scriptversion=2018-03-07.03; # UTC # Copyright (C) 1996-2018 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard , 1996. # 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, 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, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try '$0 --help' for more information" exit 1 fi case $1 in --is-lightweight) # Used by our autoconf macros to check whether the available missing # script is modern enough. exit 0 ;; --run) # Back-compat with the calling convention used by older automake. shift ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due to PROGRAM being missing or too old. Options: -h, --help display this help and exit -v, --version output version information and exit Supported PROGRAM values: aclocal autoconf autoheader autom4te automake makeinfo bison yacc flex lex help2man Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and 'g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: unknown '$1' option" echo 1>&2 "Try '$0 --help' for more information" exit 1 ;; esac # Run the given program, remember its exit status. "$@"; st=$? # If it succeeded, we are done. test $st -eq 0 && exit 0 # Also exit now if we it failed (or wasn't found), and '--version' was # passed; such an option is passed most likely to detect whether the # program is present and works. case $2 in --version|--help) exit $st;; esac # Exit code 63 means version mismatch. This often happens when the user # tries to use an ancient version of a tool on a file that requires a # minimum version. if test $st -eq 63; then msg="probably too old" elif test $st -eq 127; then # Program was missing. msg="missing on your system" else # Program was found and executed, but failed. Give up. exit $st fi perl_URL=https://www.perl.org/ flex_URL=https://github.com/westes/flex gnu_software_URL=https://www.gnu.org/software program_details () { case $1 in aclocal|automake) echo "The '$1' program is part of the GNU Automake package:" echo "<$gnu_software_URL/automake>" echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/autoconf>" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; autoconf|autom4te|autoheader) echo "The '$1' program is part of the GNU Autoconf package:" echo "<$gnu_software_URL/autoconf/>" echo "It also requires GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; esac } give_advice () { # Normalize program name to check for. normalized_program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` printf '%s\n' "'$1' is $msg." configure_deps="'configure.ac' or m4 files included by 'configure.ac'" case $normalized_program in autoconf*) echo "You should only need it if you modified 'configure.ac'," echo "or m4 files included by it." program_details 'autoconf' ;; autoheader*) echo "You should only need it if you modified 'acconfig.h' or" echo "$configure_deps." program_details 'autoheader' ;; automake*) echo "You should only need it if you modified 'Makefile.am' or" echo "$configure_deps." program_details 'automake' ;; aclocal*) echo "You should only need it if you modified 'acinclude.m4' or" echo "$configure_deps." program_details 'aclocal' ;; autom4te*) echo "You might have modified some maintainer files that require" echo "the 'autom4te' program to be rebuilt." program_details 'autom4te' ;; bison*|yacc*) echo "You should only need it if you modified a '.y' file." echo "You may want to install the GNU Bison package:" echo "<$gnu_software_URL/bison/>" ;; lex*|flex*) echo "You should only need it if you modified a '.l' file." echo "You may want to install the Fast Lexical Analyzer package:" echo "<$flex_URL>" ;; help2man*) echo "You should only need it if you modified a dependency" \ "of a man page." echo "You may want to install the GNU Help2man package:" echo "<$gnu_software_URL/help2man/>" ;; makeinfo*) echo "You should only need it if you modified a '.texi' file, or" echo "any other file indirectly affecting the aspect of the manual." echo "You might want to install the Texinfo package:" echo "<$gnu_software_URL/texinfo/>" echo "The spurious makeinfo call might also be the consequence of" echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" echo "want to install GNU make:" echo "<$gnu_software_URL/make/>" ;; *) echo "You might have modified some files without having the proper" echo "tools for further handling them. Check the 'README' file, it" echo "often tells you about the needed prerequisites for installing" echo "this package. You may also peek at any GNU archive site, in" echo "case some other package contains this missing '$1' program." ;; esac } give_advice "$1" | sed -e '1s/^/WARNING: /' \ -e '2,$s/^/ /' >&2 # Propagate the correct exit status (expected to be 127 for a program # not found, 63 for a program that failed due to version mismatch). exit $st # Local variables: # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: sshguard-2.3.1/examples/000755 001751 001751 00000000000 13405335557 016045 5ustar00kevinzkevinz000000 000000 sshguard-2.3.1/depcomp000755 001751 001751 00000056020 13405337255 015604 0ustar00kevinzkevinz000000 000000 #! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2018-03-07.03; # UTC # Copyright (C) 1999-2018 Free Software Foundation, Inc. # 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, 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, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by 'PROGRAMS ARGS'. object Object file output by 'PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputting dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac # Get the directory component of the given path, and save it in the # global variables '$dir'. Note that this directory component will # be either empty or ending with a '/' character. This is deliberate. set_dir_from () { case $1 in */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;; *) dir=;; esac } # Get the suffix-stripped basename of the given path, and save it the # global variable '$base'. set_base_from () { base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'` } # If no dependency file was actually created by the compiler invocation, # we still have to create a dummy depfile, to avoid errors with the # Makefile "include basename.Plo" scheme. make_dummy_depfile () { echo "#dummy" > "$depfile" } # Factor out some common post-processing of the generated depfile. # Requires the auxiliary global variable '$tmpdepfile' to be set. aix_post_process_depfile () { # If the compiler actually managed to produce a dependency file, # post-process it. if test -f "$tmpdepfile"; then # Each line is of the form 'foo.o: dependency.h'. # Do two passes, one to just change these to # $object: dependency.h # and one to simply output # dependency.h: # which is needed to avoid the deleted-header problem. { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile" } > "$depfile" rm -f "$tmpdepfile" else make_dummy_depfile fi } # A tabulation character. tab=' ' # A newline character. nl=' ' # Character ranges might be problematic outside the C locale. # These definitions help. upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ lower=abcdefghijklmnopqrstuvwxyz digits=0123456789 alpha=${upper}${lower} if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Avoid interferences from the environment. gccflag= dashmflag= # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi cygpath_u="cygpath -u -f -" if test "$depmode" = msvcmsys; then # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvisualcpp fi if test "$depmode" = msvc7msys; then # This is just like msvc7 but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvc7 fi if test "$depmode" = xlc; then # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information. gccflag=-qmakedep=gcc,-MF depmode=gcc fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## Note that this doesn't just cater to obsosete pre-3.x GCC compilers. ## but also to in-use compilers like IMB xlc/xlC and the HP C compiler. ## (see the conditional assignment to $gccflag above). ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). Also, it might not be ## supported by the other compilers which use the 'gcc' depmode. ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The second -e expression handles DOS-style file names with drive # letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the "deleted header file" problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. ## Some versions of gcc put a space before the ':'. On the theory ## that the space means something, we add a space to the output as ## well. hp depmode also adds that space, but also prefixes the VPATH ## to the object. Take care to not repeat it in the output. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like '#:fec' to the end of the # dependency line. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \ | tr "$nl" ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" ;; xlc) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts '$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done aix_post_process_depfile ;; tcc) # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26 # FIXME: That version still under development at the moment of writing. # Make that this statement remains true also for stable, released # versions. # It will wrap lines (doesn't matter whether long or short) with a # trailing '\', as in: # # foo.o : \ # foo.c \ # foo.h \ # # It will put a trailing '\' even on the last line, and will use leading # spaces rather than leading tabs (at least since its commit 0394caf7 # "Emit spaces for -MD"). "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'. # We have to change lines of the first kind to '$object: \'. sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile" # And for each line of the second kind, we have to emit a 'dep.h:' # dummy dependency, to avoid the deleted-header problem. sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile" rm -f "$tmpdepfile" ;; ## The order of this option in the case statement is important, since the ## shell code in configure will try each of these formats in the order ## listed in this file. A plain '-MD' option would be understood by many ## compilers, so we must ensure this comes after the gcc and icc options. pgcc) # Portland's C compiler understands '-MD'. # Will always output deps to 'file.d' where file is the root name of the # source file under compilation, even if file resides in a subdirectory. # The object file name does not affect the name of the '.d' file. # pgcc 10.2 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using '\' : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... set_dir_from "$object" # Use the source, not the object, to determine the base name, since # that's sadly what pgcc will do too. set_base_from "$source" tmpdepfile=$base.d # For projects that build the same source file twice into different object # files, the pgcc approach of using the *source* file root name can cause # problems in parallel builds. Use a locking strategy to avoid stomping on # the same $tmpdepfile. lockdir=$base.d-lock trap " echo '$0: caught signal, cleaning up...' >&2 rmdir '$lockdir' exit 1 " 1 2 13 15 numtries=100 i=$numtries while test $i -gt 0; do # mkdir is a portable test-and-set. if mkdir "$lockdir" 2>/dev/null; then # This process acquired the lock. "$@" -MD stat=$? # Release the lock. rmdir "$lockdir" break else # If the lock is being held by a different process, wait # until the winning process is done or we timeout. while test -d "$lockdir" && test $i -gt 0; do sleep 1 i=`expr $i - 1` done fi i=`expr $i - 1` done trap - 1 2 13 15 if test $i -le 0; then echo "$0: failed to acquire lock after $numtries attempts" >&2 echo "$0: check lockdir '$lockdir'" >&2 exit 1 fi if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile" # Add 'dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in 'foo.d' instead, so we check for that too. # Subdirectories are respected. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then # Libtool generates 2 separate objects for the 2 libraries. These # two compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir$base.o.d # libtool 1.5 tmpdepfile2=$dir.libs/$base.o.d # Likewise. tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d "$@" -MD fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done # Same post-processing that is required for AIX mode. aix_post_process_depfile ;; msvc7) if test "$libtool" = yes; then showIncludes=-Wc,-showIncludes else showIncludes=-showIncludes fi "$@" $showIncludes > "$tmpdepfile" stat=$? grep -v '^Note: including file: ' "$tmpdepfile" if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The first sed program below extracts the file names and escapes # backslashes for cygpath. The second sed program outputs the file # name when reading, but also accumulates all include files in the # hold buffer in order to output them again at the end. This only # works with sed implementations that can handle large buffers. sed < "$tmpdepfile" -n ' /^Note: including file: *\(.*\)/ { s//\1/ s/\\/\\\\/g p }' | $cygpath_u | sort -u | sed -n ' s/ /\\ /g s/\(.*\)/'"$tab"'\1 \\/p s/.\(.*\) \\/\1:/ H $ { s/.*/'"$tab"'/ G p }' >> "$depfile" echo >> "$depfile" # make sure the fragment doesn't end with a backslash rm -f "$tmpdepfile" ;; msvc7msys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for ':' # in the target name. This is to cope with DOS-style filenames: # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. "$@" $dashmflag | sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this sed invocation # correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift cleared=no eat=no for arg do case $cleared in no) set ""; shift cleared=yes ;; esac if test $eat = yes; then eat=no continue fi case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -arch) eat=yes ;; -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix=`echo "$object" | sed 's/^.*\././'` touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" # makedepend may prepend the VPATH from the source file name to the object. # No need to regex-escape $object, excess matching of '.' is harmless. sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process the last invocation # correctly. Breaking it into two sed invocations is a workaround. sed '1,2d' "$tmpdepfile" \ | tr ' ' "$nl" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E \ | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi IFS=" " for arg do case "$arg" in -o) shift ;; $object) shift ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E 2>/dev/null | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" echo "$tab" >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; msvcmsys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: sshguard-2.3.1/configure000755 001751 001751 00000601556 13412435607 016146 0ustar00kevinzkevinz000000 000000 #! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for sshguard 2.3.1. # # Report bugs to . # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then _as_can_reexec=no; export _as_can_reexec; # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 as_fn_exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test \$(( 1 + 1 )) = 2 || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir/$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org and $0: sshguard-users@lists.sourceforge.net about your system, $0: including any error possibly output before this $0: message. Then install a modern shell, or manually run $0: the script under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall # in an infinite loop. This has already happened in practice. _as_can_reexec=no; export _as_can_reexec # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='sshguard' PACKAGE_TARNAME='sshguard' PACKAGE_VERSION='2.3.1' PACKAGE_STRING='sshguard 2.3.1' PACKAGE_BUGREPORT='sshguard-users@lists.sourceforge.net' PACKAGE_URL='' ac_unique_file="src/sshguard.in" # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef STDC_HEADERS # include # include #else # ifdef HAVE_STDLIB_H # include # endif #endif #ifdef HAVE_STRING_H # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIBOBJS BUILD_MAN_FALSE BUILD_MAN_TRUE RST2MAN_PROG LEXLIB LEX_OUTPUT_ROOT LEX ac_ct_AR AR YFLAGS YACC RANLIB EGREP GREP CPP am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V AM_V am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM MAINT MAINTAINER_MODE_FALSE MAINTAINER_MODE_TRUE target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL am__quote' ac_subst_files='' ac_user_opts=' enable_option_checking enable_maintainer_mode enable_silent_rules enable_dependency_tracking ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CPP YACC YFLAGS' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures sshguard 2.3.1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/sshguard] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of sshguard 2.3.1:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --disable-maintainer-mode disable make rules and dependencies not useful (and sometimes confusing) to the casual installer --enable-silent-rules less verbose build output (undo: "make V=1") --disable-silent-rules verbose build output (undo: "make V=0") --enable-dependency-tracking do not reject slow dependency extractors --disable-dependency-tracking speeds up one-time build Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor YACC The `Yet Another Compiler Compiler' implementation to use. Defaults to the first program found out of: `bison -y', `byacc', `yacc'. YFLAGS The list of arguments that will be passed by default to $YACC. This script will default YFLAGS to the empty string to avoid a default value of `-d' given by some make applications. Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to . _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF sshguard configure 2.3.1 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_c_try_cpp LINENO # ---------------------- # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_cpp # ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists, giving a warning if it cannot be compiled using # the include files in INCLUDES and setting the cache variable VAR # accordingly. ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <$2> _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ( $as_echo "## --------------------------------------------------- ## ## Report this to sshguard-users@lists.sourceforge.net ## ## --------------------------------------------------- ##" ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_mongrel # ac_fn_c_try_run LINENO # ---------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_run # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_link cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by sshguard $as_me 2.3.1, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } # Check whether --enable-maintainer-mode was given. if test "${enable_maintainer_mode+set}" = set; then : enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval else USE_MAINTAINER_MODE=yes fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 $as_echo "$USE_MAINTAINER_MODE" >&6; } if test $USE_MAINTAINER_MODE = yes; then MAINTAINER_MODE_TRUE= MAINTAINER_MODE_FALSE='#' else MAINTAINER_MODE_TRUE='#' MAINTAINER_MODE_FALSE= fi MAINT=$MAINTAINER_MODE_TRUE ac_config_headers="$ac_config_headers src/common/config.h" am__api_version='1.16' ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in #(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi if test "$2" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi rm -f conftest.file test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} fi if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if ${ac_cv_path_mkdir+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null # Check whether --enable-silent-rules was given. if test "${enable_silent_rules+set}" = set; then : enableval=$enable_silent_rules; fi case $enable_silent_rules in # ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=1;; esac am_make=${MAKE-make} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 $as_echo_n "checking whether $am_make supports nested variables... " >&6; } if ${am_cv_make_support_nested_variables+:} false; then : $as_echo_n "(cached) " >&6 else if $as_echo 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 $as_echo "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE='sshguard' VERSION='2.3.1' cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # mkdir_p='$(MKDIR_P)' # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar pax cpio none' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 fi fi # Check whether --enable-silent-rules was given. if test "${enable_silent_rules+set}" = set; then : enableval=$enable_silent_rules; fi case $enable_silent_rules in # ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=0;; esac am_make=${MAKE-make} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 $as_echo_n "checking whether $am_make supports nested variables... " >&6; } if ${am_cv_make_support_nested_variables+:} false; then : $as_echo_n "(cached) " >&6 else if $as_echo 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 $as_echo "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' # Enable POSIX extensions on hosts that normally disable them. DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5 $as_echo_n "checking whether ${MAKE-make} supports the include directive... " >&6; } cat > confinc.mk << 'END' am__doit: @echo this is the am__doit target >confinc.out .PHONY: am__doit END am__include="#" am__quote= # BSD make does it like this. echo '.include "confinc.mk" # ignored' > confmf.BSD # Other make implementations (GNU, Solaris 10, AIX) do it like this. echo 'include confinc.mk # ignored' > confmf.GNU _am_result=no for s in GNU BSD; do { echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5 (${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } case $?:`cat confinc.out 2>/dev/null` in #( '0:this is the am__doit target') : case $s in #( BSD) : am__include='.include' am__quote='"' ;; #( *) : am__include='include' am__quote='' ;; esac ;; #( *) : ;; esac if test "$am__include" != "#"; then _am_result="yes ($s style)" break fi done rm -f confinc.* confmf.* { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5 $as_echo "${_am_result}" >&6; } # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi if test -z "$ac_file"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See \`config.log' for more details" "$LINENO" 5; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 $as_echo_n "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if ${ac_cv_objext+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 $as_echo_n "checking whether $CC understands -c and -o together... " >&6; } if ${am_cv_prog_cc_c_o+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 $as_echo "$am_cv_prog_cc_c_o" >&6; } if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 $as_echo_n "checking how to run the C preprocessor... " >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if ${ac_cv_prog_CPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 $as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } if ${ac_cv_path_GREP+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_GREP" || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } if ${ac_cv_path_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_EGREP" || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done ac_fn_c_check_header_mongrel "$LINENO" "minix/config.h" "ac_cv_header_minix_config_h" "$ac_includes_default" if test "x$ac_cv_header_minix_config_h" = xyes; then : MINIX=yes else MINIX= fi if test "$MINIX" = yes; then $as_echo "#define _POSIX_SOURCE 1" >>confdefs.h $as_echo "#define _POSIX_1_SOURCE 2" >>confdefs.h $as_echo "#define _MINIX 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5 $as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; } if ${ac_cv_safe_to_define___extensions__+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ # define __EXTENSIONS__ 1 $ac_includes_default int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_safe_to_define___extensions__=yes else ac_cv_safe_to_define___extensions__=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_safe_to_define___extensions__" >&5 $as_echo "$ac_cv_safe_to_define___extensions__" >&6; } test $ac_cv_safe_to_define___extensions__ = yes && $as_echo "#define __EXTENSIONS__ 1" >>confdefs.h $as_echo "#define _ALL_SOURCE 1" >>confdefs.h $as_echo "#define _GNU_SOURCE 1" >>confdefs.h $as_echo "#define _POSIX_PTHREAD_SEMANTICS 1" >>confdefs.h $as_echo "#define _TANDEM_SOURCE 1" >>confdefs.h $as_echo "## -------------- ## ## Program Checks ## ## -------------- ##" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C99" >&5 $as_echo_n "checking for $CC option to accept ISO C99... " >&6; } if ${ac_cv_prog_cc_c99+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c99=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include #include // Check varargs macros. These examples are taken from C99 6.10.3.5. #define debug(...) fprintf (stderr, __VA_ARGS__) #define showlist(...) puts (#__VA_ARGS__) #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) static void test_varargs_macros (void) { int x = 1234; int y = 5678; debug ("Flag"); debug ("X = %d\n", x); showlist (The first, second, and third items.); report (x>y, "x is %d but y is %d", x, y); } // Check long long types. #define BIG64 18446744073709551615ull #define BIG32 4294967295ul #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) #if !BIG_OK your preprocessor is broken; #endif #if BIG_OK #else your preprocessor is broken; #endif static long long int bignum = -9223372036854775807LL; static unsigned long long int ubignum = BIG64; struct incomplete_array { int datasize; double data[]; }; struct named_init { int number; const wchar_t *name; double average; }; typedef const char *ccp; static inline int test_restrict (ccp restrict text) { // See if C++-style comments work. // Iterate through items via the restricted pointer. // Also check for declarations in for loops. for (unsigned int i = 0; *(text+i) != '\0'; ++i) continue; return 0; } // Check varargs and va_copy. static void test_varargs (const char *format, ...) { va_list args; va_start (args, format); va_list args_copy; va_copy (args_copy, args); const char *str; int number; float fnumber; while (*format) { switch (*format++) { case 's': // string str = va_arg (args_copy, const char *); break; case 'd': // int number = va_arg (args_copy, int); break; case 'f': // float fnumber = va_arg (args_copy, double); break; default: break; } } va_end (args_copy); va_end (args); } int main () { // Check bool. _Bool success = false; // Check restrict. if (test_restrict ("String literal") == 0) success = true; char *restrict newvar = "Another string"; // Check varargs. test_varargs ("s, d' f .", "string", 65, 34.234); test_varargs_macros (); // Check flexible array members. struct incomplete_array *ia = malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); ia->datasize = 10; for (int i = 0; i < ia->datasize; ++i) ia->data[i] = i * 1.234; // Check named initializers. struct named_init ni = { .number = 34, .name = L"Test wide string", .average = 543.34343, }; ni.number = 58; int dynamic_array[ni.number]; dynamic_array[ni.number - 1] = 543; // work around unused variable warnings return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x' || dynamic_array[ni.number - 1] != 543); ; return 0; } _ACEOF for ac_arg in '' -std=gnu99 -std=c99 -c99 -AC99 -D_STDC_C99= -qlanglvl=extc99 do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c99=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c99" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c99" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c99" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c99" >&5 $as_echo "$ac_cv_prog_cc_c99" >&6; } ;; esac if test "x$ac_cv_prog_cc_c99" != xno; then : fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 $as_echo "$RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 $as_echo "$ac_ct_RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac RANLIB=$ac_ct_RANLIB fi else RANLIB="$ac_cv_prog_RANLIB" fi for ac_prog in 'bison -y' byacc do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_YACC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$YACC"; then ac_cv_prog_YACC="$YACC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_YACC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi YACC=$ac_cv_prog_YACC if test -n "$YACC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $YACC" >&5 $as_echo "$YACC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$YACC" && break done test -n "$YACC" || YACC="yacc" if test -n "$ac_tool_prefix"; then for ac_prog in ar lib "link -lib" do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AR"; then ac_cv_prog_AR="$AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AR="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 $as_echo "$AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AR" && break done fi if test -z "$AR"; then ac_ct_AR=$AR for ac_prog in ar lib "link -lib" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 $as_echo "$ac_ct_AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_AR" && break done if test "x$ac_ct_AR" = x; then AR="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac AR=$ac_ct_AR fi fi : ${AR=ar} { $as_echo "$as_me:${as_lineno-$LINENO}: checking the archiver ($AR) interface" >&5 $as_echo_n "checking the archiver ($AR) interface... " >&6; } if ${am_cv_ar_interface+:} false; then : $as_echo_n "(cached) " >&6 else ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu am_cv_ar_interface=ar cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int some_variable = 0; _ACEOF if ac_fn_c_try_compile "$LINENO"; then : am_ar_try='$AR cru libconftest.a conftest.$ac_objext >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$am_ar_try\""; } >&5 (eval $am_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -eq 0; then am_cv_ar_interface=ar else am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$am_ar_try\""; } >&5 (eval $am_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -eq 0; then am_cv_ar_interface=lib else am_cv_ar_interface=unknown fi fi rm -f conftest.lib libconftest.a fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_ar_interface" >&5 $as_echo "$am_cv_ar_interface" >&6; } case $am_cv_ar_interface in ar) ;; lib) # Microsoft lib, so override with the ar-lib wrapper script. # FIXME: It is wrong to rewrite AR. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__AR in this case, # and then we could set am__AR="$am_aux_dir/ar-lib \$(AR)" or something # similar. AR="$am_aux_dir/ar-lib $AR" ;; unknown) as_fn_error $? "could not determine $AR interface" "$LINENO" 5 ;; esac for ac_prog in flex lex do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_LEX+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$LEX"; then ac_cv_prog_LEX="$LEX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_LEX="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi LEX=$ac_cv_prog_LEX if test -n "$LEX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LEX" >&5 $as_echo "$LEX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$LEX" && break done test -n "$LEX" || LEX=":" if test "x$LEX" != "x:"; then cat >conftest.l <<_ACEOF %% a { ECHO; } b { REJECT; } c { yymore (); } d { yyless (1); } e { /* IRIX 6.5 flex 2.5.4 underquotes its yyless argument. */ yyless ((input () != 0)); } f { unput (yytext[0]); } . { BEGIN INITIAL; } %% #ifdef YYTEXT_POINTER extern char *yytext; #endif int main (void) { return ! yylex () + ! yywrap (); } _ACEOF { { ac_try="$LEX conftest.l" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$LEX conftest.l") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking lex output file root" >&5 $as_echo_n "checking lex output file root... " >&6; } if ${ac_cv_prog_lex_root+:} false; then : $as_echo_n "(cached) " >&6 else if test -f lex.yy.c; then ac_cv_prog_lex_root=lex.yy elif test -f lexyy.c; then ac_cv_prog_lex_root=lexyy else as_fn_error $? "cannot find output from $LEX; giving up" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_lex_root" >&5 $as_echo "$ac_cv_prog_lex_root" >&6; } LEX_OUTPUT_ROOT=$ac_cv_prog_lex_root if test -z "${LEXLIB+set}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking lex library" >&5 $as_echo_n "checking lex library... " >&6; } if ${ac_cv_lib_lex+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_LIBS=$LIBS ac_cv_lib_lex='none needed' for ac_lib in '' -lfl -ll; do LIBS="$ac_lib $ac_save_LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ `cat $LEX_OUTPUT_ROOT.c` _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_lex=$ac_lib fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext test "$ac_cv_lib_lex" != 'none needed' && break done LIBS=$ac_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lex" >&5 $as_echo "$ac_cv_lib_lex" >&6; } test "$ac_cv_lib_lex" != 'none needed' && LEXLIB=$ac_cv_lib_lex fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether yytext is a pointer" >&5 $as_echo_n "checking whether yytext is a pointer... " >&6; } if ${ac_cv_prog_lex_yytext_pointer+:} false; then : $as_echo_n "(cached) " >&6 else # POSIX says lex can declare yytext either as a pointer or an array; the # default is implementation-dependent. Figure out which it is, since # not all implementations provide the %pointer and %array declarations. ac_cv_prog_lex_yytext_pointer=no ac_save_LIBS=$LIBS LIBS="$LEXLIB $ac_save_LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define YYTEXT_POINTER 1 `cat $LEX_OUTPUT_ROOT.c` _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_prog_lex_yytext_pointer=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_lex_yytext_pointer" >&5 $as_echo "$ac_cv_prog_lex_yytext_pointer" >&6; } if test $ac_cv_prog_lex_yytext_pointer = yes; then $as_echo "#define YYTEXT_POINTER 1" >>confdefs.h fi rm -f conftest.l $LEX_OUTPUT_ROOT.c fi if test "$LEX" = :; then LEX=${am_missing_run}flex fi $as_echo "## ----------------------------------- ## ## Headers, Types, and Compiler Checks ## ## ----------------------------------- ##" for ac_header in getopt.h do : ac_fn_c_check_header_mongrel "$LINENO" "getopt.h" "ac_cv_header_getopt_h" "$ac_includes_default" if test "x$ac_cv_header_getopt_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_GETOPT_H 1 _ACEOF fi done for ac_header in sys/capsicum.h sys/capability.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF capsicum_found=candidate fi done if test "$capsicum_found" == "candidate"; then : for ac_func in cap_enter cap_rights_limit do : # ac_fn_c_check_func LINENO FUNC VAR # ---------------------------------- # Tests whether FUNC exists, setting the cache variable VAR accordingly ac_fn_c_check_func () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Define $2 to an innocuous variant elif in case declares $2. For example; then : HP-UX 11i declares gettimeofday. */ #define $2 innocuous_$2 /* System header to define __stub macros and hopefully few prototypes elif which can conflict with char $2 (); below. Prefer to if __STDC__ is defined; then : since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $2 /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $2 (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$2 || defined __stub___$2 choke me #endif int main () { return $2 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_func as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF capsicum_found=yes fi done fi if test "$capsicum_found" == "yes"; then : $as_echo "#define CAPSICUM 1" >>confdefs.h fi for ac_prog in rst2man rst2man.py do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_RST2MAN_PROG+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RST2MAN_PROG"; then ac_cv_prog_RST2MAN_PROG="$RST2MAN_PROG" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RST2MAN_PROG="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi RST2MAN_PROG=$ac_cv_prog_RST2MAN_PROG if test -n "$RST2MAN_PROG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RST2MAN_PROG" >&5 $as_echo "$RST2MAN_PROG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$RST2MAN_PROG" && break done test -n "$RST2MAN_PROG" || RST2MAN_PROG="no" if test "x$RST2MAN_PROG" != xno; then BUILD_MAN_TRUE= BUILD_MAN_FALSE='#' else BUILD_MAN_TRUE='#' BUILD_MAN_FALSE= fi if test "$RST2MAN_PROG" == "no"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: rst2man not found; using pre-built man pages" >&5 $as_echo "$as_me: WARNING: rst2man not found; using pre-built man pages" >&2;} fi $as_echo "## ----------------- ## ## Library Functions ## ## ----------------- ##" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing gethostbyname" >&5 $as_echo_n "checking for library containing gethostbyname... " >&6; } if ${ac_cv_search_gethostbyname+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char gethostbyname (); int main () { return gethostbyname (); ; return 0; } _ACEOF for ac_lib in '' nsl; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_gethostbyname=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_gethostbyname+:} false; then : break fi done if ${ac_cv_search_gethostbyname+:} false; then : else ac_cv_search_gethostbyname=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_gethostbyname" >&5 $as_echo "$ac_cv_search_gethostbyname" >&6; } ac_res=$ac_cv_search_gethostbyname if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing pthread_create" >&5 $as_echo_n "checking for library containing pthread_create... " >&6; } if ${ac_cv_search_pthread_create+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char pthread_create (); int main () { return pthread_create (); ; return 0; } _ACEOF for ac_lib in '' pthread; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_pthread_create=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_pthread_create+:} false; then : break fi done if ${ac_cv_search_pthread_create+:} false; then : else ac_cv_search_pthread_create=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_pthread_create" >&5 $as_echo "$ac_cv_search_pthread_create" >&6; } ac_res=$ac_cv_search_pthread_create if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing socket" >&5 $as_echo_n "checking for library containing socket... " >&6; } if ${ac_cv_search_socket+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char socket (); int main () { return socket (); ; return 0; } _ACEOF for ac_lib in '' socket; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_socket=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_socket+:} false; then : break fi done if ${ac_cv_search_socket+:} false; then : else ac_cv_search_socket=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_socket" >&5 $as_echo "$ac_cv_search_socket" >&6; } ac_res=$ac_cv_search_socket if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi ac_config_files="$ac_config_files Makefile src/Makefile src/blocker/Makefile src/fw/Makefile src/parser/Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 $as_echo_n "checking that generated files are newer than configure... " >&6; } if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 $as_echo "done" >&6; } if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${BUILD_MAN_TRUE}" && test -z "${BUILD_MAN_FALSE}"; then as_fn_error $? "conditional \"BUILD_MAN\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by sshguard $as_me 2.3.1, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ sshguard config.status 2.3.1 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" Copyright (C) 2012 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header as_fn_error $? "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "src/common/config.h") CONFIG_HEADERS="$CONFIG_HEADERS src/common/config.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; "src/blocker/Makefile") CONFIG_FILES="$CONFIG_FILES src/blocker/Makefile" ;; "src/fw/Makefile") CONFIG_FILES="$CONFIG_FILES src/fw/Makefile" ;; "src/parser/Makefile") CONFIG_FILES="$CONFIG_FILES src/parser/Makefile" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script `defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_tt=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_tt"; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #undef with comments. This is necessary, for example, # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" } >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 $as_echo "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 $as_echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. # TODO: see whether this extra hack can be removed once we start # requiring Autoconf 2.70 or later. case $CONFIG_FILES in #( *\'*) : eval set x "$CONFIG_FILES" ;; #( *) : set x $CONFIG_FILES ;; #( *) : ;; esac shift # Used to flag and report bootstrapping failures. am_rc=0 for am_mf do # Strip MF so we end up with the name of the file. am_mf=`$as_echo "$am_mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile which includes # dependency-tracking related rules and includes. # Grep'ing the whole file directly is not great: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ || continue am_dirpart=`$as_dirname -- "$am_mf" || $as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$am_mf" : 'X\(//\)[^/]' \| \ X"$am_mf" : 'X\(//\)$' \| \ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$am_mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` am_filepart=`$as_basename -- "$am_mf" || $as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \ X"$am_mf" : 'X\(//\)$' \| \ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$am_mf" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` { echo "$as_me:$LINENO: cd "$am_dirpart" \ && sed -e '/# am--include-marker/d' "$am_filepart" \ | $MAKE -f - am--depfiles" >&5 (cd "$am_dirpart" \ && sed -e '/# am--include-marker/d' "$am_filepart" \ | $MAKE -f - am--depfiles) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } || am_rc=$? done if test $am_rc -ne 0; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "Something went wrong bootstrapping makefile fragments for automatic dependency tracking. Try re-running configure with the '--disable-dependency-tracking' option to at least be able to build the package (albeit without support for automatic dependency tracking). See \`config.log' for more details" "$LINENO" 5; } fi { am_dirpart=; unset am_dirpart;} { am_filepart=; unset am_filepart;} { am_mf=; unset am_mf;} { am_rc=; unset am_rc;} rm -f conftest-deps.mk } ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi sshguard-2.3.1/COPYING000644 001751 001751 00000001775 13257633235 015273 0ustar00kevinzkevinz000000 000000 Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. This program uses components from the following projects, which are released under separate licenses: * Fowler/Noll/Vo Hash (fnv) library by chongo@mellis.com http://www.isthe.com/chongo/tech/comp/fnv/ Public Domain * SimCList library by mij@bitchx.it http://mij.oltrelinux.com/devel/simclist/ 3-clause BSD sshguard-2.3.1/Makefile.in000644 001751 001751 00000072275 13412435606 016303 0ustar00kevinzkevinz000000 000000 # Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ $(am__configure_deps) $(am__DIST_COMMON) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/common/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } man7dir = $(mandir)/man7 am__installdirs = "$(DESTDIR)$(man7dir)" "$(DESTDIR)$(man8dir)" man8dir = $(mandir)/man8 NROFF = nroff MANS = $(dist_man_MANS) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ cscope distdir distdir-am dist dist-all distcheck am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags CSCOPE = cscope DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(dist_man_MANS) $(srcdir)/Makefile.in \ $(top_srcdir)/src/common/config.h.in COPYING ar-lib compile \ depcomp install-sh missing tap-driver.sh ylwrap DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__post_remove_distdir = $(am__remove_distdir) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best DIST_TARGETS = dist-gzip distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ RST2MAN_PROG = @RST2MAN_PROG@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = src EXTRA_DIST = doc/ examples/ CHANGELOG.rst CONTRIBUTING.rst INSTALL.rst README.rst dist_man_MANS = doc/sshguard-setup.7 doc/sshguard.8 @BUILD_MAN_TRUE@SUFFIXES = .rst all: all-recursive .SUFFIXES: .SUFFIXES: .rst am--refresh: Makefile @: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): src/common/config.h: src/common/stamp-h1 @test -f $@ || rm -f src/common/stamp-h1 @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) src/common/stamp-h1 src/common/stamp-h1: $(top_srcdir)/src/common/config.h.in $(top_builddir)/config.status @rm -f src/common/stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status src/common/config.h $(top_srcdir)/src/common/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f src/common/stamp-h1 touch $@ distclean-hdr: -rm -f src/common/config.h src/common/stamp-h1 install-man7: $(dist_man_MANS) @$(NORMAL_INSTALL) @list1=''; \ list2='$(dist_man_MANS)'; \ test -n "$(man7dir)" \ && test -n "`echo $$list1$$list2`" \ || exit 0; \ echo " $(MKDIR_P) '$(DESTDIR)$(man7dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(man7dir)" || exit 1; \ { for i in $$list1; do echo "$$i"; done; \ if test -n "$$list2"; then \ for i in $$list2; do echo "$$i"; done \ | sed -n '/\.7[a-z]*$$/p'; \ fi; \ } | while read p; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; echo "$$p"; \ done | \ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^7][0-9a-z]*$$,7,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ sed 'N;N;s,\n, ,g' | { \ list=; while read file base inst; do \ if test "$$base" = "$$inst"; then list="$$list $$file"; else \ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man7dir)/$$inst'"; \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man7dir)/$$inst" || exit $$?; \ fi; \ done; \ for i in $$list; do echo "$$i"; done | $(am__base_list) | \ while read files; do \ test -z "$$files" || { \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man7dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(man7dir)" || exit $$?; }; \ done; } uninstall-man7: @$(NORMAL_UNINSTALL) @list=''; test -n "$(man7dir)" || exit 0; \ files=`{ for i in $$list; do echo "$$i"; done; \ l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \ sed -n '/\.7[a-z]*$$/p'; \ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^7][0-9a-z]*$$,7,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ dir='$(DESTDIR)$(man7dir)'; $(am__uninstall_files_from_dir) install-man8: $(dist_man_MANS) @$(NORMAL_INSTALL) @list1=''; \ list2='$(dist_man_MANS)'; \ test -n "$(man8dir)" \ && test -n "`echo $$list1$$list2`" \ || exit 0; \ echo " $(MKDIR_P) '$(DESTDIR)$(man8dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(man8dir)" || exit 1; \ { for i in $$list1; do echo "$$i"; done; \ if test -n "$$list2"; then \ for i in $$list2; do echo "$$i"; done \ | sed -n '/\.8[a-z]*$$/p'; \ fi; \ } | while read p; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; echo "$$p"; \ done | \ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^8][0-9a-z]*$$,8,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ sed 'N;N;s,\n, ,g' | { \ list=; while read file base inst; do \ if test "$$base" = "$$inst"; then list="$$list $$file"; else \ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man8dir)/$$inst'"; \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man8dir)/$$inst" || exit $$?; \ fi; \ done; \ for i in $$list; do echo "$$i"; done | $(am__base_list) | \ while read files; do \ test -z "$$files" || { \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man8dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(man8dir)" || exit $$?; }; \ done; } uninstall-man8: @$(NORMAL_UNINSTALL) @list=''; test -n "$(man8dir)" || exit 0; \ files=`{ for i in $$list; do echo "$$i"; done; \ l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \ sed -n '/\.8[a-z]*$$/p'; \ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^8][0-9a-z]*$$,8,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ dir='$(DESTDIR)$(man8dir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscope: cscope.files test ! -s cscope.files \ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) clean-cscope: -rm -f cscope.files cscope.files: clean-cscope cscopelist cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -rm -f cscope.out cscope.in.out cscope.po.out cscope.files distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz $(am__post_remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__post_remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__post_remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__post_remove_distdir) dist-tarZ: distdir @echo WARNING: "Support for distribution archives compressed with" \ "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__post_remove_distdir) dist dist-all: $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' $(am__post_remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir) chmod u+w $(distdir) mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build/sub \ && ../../configure \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ --srcdir=../.. --prefix="$$dc_install_base" \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__post_remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile $(MANS) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(man7dir)" "$(DESTDIR)$(man8dir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-hdr distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-man install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-man7 install-man8 install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-man uninstall-man: uninstall-man7 uninstall-man8 .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ am--refresh check check-am clean clean-cscope clean-generic \ cscope cscopelist-am ctags ctags-am dist dist-all dist-bzip2 \ dist-gzip dist-lzip dist-shar dist-tarZ dist-xz dist-zip \ distcheck distclean distclean-generic distclean-hdr \ distclean-tags distcleancheck distdir distuninstallcheck dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-man7 \ install-man8 install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ pdf-am ps ps-am tags tags-am uninstall uninstall-am \ uninstall-man uninstall-man7 uninstall-man8 .PRECIOUS: Makefile @BUILD_MAN_TRUE@.rst: @BUILD_MAN_TRUE@ $(RST2MAN_PROG) $< $@ # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: sshguard-2.3.1/README.rst000644 001751 001751 00000002377 13405335557 015727 0ustar00kevinzkevinz000000 000000 ======== SSHGuard ======== **sshguard** protects hosts from brute-force attacks against SSH and other services. It aggregates system logs and blocks repeat offenders using one of several firewall backends. - Website: https://www.sshguard.net/ - Bitbucket: https://bitbucket.org/sshguard/sshguard/ Installation ============ See ``_ for dependencies and detailed instructions. Briefly: If you are building from **Git**, run this first:: autoreconf -i Then, build it like a normal source distribution:: ./configure make && make install Usage ===== Copy the sample configuration file ``_ and follow the setup instructions in `sshguard-setup(7) `_. See `sshguard(8) `_ for additional options. Contributing ============ See ``_ for both people who want to write code, and those who do not. License ======= **sshguard** is available under the terms of the `OpenBSD license `_, which is based on the ISC License. See ``_ for details. Authors ======= * Michele Mazzucchi , * T.J. Jones , * Kevin Zheng sshguard-2.3.1/tap-driver.sh000755 001751 001751 00000046013 13405337255 016644 0ustar00kevinzkevinz000000 000000 #! /bin/sh # Copyright (C) 2011-2018 Free Software Foundation, Inc. # # 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, 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, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . scriptversion=2013-12-23.17; # UTC # Make unconditional expansion of undefined variables an error. This # helps a lot in preventing typo-related bugs. set -u me=tap-driver.sh fatal () { echo "$me: fatal: $*" >&2 exit 1 } usage_error () { echo "$me: $*" >&2 print_usage >&2 exit 2 } print_usage () { cat < # trap : 1 3 2 13 15 if test $merge -gt 0; then exec 2>&1 else exec 2>&3 fi "$@" echo $? ) | LC_ALL=C ${AM_TAP_AWK-awk} \ -v me="$me" \ -v test_script_name="$test_name" \ -v log_file="$log_file" \ -v trs_file="$trs_file" \ -v expect_failure="$expect_failure" \ -v merge="$merge" \ -v ignore_exit="$ignore_exit" \ -v comments="$comments" \ -v diag_string="$diag_string" \ ' # TODO: the usages of "cat >&3" below could be optimized when using # GNU awk, and/on on systems that supports /dev/fd/. # Implementation note: in what follows, `result_obj` will be an # associative array that (partly) simulates a TAP result object # from the `TAP::Parser` perl module. ## ----------- ## ## FUNCTIONS ## ## ----------- ## function fatal(msg) { print me ": " msg | "cat >&2" exit 1 } function abort(where) { fatal("internal error " where) } # Convert a boolean to a "yes"/"no" string. function yn(bool) { return bool ? "yes" : "no"; } function add_test_result(result) { if (!test_results_index) test_results_index = 0 test_results_list[test_results_index] = result test_results_index += 1 test_results_seen[result] = 1; } # Whether the test script should be re-run by "make recheck". function must_recheck() { for (k in test_results_seen) if (k != "XFAIL" && k != "PASS" && k != "SKIP") return 1 return 0 } # Whether the content of the log file associated to this test should # be copied into the "global" test-suite.log. function copy_in_global_log() { for (k in test_results_seen) if (k != "PASS") return 1 return 0 } function get_global_test_result() { if ("ERROR" in test_results_seen) return "ERROR" if ("FAIL" in test_results_seen || "XPASS" in test_results_seen) return "FAIL" all_skipped = 1 for (k in test_results_seen) if (k != "SKIP") all_skipped = 0 if (all_skipped) return "SKIP" return "PASS"; } function stringify_result_obj(result_obj) { if (result_obj["is_unplanned"] || result_obj["number"] != testno) return "ERROR" if (plan_seen == LATE_PLAN) return "ERROR" if (result_obj["directive"] == "TODO") return result_obj["is_ok"] ? "XPASS" : "XFAIL" if (result_obj["directive"] == "SKIP") return result_obj["is_ok"] ? "SKIP" : COOKED_FAIL; if (length(result_obj["directive"])) abort("in function stringify_result_obj()") return result_obj["is_ok"] ? COOKED_PASS : COOKED_FAIL } function decorate_result(result) { color_name = color_for_result[result] if (color_name) return color_map[color_name] "" result "" color_map["std"] # If we are not using colorized output, or if we do not know how # to colorize the given result, we should return it unchanged. return result } function report(result, details) { if (result ~ /^(X?(PASS|FAIL)|SKIP|ERROR)/) { msg = ": " test_script_name add_test_result(result) } else if (result == "#") { msg = " " test_script_name ":" } else { abort("in function report()") } if (length(details)) msg = msg " " details # Output on console might be colorized. print decorate_result(result) msg # Log the result in the log file too, to help debugging (this is # especially true when said result is a TAP error or "Bail out!"). print result msg | "cat >&3"; } function testsuite_error(error_message) { report("ERROR", "- " error_message) } function handle_tap_result() { details = result_obj["number"]; if (length(result_obj["description"])) details = details " " result_obj["description"] if (plan_seen == LATE_PLAN) { details = details " # AFTER LATE PLAN"; } else if (result_obj["is_unplanned"]) { details = details " # UNPLANNED"; } else if (result_obj["number"] != testno) { details = sprintf("%s # OUT-OF-ORDER (expecting %d)", details, testno); } else if (result_obj["directive"]) { details = details " # " result_obj["directive"]; if (length(result_obj["explanation"])) details = details " " result_obj["explanation"] } report(stringify_result_obj(result_obj), details) } # `skip_reason` should be empty whenever planned > 0. function handle_tap_plan(planned, skip_reason) { planned += 0 # Avoid getting confused if, say, `planned` is "00" if (length(skip_reason) && planned > 0) abort("in function handle_tap_plan()") if (plan_seen) { # Error, only one plan per stream is acceptable. testsuite_error("multiple test plans") return; } planned_tests = planned # The TAP plan can come before or after *all* the TAP results; we speak # respectively of an "early" or a "late" plan. If we see the plan line # after at least one TAP result has been seen, assume we have a late # plan; in this case, any further test result seen after the plan will # be flagged as an error. plan_seen = (testno >= 1 ? LATE_PLAN : EARLY_PLAN) # If testno > 0, we have an error ("too many tests run") that will be # automatically dealt with later, so do not worry about it here. If # $plan_seen is true, we have an error due to a repeated plan, and that # has already been dealt with above. Otherwise, we have a valid "plan # with SKIP" specification, and should report it as a particular kind # of SKIP result. if (planned == 0 && testno == 0) { if (length(skip_reason)) skip_reason = "- " skip_reason; report("SKIP", skip_reason); } } function extract_tap_comment(line) { if (index(line, diag_string) == 1) { # Strip leading `diag_string` from `line`. line = substr(line, length(diag_string) + 1) # And strip any leading and trailing whitespace left. sub("^[ \t]*", "", line) sub("[ \t]*$", "", line) # Return what is left (if any). return line; } return ""; } # When this function is called, we know that line is a TAP result line, # so that it matches the (perl) RE "^(not )?ok\b". function setup_result_obj(line) { # Get the result, and remove it from the line. result_obj["is_ok"] = (substr(line, 1, 2) == "ok" ? 1 : 0) sub("^(not )?ok[ \t]*", "", line) # If the result has an explicit number, get it and strip it; otherwise, # automatically assing the next progresive number to it. if (line ~ /^[0-9]+$/ || line ~ /^[0-9]+[^a-zA-Z0-9_]/) { match(line, "^[0-9]+") # The final `+ 0` is to normalize numbers with leading zeros. result_obj["number"] = substr(line, 1, RLENGTH) + 0 line = substr(line, RLENGTH + 1) } else { result_obj["number"] = testno } if (plan_seen == LATE_PLAN) # No further test results are acceptable after a "late" TAP plan # has been seen. result_obj["is_unplanned"] = 1 else if (plan_seen && testno > planned_tests) result_obj["is_unplanned"] = 1 else result_obj["is_unplanned"] = 0 # Strip trailing and leading whitespace. sub("^[ \t]*", "", line) sub("[ \t]*$", "", line) # This will have to be corrected if we have a "TODO"/"SKIP" directive. result_obj["description"] = line result_obj["directive"] = "" result_obj["explanation"] = "" if (index(line, "#") == 0) return # No possible directive, nothing more to do. # Directives are case-insensitive. rx = "[ \t]*#[ \t]*([tT][oO][dD][oO]|[sS][kK][iI][pP])[ \t]*" # See whether we have the directive, and if yes, where. pos = match(line, rx "$") if (!pos) pos = match(line, rx "[^a-zA-Z0-9_]") # If there was no TAP directive, we have nothing more to do. if (!pos) return # Let`s now see if the TAP directive has been escaped. For example: # escaped: ok \# SKIP # not escaped: ok \\# SKIP # escaped: ok \\\\\# SKIP # not escaped: ok \ # SKIP if (substr(line, pos, 1) == "#") { bslash_count = 0 for (i = pos; i > 1 && substr(line, i - 1, 1) == "\\"; i--) bslash_count += 1 if (bslash_count % 2) return # Directive was escaped. } # Strip the directive and its explanation (if any) from the test # description. result_obj["description"] = substr(line, 1, pos - 1) # Now remove the test description from the line, that has been dealt # with already. line = substr(line, pos) # Strip the directive, and save its value (normalized to upper case). sub("^[ \t]*#[ \t]*", "", line) result_obj["directive"] = toupper(substr(line, 1, 4)) line = substr(line, 5) # Now get the explanation for the directive (if any), with leading # and trailing whitespace removed. sub("^[ \t]*", "", line) sub("[ \t]*$", "", line) result_obj["explanation"] = line } function get_test_exit_message(status) { if (status == 0) return "" if (status !~ /^[1-9][0-9]*$/) abort("getting exit status") if (status < 127) exit_details = "" else if (status == 127) exit_details = " (command not found?)" else if (status >= 128 && status <= 255) exit_details = sprintf(" (terminated by signal %d?)", status - 128) else if (status > 256 && status <= 384) # We used to report an "abnormal termination" here, but some Korn # shells, when a child process die due to signal number n, can leave # in $? an exit status of 256+n instead of the more standard 128+n. # Apparently, both behaviours are allowed by POSIX (2008), so be # prepared to handle them both. See also Austing Group report ID # 0000051 exit_details = sprintf(" (terminated by signal %d?)", status - 256) else # Never seen in practice. exit_details = " (abnormal termination)" return sprintf("exited with status %d%s", status, exit_details) } function write_test_results() { print ":global-test-result: " get_global_test_result() > trs_file print ":recheck: " yn(must_recheck()) > trs_file print ":copy-in-global-log: " yn(copy_in_global_log()) > trs_file for (i = 0; i < test_results_index; i += 1) print ":test-result: " test_results_list[i] > trs_file close(trs_file); } BEGIN { ## ------- ## ## SETUP ## ## ------- ## '"$init_colors"' # Properly initialized once the TAP plan is seen. planned_tests = 0 COOKED_PASS = expect_failure ? "XPASS": "PASS"; COOKED_FAIL = expect_failure ? "XFAIL": "FAIL"; # Enumeration-like constants to remember which kind of plan (if any) # has been seen. It is important that NO_PLAN evaluates "false" as # a boolean. NO_PLAN = 0 EARLY_PLAN = 1 LATE_PLAN = 2 testno = 0 # Number of test results seen so far. bailed_out = 0 # Whether a "Bail out!" directive has been seen. # Whether the TAP plan has been seen or not, and if yes, which kind # it is ("early" is seen before any test result, "late" otherwise). plan_seen = NO_PLAN ## --------- ## ## PARSING ## ## --------- ## is_first_read = 1 while (1) { # Involutions required so that we are able to read the exit status # from the last input line. st = getline if (st < 0) # I/O error. fatal("I/O error while reading from input stream") else if (st == 0) # End-of-input { if (is_first_read) abort("in input loop: only one input line") break } if (is_first_read) { is_first_read = 0 nextline = $0 continue } else { curline = nextline nextline = $0 $0 = curline } # Copy any input line verbatim into the log file. print | "cat >&3" # Parsing of TAP input should stop after a "Bail out!" directive. if (bailed_out) continue # TAP test result. if ($0 ~ /^(not )?ok$/ || $0 ~ /^(not )?ok[^a-zA-Z0-9_]/) { testno += 1 setup_result_obj($0) handle_tap_result() } # TAP plan (normal or "SKIP" without explanation). else if ($0 ~ /^1\.\.[0-9]+[ \t]*$/) { # The next two lines will put the number of planned tests in $0. sub("^1\\.\\.", "") sub("[^0-9]*$", "") handle_tap_plan($0, "") continue } # TAP "SKIP" plan, with an explanation. else if ($0 ~ /^1\.\.0+[ \t]*#/) { # The next lines will put the skip explanation in $0, stripping # any leading and trailing whitespace. This is a little more # tricky in truth, since we want to also strip a potential leading # "SKIP" string from the message. sub("^[^#]*#[ \t]*(SKIP[: \t][ \t]*)?", "") sub("[ \t]*$", ""); handle_tap_plan(0, $0) } # "Bail out!" magic. # Older versions of prove and TAP::Harness (e.g., 3.17) did not # recognize a "Bail out!" directive when preceded by leading # whitespace, but more modern versions (e.g., 3.23) do. So we # emulate the latter, "more modern" behaviour. else if ($0 ~ /^[ \t]*Bail out!/) { bailed_out = 1 # Get the bailout message (if any), with leading and trailing # whitespace stripped. The message remains stored in `$0`. sub("^[ \t]*Bail out![ \t]*", ""); sub("[ \t]*$", ""); # Format the error message for the bailout_message = "Bail out!" if (length($0)) bailout_message = bailout_message " " $0 testsuite_error(bailout_message) } # Maybe we have too look for dianogtic comments too. else if (comments != 0) { comment = extract_tap_comment($0); if (length(comment)) report("#", comment); } } ## -------- ## ## FINISH ## ## -------- ## # A "Bail out!" directive should cause us to ignore any following TAP # error, as well as a non-zero exit status from the TAP producer. if (!bailed_out) { if (!plan_seen) { testsuite_error("missing test plan") } else if (planned_tests != testno) { bad_amount = testno > planned_tests ? "many" : "few" testsuite_error(sprintf("too %s tests run (expected %d, got %d)", bad_amount, planned_tests, testno)) } if (!ignore_exit) { # Fetch exit status from the last line. exit_message = get_test_exit_message(nextline) if (exit_message) testsuite_error(exit_message) } } write_test_results() exit 0 } # End of "BEGIN" block. ' # TODO: document that we consume the file descriptor 3 :-( } 3>"$log_file" test $? -eq 0 || fatal "I/O or internal error" # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: sshguard-2.3.1/compile000755 001751 001751 00000016327 13405337255 015613 0ustar00kevinzkevinz000000 000000 #! /bin/sh # Wrapper for compilers which do not understand '-c -o'. scriptversion=2018-03-07.03; # UTC # Copyright (C) 1999-2018 Free Software Foundation, Inc. # Written by Tom Tromey . # # 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, 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, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . nl=' ' # We need space, tab and new line, in precisely that order. Quoting is # there to prevent tools from complaining about whitespace usage. IFS=" "" $nl" file_conv= # func_file_conv build_file lazy # Convert a $build file to $host form and store it in $file # Currently only supports Windows hosts. If the determined conversion # type is listed in (the comma separated) LAZY, no conversion will # take place. func_file_conv () { file=$1 case $file in / | /[!/]*) # absolute file, and not a UNC file if test -z "$file_conv"; then # lazily determine how to convert abs files case `uname -s` in MINGW*) file_conv=mingw ;; CYGWIN*) file_conv=cygwin ;; *) file_conv=wine ;; esac fi case $file_conv/,$2, in *,$file_conv,*) ;; mingw/*) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; cygwin/*) file=`cygpath -m "$file" || echo "$file"` ;; wine/*) file=`winepath -w "$file" || echo "$file"` ;; esac ;; esac } # func_cl_dashL linkdir # Make cl look for libraries in LINKDIR func_cl_dashL () { func_file_conv "$1" if test -z "$lib_path"; then lib_path=$file else lib_path="$lib_path;$file" fi linker_opts="$linker_opts -LIBPATH:$file" } # func_cl_dashl library # Do a library search-path lookup for cl func_cl_dashl () { lib=$1 found=no save_IFS=$IFS IFS=';' for dir in $lib_path $LIB do IFS=$save_IFS if $shared && test -f "$dir/$lib.dll.lib"; then found=yes lib=$dir/$lib.dll.lib break fi if test -f "$dir/$lib.lib"; then found=yes lib=$dir/$lib.lib break fi if test -f "$dir/lib$lib.a"; then found=yes lib=$dir/lib$lib.a break fi done IFS=$save_IFS if test "$found" != yes; then lib=$lib.lib fi } # func_cl_wrapper cl arg... # Adjust compile command to suit cl func_cl_wrapper () { # Assume a capable shell lib_path= shared=: linker_opts= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. eat=1 case $2 in *.o | *.[oO][bB][jJ]) func_file_conv "$2" set x "$@" -Fo"$file" shift ;; *) func_file_conv "$2" set x "$@" -Fe"$file" shift ;; esac ;; -I) eat=1 func_file_conv "$2" mingw set x "$@" -I"$file" shift ;; -I*) func_file_conv "${1#-I}" mingw set x "$@" -I"$file" shift ;; -l) eat=1 func_cl_dashl "$2" set x "$@" "$lib" shift ;; -l*) func_cl_dashl "${1#-l}" set x "$@" "$lib" shift ;; -L) eat=1 func_cl_dashL "$2" ;; -L*) func_cl_dashL "${1#-L}" ;; -static) shared=false ;; -Wl,*) arg=${1#-Wl,} save_ifs="$IFS"; IFS=',' for flag in $arg; do IFS="$save_ifs" linker_opts="$linker_opts $flag" done IFS="$save_ifs" ;; -Xlinker) eat=1 linker_opts="$linker_opts $2" ;; -*) set x "$@" "$1" shift ;; *.cc | *.CC | *.cxx | *.CXX | *.[cC]++) func_file_conv "$1" set x "$@" -Tp"$file" shift ;; *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) func_file_conv "$1" mingw set x "$@" "$file" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -n "$linker_opts"; then linker_opts="-link$linker_opts" fi exec "$@" $linker_opts exit 1 } eat= case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: compile [--help] [--version] PROGRAM [ARGS] Wrapper for compilers which do not understand '-c -o'. Remove '-o dest.o' from ARGS, run PROGRAM with the remaining arguments, and rename the output as expected. If you are trying to build a whole package this is not the right script to run: please start by reading the file 'INSTALL'. Report bugs to . EOF exit $? ;; -v | --v*) echo "compile $scriptversion" exit $? ;; cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \ icl | *[/\\]icl | icl.exe | *[/\\]icl.exe ) func_cl_wrapper "$@" # Doesn't return... ;; esac ofile= cfile= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. # So we strip '-o arg' only if arg is an object. eat=1 case $2 in *.o | *.obj) ofile=$2 ;; *) set x "$@" -o "$2" shift ;; esac ;; *.c) cfile=$1 set x "$@" "$1" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -z "$ofile" || test -z "$cfile"; then # If no '-o' option was seen then we might have been invoked from a # pattern rule where we don't need one. That is ok -- this is a # normal compilation that the losing compiler can handle. If no # '.c' file was seen then we are probably linking. That is also # ok. exec "$@" fi # Name of file we expect compiler to create. cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` # Create the lock directory. # Note: use '[/\\:.-]' here to ensure that we don't use the same name # that we are using for the .o file. Also, base the name on the expected # object file name, since that is what matters with a parallel build. lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d while true; do if mkdir "$lockdir" >/dev/null 2>&1; then break fi sleep 1 done # FIXME: race condition here if user kills between mkdir and trap. trap "rmdir '$lockdir'; exit 1" 1 2 15 # Run the compile. "$@" ret=$? if test -f "$cofile"; then test "$cofile" = "$ofile" || mv "$cofile" "$ofile" elif test -f "${cofile}bj"; then test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" fi rmdir "$lockdir" exit $ret # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: sshguard-2.3.1/INSTALL.rst000644 001751 001751 00000002433 13405335557 016071 0ustar00kevinzkevinz000000 000000 =================== Installing SSHGuard =================== From a package repository ========================= SSHGuard is available as a package from several package repositories, usually under the name ``sshguard``. Building from source ==================== Obtain a source distribution from http://www.sshguard.net/. Extract the archive and run:: ./configure make && make install Alternatively, if you are building from the source repository:: git clone https://bitbucket.org/sshguard/sshguard.git cd sshguard/ autoreconf -i ./configure make && make install Build dependencies ------------------ - C compiler with support for the C99 standard - lex and yacc (or compatible variant) If you are building from the source repository, you also need: - Autoconf/Automake - Docutils Debian and Ubuntu ~~~~~~~~~~~~~~~~~ :: apt install autoconf automake byacc flex gcc python-docutils Fedora ~~~~~~ :: dnf install autoconf automake byacc flex gcc python-docutils FreeBSD ~~~~~~~ :: pkg install autotools byacc clang flex py27-docutils macOS ~~~~~ Requires Xcode_ with command line utilities and Homebrew_. :: brew install autoconf automake byacc docutils flex .. _Xcode: https://itunes.apple.com/app/xcode/id497799835 .. _Homebrew: http://brew.sh/ sshguard-2.3.1/ar-lib000755 001751 001751 00000013303 13405337255 015320 0ustar00kevinzkevinz000000 000000 #! /bin/sh # Wrapper for Microsoft lib.exe me=ar-lib scriptversion=2012-03-01.08; # UTC # Copyright (C) 2010-2018 Free Software Foundation, Inc. # Written by Peter Rosin . # # 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, 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, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . # func_error message func_error () { echo "$me: $1" 1>&2 exit 1 } file_conv= # func_file_conv build_file # Convert a $build file to $host form and store it in $file # Currently only supports Windows hosts. func_file_conv () { file=$1 case $file in / | /[!/]*) # absolute file, and not a UNC file if test -z "$file_conv"; then # lazily determine how to convert abs files case `uname -s` in MINGW*) file_conv=mingw ;; CYGWIN*) file_conv=cygwin ;; *) file_conv=wine ;; esac fi case $file_conv in mingw) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; cygwin) file=`cygpath -m "$file" || echo "$file"` ;; wine) file=`winepath -w "$file" || echo "$file"` ;; esac ;; esac } # func_at_file at_file operation archive # Iterate over all members in AT_FILE performing OPERATION on ARCHIVE # for each of them. # When interpreting the content of the @FILE, do NOT use func_file_conv, # since the user would need to supply preconverted file names to # binutils ar, at least for MinGW. func_at_file () { operation=$2 archive=$3 at_file_contents=`cat "$1"` eval set x "$at_file_contents" shift for member do $AR -NOLOGO $operation:"$member" "$archive" || exit $? done } case $1 in '') func_error "no command. Try '$0 --help' for more information." ;; -h | --h*) cat <&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) is_target_a_directory=always dst_arg=$2 # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) is_target_a_directory=never;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done # We allow the use of options -d and -T together, by making -d # take the precedence; this is for compatibility with GNU install. if test -n "$dir_arg"; then if test -n "$dst_arg"; then echo "$0: target directory not allowed when installing a directory." >&2 exit 1 fi fi if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call 'install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then if test $# -gt 1 || test "$is_target_a_directory" = always; then if test ! -d "$dst_arg"; then echo "$0: $dst_arg: Is not a directory." >&2 exit 1 fi fi fi if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names problematic for 'test' and other utilities. case $src in -* | [=\(\)!]) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # If destination is a directory, append the input filename. if test -d "$dst"; then if test "$is_target_a_directory" = never; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dstbase=`basename "$src"` case $dst in */) dst=$dst$dstbase;; *) dst=$dst/$dstbase;; esac dstdir_status=0 else dstdir=`dirname "$dst"` test -d "$dstdir" dstdir_status=$? fi fi case $dstdir in */) dstdirslash=$dstdir;; *) dstdirslash=$dstdir/;; esac obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) # Note that $RANDOM variable is not portable (e.g. dash); Use it # here however when possible just to lower collision chance. tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null; exit $ret' 0 # Because "mkdir -p" follows existing symlinks and we likely work # directly in world-writeable /tmp, make sure that the '$tmpdir' # directory is successfully created first before we actually test # 'mkdir -p' feature. if (umask $mkdir_umask && $mkdirprog $mkdir_mode "$tmpdir" && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. test_tmpdir="$tmpdir/a" ls_ld_tmpdir=`ls -ld "$test_tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$test_tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; [-=\(\)!]*) prefix='./';; *) prefix='';; esac oIFS=$IFS IFS=/ set -f set fnord $dstdir shift set +f IFS=$oIFS prefixes= for d do test X"$d" = X && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=${dstdirslash}_inst.$$_ rmtmp=${dstdirslash}_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: sshguard-2.3.1/ylwrap000755 001751 001751 00000015314 13405337255 015474 0ustar00kevinzkevinz000000 000000 #! /bin/sh # ylwrap - wrapper for lex/yacc invocations. scriptversion=2018-03-07.03; # UTC # Copyright (C) 1996-2018 Free Software Foundation, Inc. # # Written by Tom Tromey . # # 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, 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, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . get_dirname () { case $1 in */*|*\\*) printf '%s\n' "$1" | sed -e 's|\([\\/]\)[^\\/]*$|\1|';; # Otherwise, we want the empty string (not "."). esac } # guard FILE # ---------- # The CPP macro used to guard inclusion of FILE. guard () { printf '%s\n' "$1" \ | sed \ -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/' \ -e 's/[^ABCDEFGHIJKLMNOPQRSTUVWXYZ]/_/g' \ -e 's/__*/_/g' } # quote_for_sed [STRING] # ---------------------- # Return STRING (or stdin) quoted to be used as a sed pattern. quote_for_sed () { case $# in 0) cat;; 1) printf '%s\n' "$1";; esac \ | sed -e 's|[][\\.*]|\\&|g' } case "$1" in '') echo "$0: No files given. Try '$0 --help' for more information." 1>&2 exit 1 ;; --basedir) basedir=$2 shift 2 ;; -h|--h*) cat <<\EOF Usage: ylwrap [--help|--version] INPUT [OUTPUT DESIRED]... -- PROGRAM [ARGS]... Wrapper for lex/yacc invocations, renaming files as desired. INPUT is the input file OUTPUT is one file PROG generates DESIRED is the file we actually want instead of OUTPUT PROGRAM is program to run ARGS are passed to PROG Any number of OUTPUT,DESIRED pairs may be used. Report bugs to . EOF exit $? ;; -v|--v*) echo "ylwrap $scriptversion" exit $? ;; esac # The input. input=$1 shift # We'll later need for a correct munging of "#line" directives. input_sub_rx=`get_dirname "$input" | quote_for_sed` case $input in [\\/]* | ?:[\\/]*) # Absolute path; do nothing. ;; *) # Relative path. Make it absolute. input=`pwd`/$input ;; esac input_rx=`get_dirname "$input" | quote_for_sed` # Since DOS filename conventions don't allow two dots, # the DOS version of Bison writes out y_tab.c instead of y.tab.c # and y_tab.h instead of y.tab.h. Test to see if this is the case. y_tab_nodot=false if test -f y_tab.c || test -f y_tab.h; then y_tab_nodot=true fi # The parser itself, the first file, is the destination of the .y.c # rule in the Makefile. parser=$1 # A sed program to s/FROM/TO/g for all the FROM/TO so that, for # instance, we rename #include "y.tab.h" into #include "parse.h" # during the conversion from y.tab.c to parse.c. sed_fix_filenames= # Also rename header guards, as Bison 2.7 for instance uses its header # guard in its implementation file. sed_fix_header_guards= while test $# -ne 0; do if test x"$1" = x"--"; then shift break fi from=$1 # Handle y_tab.c and y_tab.h output by DOS if $y_tab_nodot; then case $from in "y.tab.c") from=y_tab.c;; "y.tab.h") from=y_tab.h;; esac fi shift to=$1 shift sed_fix_filenames="${sed_fix_filenames}s|"`quote_for_sed "$from"`"|$to|g;" sed_fix_header_guards="${sed_fix_header_guards}s|"`guard "$from"`"|"`guard "$to"`"|g;" done # The program to run. prog=$1 shift # Make any relative path in $prog absolute. case $prog in [\\/]* | ?:[\\/]*) ;; *[\\/]*) prog=`pwd`/$prog ;; esac dirname=ylwrap$$ do_exit="cd '`pwd`' && rm -rf $dirname > /dev/null 2>&1;"' (exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 mkdir $dirname || exit 1 cd $dirname case $# in 0) "$prog" "$input" ;; *) "$prog" "$@" "$input" ;; esac ret=$? if test $ret -eq 0; then for from in * do to=`printf '%s\n' "$from" | sed "$sed_fix_filenames"` if test -f "$from"; then # If $2 is an absolute path name, then just use that, # otherwise prepend '../'. case $to in [\\/]* | ?:[\\/]*) target=$to;; *) target=../$to;; esac # Do not overwrite unchanged header files to avoid useless # recompilations. Always update the parser itself: it is the # destination of the .y.c rule in the Makefile. Divert the # output of all other files to a temporary file so we can # compare them to existing versions. if test $from != $parser; then realtarget=$target target=tmp-`printf '%s\n' "$target" | sed 's|.*[\\/]||g'` fi # Munge "#line" or "#" directives. Don't let the resulting # debug information point at an absolute srcdir. Use the real # output file name, not yy.lex.c for instance. Adjust the # include guards too. sed -e "/^#/!b" \ -e "s|$input_rx|$input_sub_rx|" \ -e "$sed_fix_filenames" \ -e "$sed_fix_header_guards" \ "$from" >"$target" || ret=$? # Check whether files must be updated. if test "$from" != "$parser"; then if test -f "$realtarget" && cmp -s "$realtarget" "$target"; then echo "$to is unchanged" rm -f "$target" else echo "updating $to" mv -f "$target" "$realtarget" fi fi else # A missing file is only an error for the parser. This is a # blatant hack to let us support using "yacc -d". If -d is not # specified, don't fail when the header file is "missing". if test "$from" = "$parser"; then ret=1 fi fi done fi # Remove the directory. cd .. rm -rf $dirname exit $ret # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: sshguard-2.3.1/doc/000755 001751 001751 00000000000 13411747121 014763 5ustar00kevinzkevinz000000 000000 sshguard-2.3.1/aclocal.m4000644 001751 001751 00000134010 13412435605 016057 0ustar00kevinzkevinz000000 000000 # generated automatically by aclocal 1.16.1 -*- Autoconf -*- # Copyright (C) 1996-2018 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])]) m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],, [m4_warning([this file was generated for autoconf 2.69. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically 'autoreconf'.])]) # Copyright (C) 2002-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.16' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.16.1], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.16.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # Copyright (C) 2011-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_AR([ACT-IF-FAIL]) # ------------------------- # Try to determine the archiver interface, and trigger the ar-lib wrapper # if it is needed. If the detection of archiver interface fails, run # ACT-IF-FAIL (default is to abort configure with a proper error message). AC_DEFUN([AM_PROG_AR], [AC_BEFORE([$0], [LT_INIT])dnl AC_BEFORE([$0], [AC_PROG_LIBTOOL])dnl AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([ar-lib])dnl AC_CHECK_TOOLS([AR], [ar lib "link -lib"], [false]) : ${AR=ar} AC_CACHE_CHECK([the archiver ($AR) interface], [am_cv_ar_interface], [AC_LANG_PUSH([C]) am_cv_ar_interface=ar AC_COMPILE_IFELSE([AC_LANG_SOURCE([[int some_variable = 0;]])], [am_ar_try='$AR cru libconftest.a conftest.$ac_objext >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([am_ar_try]) if test "$ac_status" -eq 0; then am_cv_ar_interface=ar else am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([am_ar_try]) if test "$ac_status" -eq 0; then am_cv_ar_interface=lib else am_cv_ar_interface=unknown fi fi rm -f conftest.lib libconftest.a ]) AC_LANG_POP([C])]) case $am_cv_ar_interface in ar) ;; lib) # Microsoft lib, so override with the ar-lib wrapper script. # FIXME: It is wrong to rewrite AR. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__AR in this case, # and then we could set am__AR="$am_aux_dir/ar-lib \$(AR)" or something # similar. AR="$am_aux_dir/ar-lib $AR" ;; unknown) m4_default([$1], [AC_MSG_ERROR([could not determine $AR interface])]) ;; esac AC_SUBST([AR])dnl ]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to # '$srcdir', '$srcdir/..', or '$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is '.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl m4_if([$1], [CC], [depcc="$CC" am_compiler_list=], [$1], [CXX], [depcc="$CXX" am_compiler_list=], [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'], [$1], [UPC], [depcc="$UPC" am_compiler_list=], [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac]) for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES. AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl AS_HELP_STRING( [--enable-dependency-tracking], [do not reject slow dependency extractors]) AS_HELP_STRING( [--disable-dependency-tracking], [speeds up one-time build])]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl AC_SUBST([am__nodep])dnl _AM_SUBST_NOTMAKE([am__nodep])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. # TODO: see whether this extra hack can be removed once we start # requiring Autoconf 2.70 or later. AS_CASE([$CONFIG_FILES], [*\'*], [eval set x "$CONFIG_FILES"], [*], [set x $CONFIG_FILES]) shift # Used to flag and report bootstrapping failures. am_rc=0 for am_mf do # Strip MF so we end up with the name of the file. am_mf=`AS_ECHO(["$am_mf"]) | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile which includes # dependency-tracking related rules and includes. # Grep'ing the whole file directly is not great: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ || continue am_dirpart=`AS_DIRNAME(["$am_mf"])` am_filepart=`AS_BASENAME(["$am_mf"])` AM_RUN_LOG([cd "$am_dirpart" \ && sed -e '/# am--include-marker/d' "$am_filepart" \ | $MAKE -f - am--depfiles]) || am_rc=$? done if test $am_rc -ne 0; then AC_MSG_FAILURE([Something went wrong bootstrapping makefile fragments for automatic dependency tracking. Try re-running configure with the '--disable-dependency-tracking' option to at least be able to build the package (albeit without support for automatic dependency tracking).]) fi AS_UNSET([am_dirpart]) AS_UNSET([am_filepart]) AS_UNSET([am_mf]) AS_UNSET([am_rc]) rm -f conftest-deps.mk } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking is enabled. # This creates each '.Po' and '.Plo' makefile fragment that we'll need in # order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"])]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O. m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC]) [_AM_PROG_CC_C_O ]) # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [AC_DIAGNOSE([obsolete], [$0: two- and three-arguments forms are deprecated.]) m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if( m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]), [ok:ok],, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) AM_MISSING_PROG([AUTOCONF], [autoconf]) AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) AM_MISSING_PROG([AUTOHEADER], [autoheader]) AM_MISSING_PROG([MAKEINFO], [makeinfo]) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # AC_SUBST([mkdir_p], ['$(MKDIR_P)']) # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES([CC])], [m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES([CXX])], [m4_define([AC_PROG_CXX], m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES([OBJC])], [m4_define([AC_PROG_OBJC], m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], [_AM_DEPENDENCIES([OBJCXX])], [m4_define([AC_PROG_OBJCXX], m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl ]) AC_REQUIRE([AM_SILENT_RULES])dnl dnl The testsuite driver may need to know about EXEEXT, so add the dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) fi fi dnl The trailing newline in this macro's definition is deliberate, for dnl backward compatibility and to allow trailing 'dnl'-style comments dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841. ]) dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST([install_sh])]) # Copyright (C) 2003-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Copyright (C) 1998-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_LEX # ----------- # Autoconf leaves LEX=: if lex or flex can't be found. Change that to a # "missing" invocation, for better error output. AC_DEFUN([AM_PROG_LEX], [AC_PREREQ([2.50])dnl AC_REQUIRE([AM_MISSING_HAS_RUN])dnl AC_REQUIRE([AC_PROG_LEX])dnl if test "$LEX" = :; then LEX=${am_missing_run}flex fi]) # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- # From Jim Meyering # Copyright (C) 1996-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MAINTAINER_MODE([DEFAULT-MODE]) # ---------------------------------- # Control maintainer-specific portions of Makefiles. # Default is to disable them, unless 'enable' is passed literally. # For symmetry, 'disable' may be passed as well. Anyway, the user # can override the default with the --enable/--disable switch. AC_DEFUN([AM_MAINTAINER_MODE], [m4_case(m4_default([$1], [disable]), [enable], [m4_define([am_maintainer_other], [disable])], [disable], [m4_define([am_maintainer_other], [enable])], [m4_define([am_maintainer_other], [enable]) m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) dnl maintainer-mode's default is 'disable' unless 'enable' is passed AC_ARG_ENABLE([maintainer-mode], [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], am_maintainer_other[ make rules and dependencies not useful (and sometimes confusing) to the casual installer])], [USE_MAINTAINER_MODE=$enableval], [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) AC_MSG_RESULT([$USE_MAINTAINER_MODE]) AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) MAINT=$MAINTAINER_MODE_TRUE AC_SUBST([MAINT])dnl ] ) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MAKE_INCLUDE() # ----------------- # Check whether make has an 'include' directive that can support all # the idioms we need for our automatic dependency tracking code. AC_DEFUN([AM_MAKE_INCLUDE], [AC_MSG_CHECKING([whether ${MAKE-make} supports the include directive]) cat > confinc.mk << 'END' am__doit: @echo this is the am__doit target >confinc.out .PHONY: am__doit END am__include="#" am__quote= # BSD make does it like this. echo '.include "confinc.mk" # ignored' > confmf.BSD # Other make implementations (GNU, Solaris 10, AIX) do it like this. echo 'include confinc.mk # ignored' > confmf.GNU _am_result=no for s in GNU BSD; do AM_RUN_LOG([${MAKE-make} -f confmf.$s && cat confinc.out]) AS_CASE([$?:`cat confinc.out 2>/dev/null`], ['0:this is the am__doit target'], [AS_CASE([$s], [BSD], [am__include='.include' am__quote='"'], [am__include='include' am__quote=''])]) if test "$am__include" != "#"; then _am_result="yes ($s style)" break fi done rm -f confinc.* confmf.* AC_MSG_RESULT([${_am_result}]) AC_SUBST([am__include])]) AC_SUBST([am__quote])]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it is modern enough. # If it is, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= AC_MSG_WARN(['missing' script is too old or missing]) fi ]) # -*- Autoconf -*- # Obsolete and "removed" macros, that must however still report explicit # error messages when used, to smooth transition. # # Copyright (C) 1996-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. AC_DEFUN([AM_CONFIG_HEADER], [AC_DIAGNOSE([obsolete], ['$0': this macro is obsolete. You should use the 'AC][_CONFIG_HEADERS' macro instead.])dnl AC_CONFIG_HEADERS($@)]) AC_DEFUN([AM_PROG_CC_STDC], [AC_PROG_CC am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc AC_DIAGNOSE([obsolete], ['$0': this macro is obsolete. You should simply use the 'AC][_PROG_CC' macro instead. Also, your code should no longer depend upon 'am_cv_prog_cc_stdc', but upon 'ac_cv_prog_cc_stdc'.])]) AC_DEFUN([AM_C_PROTOTYPES], [AC_FATAL([automatic de-ANSI-fication support has been removed])]) AU_DEFUN([fp_C_PROTOTYPES], [AM_C_PROTOTYPES]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # -------------------- # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])]) # _AM_SET_OPTIONS(OPTIONS) # ------------------------ # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Copyright (C) 1999-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_CC_C_O # --------------- # Like AC_PROG_CC_C_O, but changed for automake. We rewrite AC_PROG_CC # to automatically call this. AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([compile])dnl AC_LANG_PUSH([C])dnl AC_CACHE_CHECK( [whether $CC understands -c and -o together], [am_cv_prog_cc_c_o], [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])]) # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i]) if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi AC_LANG_POP([C])]) # For backward compatibility. AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) # Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_RUN_LOG(COMMAND) # ------------------- # Run COMMAND, save the exit status in ac_status, and log it. # (This has been adapted from Autoconf's _AC_RUN_LOG macro.) AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD (exit $ac_status); }]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi if test "$[2]" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT([yes]) # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi AC_CONFIG_COMMANDS_PRE( [AC_MSG_CHECKING([that generated files are newer than configure]) if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi AC_MSG_RESULT([done])]) rm -f conftest.file ]) # Copyright (C) 2009-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SILENT_RULES([DEFAULT]) # -------------------------- # Enable less verbose build rules; with the default set to DEFAULT # ("yes" being less verbose, "no" or empty being verbose). AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl AS_HELP_STRING( [--enable-silent-rules], [less verbose build output (undo: "make V=1")]) AS_HELP_STRING( [--disable-silent-rules], [verbose build output (undo: "make V=0")])dnl ]) case $enable_silent_rules in @%:@ ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; esac dnl dnl A few 'make' implementations (e.g., NonStop OS and NextStep) dnl do not support nested variable expansions. dnl See automake bug#9928 and bug#10237. am_make=${MAKE-make} AC_CACHE_CHECK([whether $am_make supports nested variables], [am_cv_make_support_nested_variables], [if AS_ECHO([['TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi]) if test $am_cv_make_support_nested_variables = yes; then dnl Using '$V' instead of '$(V)' breaks IRIX make. AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AC_SUBST([AM_V])dnl AM_SUBST_NOTMAKE([AM_V])dnl AC_SUBST([AM_DEFAULT_V])dnl AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl AC_SUBST([AM_DEFAULT_VERBOSITY])dnl AM_BACKSLASH='\' AC_SUBST([AM_BACKSLASH])dnl _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) # Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor 'install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in "make install-strip", and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # -------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of 'v7', 'ustar', or 'pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar # AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AC_SUBST([AMTAR], ['$${TAR-tar}']) # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar], [# The POSIX 1988 'ustar' format is defined with fixed-size fields. # There is notably a 21 bits limit for the UID and the GID. In fact, # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 # and bug#13588). am_max_uid=2097151 # 2^21 - 1 am_max_gid=$am_max_uid # The $UID and $GID variables are not portable, so we need to resort # to the POSIX-mandated id(1) utility. Errors in the 'id' calls # below are definitely unexpected, so allow the users to see them # (that is, avoid stderr redirection). am_uid=`id -u || echo unknown` am_gid=`id -g || echo unknown` AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) if test $am_uid -le $am_max_uid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) if test $am_gid -le $am_max_gid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi], [pax], [], [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Go ahead even if we have the value already cached. We do so because we # need to set the values for the 'am__tar' and 'am__untar' variables. _am_tools=${am_cv_prog_tar_$1-$_am_tools} for _am_tool in $_am_tools; do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works. rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR sshguard-2.3.1/CONTRIBUTING.rst000644 001751 001751 00000005067 13405335557 016700 0ustar00kevinzkevinz000000 000000 ================= How to Contribute ================= .. contents:: For Users ========= Your feedback on how you use SSHGuard, what you like, and what annoys you, helps us improve SSHGuard. - Subscribe to the `users mailing list `_ and contribute to discussions on issues you care about. - Vote for issues on the `issue tracker`_. - Report log messages that should or should not be identified as attacks on the `issue tracker`_. - Consider maintaining a package for SSHGuard on your operating system. If there's any part of the code you'd like to dive into, post on the list and we'll show you where to get started. .. _issue tracker: https://bitbucket.org/sshguard/sshguard/issues?status=new&status=open For Committers ============== Commit Guidelines ----------------- - **Merge via fast-forward and rebase**. Where possible, merge pull requests and branches by rebasing on top of master and fast-forwarding, without creating a separate merge commit. Linear history makes it possible for us to bisect regressions. - **50 character subject line**, followed by a blank and more details in the body if needed, in the commit message. - **Work in topic branches as needed**. For changes big or small, feel free to use public topic branches in the SSHGuard repository. After review, they go in by rebasing master. Topic branches are usually deleted after merging. Force pushes are welcome in topic branches but not allowed in master. Issue Tracker Workflow ---------------------- An explanation of workflow states that aren't self-explanatory: Open Issue analyzed, fair game for someone to fix On hold Issue analyzed, fix deferred (e.g. due to coming architectural changes) Resolved Action taken, issue resolved Invalid Not an issue (e.g. external bugs, spam) Wontfix Intentional behavior or rejected feature requests Closed No action taken, issue resolved (e.g. already fixed in ``master``) Release Checklist ----------------- Before release, make sure that: - Building and installing work from source tarball: ``make distcheck`` - Change log and documentation are up-to-date - Version number is consistent in *configure.ac* and man pages Then: 1. Tag release: ``git tag -s -m "Tag release" v`` #. Build source tarball: ``autoreconf -i && ./configure && make dist`` #. Sign source tarball ``./distsign `` #. Push tags: ``git push --tags`` #. Upload release files to SourceForge. #. Send release announcement to mailing lists. #. Announce release on website. sshguard-2.3.1/doc/sshguard-setup.7.rst000644 001751 001751 00000015444 13405335557 020661 0ustar00kevinzkevinz000000 000000 ============== sshguard-setup ============== ---------------------------------- setting up SSHGuard on your system ---------------------------------- :Date: August 19, 2017 :Manual group: SSHGuard Manual :Manual section: 7 :Version: 2.3 DESCRIPTION =========== To set up SSHGuard, write *sshguard.conf* and set up the backend, if necessary. Configuration options are documented in the sample configuration file. A good starting point is to copy it and make the necessary changes: 1. Set **BACKEND**. You may also need to set it up to work with SSHGuard (see `BACKENDS`_). 2. Set **FILES**, **LOGREADER**, or both. Alternatively, give **sshguard** a list of files to monitor as positional arguments on the command-line. If none of these are set, **sshguard** will read from standard input. Use **FILES** to specify a space-separated list of log files to monitor. Use **LOGREADER** to specify a shell command to run to obtain logs. Both settings are ignored if files are given on the command-line. Sample **LOGREADER** commands for **journalctl(1)** and macOS 10.12+ are available in the sample configuration. OTHER LOGS ========== syslog-ng --------- For **syslog-ng 2.x**, add the following lines to *syslog-ng.conf*:: # pass only entries with auth+authpriv facilities from programs other than sshguard filter sshlogs { facility(auth, authpriv) and not match("sshguard"); }; # pass to this process with this template (avoids <ID> prefixes) destination sshguardproc { program("/usr/local/sbin/sshguard" template("$DATE $FULLHOST $MESSAGE\n")); }; log { source(src); filter(sshlogs); destination(sshguardproc); }; For **syslog-ng 3.x**, add the following lines to *syslog-ng.conf*:: # enable 3.x mode @version:3.0 # pass only entries with auth+authpriv facilities from programs other than sshguard filter f_sshguard { facility(auth, authpriv) and not program("sshguard"); }; # pass entries built with this format destination sshguard { program("/usr/sbin/sshguard" template("$DATE $FULLHOST $MSGHDR$MESSAGE\n") ); }; log { source(src); filter(f_sshguard); destination(sshguard); }; After restarting **syslog-ng**, SSHGuard should start as soon as a log entry with facility ``auth`` or ``authpriv`` arrives. If you are monitoring services other than **sshd**, add the appropriate log facilities to *syslog-ng.conf*. metalog ------- Add the following lines to *metalog.conf*:: Stuff to protect from brute force attacks : # for ssh facility = "*" program = "sshd" # other services ... # log to /var/log/sshguard directory logdir = "/var/log/sshguard" After restarting **metalog**, log entries will appear in */var/log/sshguard*. Use *log polling* to monitor the *current* log. BACKENDS ======== SSHGuard can block attackers using one of several firewall backends that is selected at compile-time. .. warning:: Read the documentation for your firewall. Make sure you fully understand each rule or command in the examples below before using them. They may need to be adjusted to suit your particular configuration. pf -- SSHGuard adds attackers to table **. Create the table and block attackers by adding the following lines to *pf.conf*:: table persist block in proto tcp from After reloading the **pf** configuration, you can inspect the contents of the table using:: # pfctl -t sshguard -T show ipfw ---- SSHGuard creates and adds attackers to table 22. The table can be used to block attackers in your ruleset. For example:: # ipfw add 5000 reset ip from table\(22\) to me You can inspect the contents of the table using:: # ipfw table 22 list firewalld --------- Blocked attackers are added to two ipsets named sshguard4 and sshguard6. The entries in the ipsets are blocked by default in the default firewall zone. Additional firewall zones can be configured using:: # firewall-cmd --zone=zone-name --permanent \ --add-rich-rule="rule source ipset=sshguard4 drop" # firewall-cmd --zone=zone-name --permanent \ --add-rich-rule="rule source ipset=sshguard6 drop" You can inspect the entries in the two ipsets using:: # firewall-cmd --permanent --info-ipset=sshguard4 # firewall-cmd --permanent --info-ipset=sshguard6 ipset ----- Blocked attackers are added to two ipsets named sshguard4 and sshguard6. Nothing is blocked by default, but can used as a source for iptables and other tools. E.g.:: # iptables -I INPUT -m set --match-set sshguard4 src -j DROP # ip6tables -I INPUT -m set --match-set sshguard6 src -j DROP netfilter/iptables ------------------ Create a chain for SSHGuard:: # iptables -N sshguard # for IPv4 # ip6tables -N sshguard # for IPv6 Update the INPUT chain to also pass the traffic to the sshguard chain at the very end of its processing. Specify in --dport all the ports of services your sshguard protects. If you want to prevent attackers from doing any traffic to the host, remove the option completely:: # block any traffic from abusers iptables -A INPUT -j sshguard ip6tables -A INPUT -j sshguard Or:: # block abusers only for SSH, FTP, POP, IMAP services (use "multiport" module) iptables -A INPUT -m multiport -p tcp --destination-ports 21,22,110,143 -j sshguard ip6tables -A INPUT -m multiport -p tcp --destination-ports 21,22,110,143 -j sshguard Verify that you have NOT a default allow rule passing all ssh traffic higher in the chain. Verify that you have NOT a default deny rule blocking all ssh traffic in your firewall. In either case, you already have the skill to adjust your firewall setup. Here is a sample ruleset that makes sense:: iptables -N sshguard # block whatever SSHGuard says be bad ... iptables -A INPUT -j sshguard # enable ssh, dns, http, https iptables -A INPUT -p tcp --dport 22 -j ACCEPT iptables -A INPUT -p udp --dport 53 -j ACCEPT iptables -A INPUT -p tcp --dport 80 -j ACCEPT iptables -A INPUT -p tcp --dport 443 -j ACCEPT # and block everything else (default deny) iptables -P INPUT DROP When rebooting, most systems reset the firewall configuration by default. To preserve your configuration, you usually use the iptables-save and iptables-restore utilities. However, each Linux variant has its own "right way". nftables -------- SSHGuard creates tables with a high priority and adds attackers to a set automatically. You can inspect the contents of the sets using:: # nft list set ip sshguard attackers # nft list set ip6 sshguard attackers Moreover, you can display sshguard's tables with:: # nft list table ip sshguard # nft list table ip6 sshguard EXAMPLES ======== Ignore **FILES** and monitor these files instead:: # sshguard /var/log/auth.log /var/log/maillog SEE ALSO ======== sshguard(8) sshguard-2.3.1/doc/sshguard.8000644 001751 001751 00000011477 13405337334 016712 0ustar00kevinzkevinz000000 000000 .\" Man page generated from reStructuredText. . .TH SSHGUARD 8 "January 9, 2017" "2.3" "SSHGuard Manual" .SH NAME sshguard \- block brute-force attacks by aggregating system logs . .nr rst2man-indent-level 0 . .de1 rstReportMargin \\$1 \\n[an-margin] level \\n[rst2man-indent-level] level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] - \\n[rst2man-indent0] \\n[rst2man-indent1] \\n[rst2man-indent2] .. .de1 INDENT .\" .rstReportMargin pre: . RS \\$1 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin] . nr rst2man-indent-level +1 .\" .rstReportMargin post: .. .de UNINDENT . RE .\" indent \\n[an-margin] .\" old: \\n[rst2man-indent\\n[rst2man-indent-level]] .nr rst2man-indent-level -1 .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]] .in \\n[rst2man-indent\\n[rst2man-indent-level]]u .. .\" Copyright (c) 2007,2008,2009,2010 Mij . .\" Permission to use, copy, modify, and distribute this software for any . .\" purpose with or without fee is hereby granted, provided that the above . .\" copyright notice and this permission notice appear in all copies. . .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES . .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF . .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR . .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES . .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN . .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF . .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. . .SH SYNOPSIS .sp \fBsshguard\fP [\fB\-hv\fP] [\fB\-a\fP \fIthreshold\fP] [\fB\-b\fP \fIthreshold\fP:\fIblacklist_file\fP] [\fB\-i\fP \fIpidfile\fP] [\fB\-p\fP \fIblocktime\fP] [\fB\-s\fP \fIdetection_time\fP] [\fB\-w\fP \fIaddress\fP | \fIwhitelist_file\fP] [\fIfile\fP ...] .SH DESCRIPTION .sp \fBsshguard\fP protects hosts from brute\-force attacks against SSH and other services. It aggregates system logs and blocks repeat offenders using one of several firewall backends. .sp \fBsshguard\fP can monitor log files or read log messages from standard input. Log messages are parsed line\-by\-line for recognized patterns. An attack is detected when several patterns are matched in a set time interval. Attackers are blocked temporarily but can also be semi\-permanently banned using the blacklist option. .SH OPTIONS .INDENT 0.0 .TP .B \fB\-a\fP \fIthreshold\fP (default 30) Block attackers when their cumulative attack score exceeds \fIthreshold\fP\&. Most attacks have a score of 10. .TP .B \fB\-b\fP \fIthreshold\fP:\fIblacklist_file\fP Blacklist an attacker when its score exceeds \fIthreshold\fP\&. Blacklisted addresses are loaded from and added to \fIblacklist\-file\fP\&. .TP .B \fB\-i\fP \fIpidfile\fP Write the PID of \fBsshguard\fP to \fIpidfile\fP\&. .TP .B \fB\-p\fP \fIblocktime\fP (default 120) Block attackers for initially \fIblocktime\fP seconds after exceeding \fIthreshold\fP\&. Subsequent blocks increase by a factor of 1.5. .sp \fBsshguard\fP unblocks attacks at random intervals, so actual block times will be longer. .TP .B \fB\-s\fP \fIdetection_time\fP (default 1800) Remember potential attackers for up to \fIdetection_time\fP seconds before resetting their score. .TP .B [\fB\-w\fP \fIaddress\fP | \fIwhitelist_file\fP] Whitelist a single address, hostname, or address block given as \fIaddress\fP\&. This option can be given multiple times. Alternatively, provide an absolute path to a \fIwhitelist_file\fP containing addresses to whitelist. See \fI\%WHITELISTING\fP\&. .TP .B \fB\-h\fP Print usage information and exit. .TP .B \fB\-v\fP Print version information and exit. .UNINDENT .SH ENVIRONMENT .INDENT 0.0 .TP .B SSHGUARD_DEBUG Set to enable verbose output from sshg\-blocker. .UNINDENT .SH FILES .INDENT 0.0 .TP .B %PREFIX%/etc/sshguard.conf See sample configuration file. .UNINDENT .SH WHITELISTING .sp Whitelisted addresses are never blocked. Addresses can be specified on the command line or be stored in a file. .sp On the command line, give the \fB\-w\fP option one or more times with an IP address, CIDR address block, or hostname as an argument. Hostnames are resolved once at startup. If a hostname resolves to multiple addresses, all of them are whitelisted. For example: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C sshguard \-w 192.168.1.10 \-w 192.168.0.0/24 \-w friend.example.com \-w 2001:0db8:85a3:0000:0000:8a2e:0370:7334 \-w 2002:836b:4179::836b:0000/126 .ft P .fi .UNINDENT .UNINDENT .sp If the argument to \fB\-w\fP begins with a forward slash (\(aq/\(aq) or dot (\(aq.\(aq), the argument is treated as the path to a whitelist file. .sp The whitelist file contains comments (lines beginning with \(aq#\(aq), addresses, address blocks, or hostnames, one per line. .SH SEE ALSO .sp sshguard\-setup(7) .\" Generated by docutils manpage writer. . sshguard-2.3.1/doc/sshguard-setup.7000644 001751 001751 00000021011 13405337334 020030 0ustar00kevinzkevinz000000 000000 .\" Man page generated from reStructuredText. . .TH SSHGUARD-SETUP 7 "August 19, 2017" "2.3" "SSHGuard Manual" .SH NAME sshguard-setup \- setting up SSHGuard on your system . .nr rst2man-indent-level 0 . .de1 rstReportMargin \\$1 \\n[an-margin] level \\n[rst2man-indent-level] level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] - \\n[rst2man-indent0] \\n[rst2man-indent1] \\n[rst2man-indent2] .. .de1 INDENT .\" .rstReportMargin pre: . RS \\$1 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin] . nr rst2man-indent-level +1 .\" .rstReportMargin post: .. .de UNINDENT . RE .\" indent \\n[an-margin] .\" old: \\n[rst2man-indent\\n[rst2man-indent-level]] .nr rst2man-indent-level -1 .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]] .in \\n[rst2man-indent\\n[rst2man-indent-level]]u .. .SH DESCRIPTION .sp To set up SSHGuard, write \fIsshguard.conf\fP and set up the backend, if necessary. Configuration options are documented in the sample configuration file. A good starting point is to copy it and make the necessary changes: .INDENT 0.0 .IP 1. 3 Set \fBBACKEND\fP\&. You may also need to set it up to work with SSHGuard (see \fI\%BACKENDS\fP). .IP 2. 3 Set \fBFILES\fP, \fBLOGREADER\fP, or both. Alternatively, give \fBsshguard\fP a list of files to monitor as positional arguments on the command\-line. If none of these are set, \fBsshguard\fP will read from standard input. .UNINDENT .sp Use \fBFILES\fP to specify a space\-separated list of log files to monitor. Use \fBLOGREADER\fP to specify a shell command to run to obtain logs. Both settings are ignored if files are given on the command\-line. .sp Sample \fBLOGREADER\fP commands for \fBjournalctl(1)\fP and macOS 10.12+ are available in the sample configuration. .SH OTHER LOGS .SS syslog\-ng .sp For \fBsyslog\-ng 2.x\fP, add the following lines to \fIsyslog\-ng.conf\fP: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # pass only entries with auth+authpriv facilities from programs other than sshguard filter sshlogs { facility(auth, authpriv) and not match("sshguard"); }; # pass to this process with this template (avoids <ID> prefixes) destination sshguardproc { program("/usr/local/sbin/sshguard" template("$DATE $FULLHOST $MESSAGE\en")); }; log { source(src); filter(sshlogs); destination(sshguardproc); }; .ft P .fi .UNINDENT .UNINDENT .sp For \fBsyslog\-ng 3.x\fP, add the following lines to \fIsyslog\-ng.conf\fP: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # enable 3.x mode @version:3.0 # pass only entries with auth+authpriv facilities from programs other than sshguard filter f_sshguard { facility(auth, authpriv) and not program("sshguard"); }; # pass entries built with this format destination sshguard { program("/usr/sbin/sshguard" template("$DATE $FULLHOST $MSGHDR$MESSAGE\en") ); }; log { source(src); filter(f_sshguard); destination(sshguard); }; .ft P .fi .UNINDENT .UNINDENT .sp After restarting \fBsyslog\-ng\fP, SSHGuard should start as soon as a log entry with facility \fBauth\fP or \fBauthpriv\fP arrives. If you are monitoring services other than \fBsshd\fP, add the appropriate log facilities to \fIsyslog\-ng.conf\fP\&. .SS metalog .sp Add the following lines to \fImetalog.conf\fP: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C Stuff to protect from brute force attacks : # for ssh facility = "*" program = "sshd" # other services ... # log to /var/log/sshguard directory logdir = "/var/log/sshguard" .ft P .fi .UNINDENT .UNINDENT .sp After restarting \fBmetalog\fP, log entries will appear in \fI/var/log/sshguard\fP\&. Use \fIlog polling\fP to monitor the \fIcurrent\fP log. .SH BACKENDS .sp SSHGuard can block attackers using one of several firewall backends that is selected at compile\-time. .sp \fBWARNING:\fP .INDENT 0.0 .INDENT 3.5 Read the documentation for your firewall. Make sure you fully understand each rule or command in the examples below before using them. They may need to be adjusted to suit your particular configuration. .UNINDENT .UNINDENT .SS pf .sp SSHGuard adds attackers to table \fI\fP\&. Create the table and block attackers by adding the following lines to \fIpf.conf\fP: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C table persist block in proto tcp from .ft P .fi .UNINDENT .UNINDENT .sp After reloading the \fBpf\fP configuration, you can inspect the contents of the table using: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # pfctl \-t sshguard \-T show .ft P .fi .UNINDENT .UNINDENT .SS ipfw .sp SSHGuard creates and adds attackers to table 22. The table can be used to block attackers in your ruleset. For example: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # ipfw add 5000 reset ip from table\e(22\e) to me .ft P .fi .UNINDENT .UNINDENT .sp You can inspect the contents of the table using: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # ipfw table 22 list .ft P .fi .UNINDENT .UNINDENT .SS firewalld .sp Blocked attackers are added to two ipsets named sshguard4 and sshguard6. The entries in the ipsets are blocked by default in the default firewall zone. Additional firewall zones can be configured using: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # firewall\-cmd \-\-zone=zone\-name \-\-permanent \e \-\-add\-rich\-rule="rule source ipset=sshguard4 drop" # firewall\-cmd \-\-zone=zone\-name \-\-permanent \e \-\-add\-rich\-rule="rule source ipset=sshguard6 drop" .ft P .fi .UNINDENT .UNINDENT .sp You can inspect the entries in the two ipsets using: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # firewall\-cmd \-\-permanent \-\-info\-ipset=sshguard4 # firewall\-cmd \-\-permanent \-\-info\-ipset=sshguard6 .ft P .fi .UNINDENT .UNINDENT .SS ipset .sp Blocked attackers are added to two ipsets named sshguard4 and sshguard6. Nothing is blocked by default, but can used as a source for iptables and other tools. E.g.: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # iptables \-I INPUT \-m set \-\-match\-set sshguard4 src \-j DROP # ip6tables \-I INPUT \-m set \-\-match\-set sshguard6 src \-j DROP .ft P .fi .UNINDENT .UNINDENT .SS netfilter/iptables .sp Create a chain for SSHGuard: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # iptables \-N sshguard # for IPv4 # ip6tables \-N sshguard # for IPv6 .ft P .fi .UNINDENT .UNINDENT .sp Update the INPUT chain to also pass the traffic to the sshguard chain at the very end of its processing. Specify in \-\-dport all the ports of services your sshguard protects. If you want to prevent attackers from doing any traffic to the host, remove the option completely: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # block any traffic from abusers iptables \-A INPUT \-j sshguard ip6tables \-A INPUT \-j sshguard .ft P .fi .UNINDENT .UNINDENT .sp Or: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # block abusers only for SSH, FTP, POP, IMAP services (use "multiport" module) iptables \-A INPUT \-m multiport \-p tcp \-\-destination\-ports 21,22,110,143 \-j sshguard ip6tables \-A INPUT \-m multiport \-p tcp \-\-destination\-ports 21,22,110,143 \-j sshguard .ft P .fi .UNINDENT .UNINDENT .sp Verify that you have NOT a default allow rule passing all ssh traffic higher in the chain. Verify that you have NOT a default deny rule blocking all ssh traffic in your firewall. In either case, you already have the skill to adjust your firewall setup. .sp Here is a sample ruleset that makes sense: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C iptables \-N sshguard # block whatever SSHGuard says be bad ... iptables \-A INPUT \-j sshguard # enable ssh, dns, http, https iptables \-A INPUT \-p tcp \-\-dport 22 \-j ACCEPT iptables \-A INPUT \-p udp \-\-dport 53 \-j ACCEPT iptables \-A INPUT \-p tcp \-\-dport 80 \-j ACCEPT iptables \-A INPUT \-p tcp \-\-dport 443 \-j ACCEPT # and block everything else (default deny) iptables \-P INPUT DROP .ft P .fi .UNINDENT .UNINDENT .sp When rebooting, most systems reset the firewall configuration by default. To preserve your configuration, you usually use the iptables\-save and iptables\-restore utilities. However, each Linux variant has its own "right way". .SS nftables .sp SSHGuard creates tables with a high priority and adds attackers to a set automatically. .sp You can inspect the contents of the sets using: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # nft list set ip sshguard attackers # nft list set ip6 sshguard attackers .ft P .fi .UNINDENT .UNINDENT .sp Moreover, you can display sshguard\(aqs tables with: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # nft list table ip sshguard # nft list table ip6 sshguard .ft P .fi .UNINDENT .UNINDENT .SH EXAMPLES .sp Ignore \fBFILES\fP and monitor these files instead: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # sshguard /var/log/auth.log /var/log/maillog .ft P .fi .UNINDENT .UNINDENT .SH SEE ALSO .sp sshguard(8) .\" Generated by docutils manpage writer. . sshguard-2.3.1/doc/sshguard.8.rst000644 001751 001751 00000007656 13405335557 017532 0ustar00kevinzkevinz000000 000000 .. Copyright (c) 2007,2008,2009,2010 Mij .. Permission to use, copy, modify, and distribute this software for any .. purpose with or without fee is hereby granted, provided that the above .. copyright notice and this permission notice appear in all copies. .. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES .. WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF .. MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR .. ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES .. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN .. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .. OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ======== sshguard ======== ---------------------------------------------------- block brute-force attacks by aggregating system logs ---------------------------------------------------- :Date: January 9, 2017 :Manual group: SSHGuard Manual :Manual section: 8 :Version: 2.3 SYNOPSIS ======== **sshguard** [**-hv**] [**-a** *threshold*] [**-b** *threshold*:*blacklist_file*] [**-i** *pidfile*] [**-p** *blocktime*] [**-s** *detection_time*] [**-w** *address* | *whitelist_file*] [*file* ...] DESCRIPTION =========== **sshguard** protects hosts from brute-force attacks against SSH and other services. It aggregates system logs and blocks repeat offenders using one of several firewall backends. **sshguard** can monitor log files or read log messages from standard input. Log messages are parsed line-by-line for recognized patterns. An attack is detected when several patterns are matched in a set time interval. Attackers are blocked temporarily but can also be semi-permanently banned using the blacklist option. OPTIONS ======= **-a** *threshold* (default 30) Block attackers when their cumulative attack score exceeds *threshold*. Most attacks have a score of 10. **-b** *threshold*:*blacklist_file* Blacklist an attacker when its score exceeds *threshold*. Blacklisted addresses are loaded from and added to *blacklist-file*. **-i** *pidfile* Write the PID of **sshguard** to `pidfile`. **-p** *blocktime* (default 120) Block attackers for initially *blocktime* seconds after exceeding *threshold*. Subsequent blocks increase by a factor of 1.5. **sshguard** unblocks attacks at random intervals, so actual block times will be longer. **-s** *detection_time* (default 1800) Remember potential attackers for up to *detection_time* seconds before resetting their score. [**-w** *address* | *whitelist_file*] Whitelist a single address, hostname, or address block given as *address*. This option can be given multiple times. Alternatively, provide an absolute path to a *whitelist_file* containing addresses to whitelist. See `WHITELISTING`_. **-h** Print usage information and exit. **-v** Print version information and exit. ENVIRONMENT =========== SSHGUARD_DEBUG Set to enable verbose output from sshg-blocker. FILES ===== %PREFIX%/etc/sshguard.conf See sample configuration file. WHITELISTING ============ Whitelisted addresses are never blocked. Addresses can be specified on the command line or be stored in a file. On the command line, give the **-w** option one or more times with an IP address, CIDR address block, or hostname as an argument. Hostnames are resolved once at startup. If a hostname resolves to multiple addresses, all of them are whitelisted. For example:: sshguard -w 192.168.1.10 -w 192.168.0.0/24 -w friend.example.com -w 2001:0db8:85a3:0000:0000:8a2e:0370:7334 -w 2002:836b:4179::836b:0000/126 If the argument to **-w** begins with a forward slash ('/') or dot ('.'), the argument is treated as the path to a whitelist file. The whitelist file contains comments (lines beginning with '#'), addresses, address blocks, or hostnames, one per line. SEE ALSO ======== sshguard-setup(7) sshguard-2.3.1/examples/sshguard.service000644 001751 001751 00000000552 13405335557 021251 0ustar00kevinzkevinz000000 000000 # sshguard.service -- sample systemd unit file [Unit] Description=SSHGuard - blocks brute-force login attempts After=syslog.target After=iptables.target After=ip6tables.target After=libvirtd.service After=firewalld.service [Service] ExecStartPre=-/usr/sbin/iptables -N sshguard ExecStart=/usr/sbin/sshguard Restart=always [Install] WantedBy=multi-user.target sshguard-2.3.1/examples/sshguard.conf.sample000644 001751 001751 00000003653 13405335557 022023 0ustar00kevinzkevinz000000 000000 #!/bin/sh # sshguard.conf -- SSHGuard configuration # Options that are uncommented in this example are set to their default # values. Options without defaults are commented out. #### REQUIRED CONFIGURATION #### # Full path to backend executable (required, no default) #BACKEND="/usr/local/libexec/sshg-fw-iptables" # Space-separated list of log files to monitor. (optional, no default) #FILES="/var/log/auth.log /var/log/authlog /var/log/maillog" # Shell command that provides logs on standard output. (optional, no default) # Example 1: ssh and sendmail from systemd journal: #LOGREADER="LANG=C /usr/bin/journalctl -afb -p info -n1 -t sshd -t sendmail -o cat" # Example 2: ssh from os_log (macOS 10.12+) #LOGREADER="/usr/bin/log stream --style syslog --predicate '(processImagePath contains \"sshd\")'" #### OPTIONS #### # Block attackers when their cumulative attack score exceeds THRESHOLD. # Most attacks have a score of 10. (optional, default 30) THRESHOLD=30 # Block attackers for initially BLOCK_TIME seconds after exceeding THRESHOLD. # Subsequent blocks increase by a factor of 1.5. (optional, default 120) BLOCK_TIME=120 # Remember potential attackers for up to DETECTION_TIME seconds before # resetting their score. (optional, default 1800) DETECTION_TIME=1800 # Size of IPv6 'subnet to block. Defaults to a single address, CIDR notation. (optional, default to 128) IPV6_SUBNET=128 # Size of IPv4 subnet to block. Defaults to a single address, CIDR notation. (optional, default to 32) IPV4_SUBNET=32 #### EXTRAS #### # !! Warning: These features may not work correctly with sandboxing. !! # Full path to PID file (optional, no default) #PID_FILE=/run/sshguard.pid # Colon-separated blacklist threshold and full path to blacklist file. # (optional, no default) #BLACKLIST_FILE=90:/var/lib/sshguard/enemies # IP addresses listed in the WHITELIST_FILE are considered to be # friendlies and will never be blocked. #WHITELIST_FILE=/etc/friends sshguard-2.3.1/examples/whitelistfile.example000644 001751 001751 00000000407 12435121051 022257 0ustar00kevinzkevinz000000 000000 # comment line (a '#' as very first character) # a single IPv4 and IPv6 address 1.2.3.4 2001:0db8:85a3:08d3:1319:8a2e:0370:7344 # address blocks in CIDR notation 127.0.0.0/8 10.11.128.0/17 192.168.0.0/24 # hostnames rome-fw.enterprise.com hosts.friends.com sshguard-2.3.1/examples/net.sshguard.plist000644 001751 001751 00000000610 13405335557 021524 0ustar00kevinzkevinz000000 000000 Label net.sshguard KeepAlive ProgramArguments /usr/local/sbin/sshguard RunAtLoad sshguard-2.3.1/src/Makefile.in000644 001751 001751 00000054505 13412435606 017066 0ustar00kevinzkevinz000000 000000 # Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : subdir = src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(dist_libexec_SCRIPTS) \ $(noinst_HEADERS) $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/common/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(sbindir)" SCRIPTS = $(dist_libexec_SCRIPTS) $(sbin_SCRIPTS) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac HEADERS = $(noinst_HEADERS) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ RST2MAN_PROG = @RST2MAN_PROG@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = blocker fw parser EXTRA_DIST = sshguard.in noinst_HEADERS = common/address.h common/attack.h common/sandbox.h common/simclist.h dist_libexec_SCRIPTS = sshg-logtail sbin_SCRIPTS = sshguard CLEANFILES = sshguard script_subst = sed \ -e 's|@libexecdir[@]|$(libexecdir)|g' \ -e 's|@sysconfdir[@]|$(sysconfdir)|g' \ -e 's|@sshguardversion[@]|$(VERSION)|g' all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-dist_libexecSCRIPTS: $(dist_libexec_SCRIPTS) @$(NORMAL_INSTALL) @list='$(dist_libexec_SCRIPTS)'; test -n "$(libexecdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(libexecdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libexecdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n' \ -e 'h;s|.*|.|' \ -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) { files[d] = files[d] " " $$1; \ if (++n[d] == $(am__install_max)) { \ print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ else { print "f", d "/" $$4, $$1 } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(libexecdir)$$dir'"; \ $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(libexecdir)$$dir" || exit $$?; \ } \ ; done uninstall-dist_libexecSCRIPTS: @$(NORMAL_UNINSTALL) @list='$(dist_libexec_SCRIPTS)'; test -n "$(libexecdir)" || exit 0; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 's,.*/,,;$(transform)'`; \ dir='$(DESTDIR)$(libexecdir)'; $(am__uninstall_files_from_dir) install-sbinSCRIPTS: $(sbin_SCRIPTS) @$(NORMAL_INSTALL) @list='$(sbin_SCRIPTS)'; test -n "$(sbindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(sbindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(sbindir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n' \ -e 'h;s|.*|.|' \ -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) { files[d] = files[d] " " $$1; \ if (++n[d] == $(am__install_max)) { \ print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ else { print "f", d "/" $$4, $$1 } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(sbindir)$$dir'"; \ $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(sbindir)$$dir" || exit $$?; \ } \ ; done uninstall-sbinSCRIPTS: @$(NORMAL_UNINSTALL) @list='$(sbin_SCRIPTS)'; test -n "$(sbindir)" || exit 0; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 's,.*/,,;$(transform)'`; \ dir='$(DESTDIR)$(sbindir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile $(SCRIPTS) $(HEADERS) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(sbindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-dist_libexecSCRIPTS install-sbinSCRIPTS install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-dist_libexecSCRIPTS uninstall-sbinSCRIPTS .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic cscopelist-am ctags ctags-am \ distclean distclean-generic distclean-tags distdir dvi dvi-am \ html html-am info info-am install install-am install-data \ install-data-am install-dist_libexecSCRIPTS install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-sbinSCRIPTS install-strip installcheck installcheck-am \ installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ pdf-am ps ps-am tags tags-am uninstall uninstall-am \ uninstall-dist_libexecSCRIPTS uninstall-sbinSCRIPTS .PRECIOUS: Makefile sshguard: Makefile sshguard.in $(script_subst) $(srcdir)/$@.in > $@ # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: sshguard-2.3.1/src/Makefile.am000644 001751 001751 00000000666 13405335557 017062 0ustar00kevinzkevinz000000 000000 SUBDIRS = blocker fw parser EXTRA_DIST = sshguard.in noinst_HEADERS = common/address.h common/attack.h common/sandbox.h common/simclist.h dist_libexec_SCRIPTS = sshg-logtail sbin_SCRIPTS = sshguard CLEANFILES = sshguard script_subst = sed \ -e 's|@libexecdir[@]|$(libexecdir)|g' \ -e 's|@sysconfdir[@]|$(sysconfdir)|g' \ -e 's|@sshguardversion[@]|$(VERSION)|g' sshguard: Makefile sshguard.in $(script_subst) $(srcdir)/$@.in > $@ sshguard-2.3.1/src/sshguard.in000644 001751 001751 00000004754 13405335557 017200 0ustar00kevinzkevinz000000 000000 #!/bin/sh # sshguard -- protect hosts from brute-force attacks # Unregister recursive SIGTERM, and make sure to kill # entire process group (subshell) on exit/interrupts. trap "trap - TERM && kill 0" INT TERM EXIT libexec="@libexecdir@" version="@sshguardversion@" err() { echo "sshguard: $1" >&2 } setflag() { if [ ! -z "$2" ]; then flags="$flags -$1 $2" fi } usage() { cat << EOF Usage: sshguard [-v] [-h] [-a BLACKLIST-THRESHOLD] [-b BLACKLIST-FILE] [-i PID-FILE] [-p BLOCK_TIME] [-s DETECTION_TIME] [-w IP-ADDRESS | WHITELIST-FILE] EOF } # Source configuration file config="@sysconfdir@/sshguard.conf" if [ ! -r $config ]; then err "Could not read '$config'" err "Please configure SSHGuard." exit 78 fi . $config # Runtime arguments override configuration options while getopts "b:l:p:s:a:w:i:hv" opt; do case $opt in a) THRESHOLD=$OPTARG;; b) BLACKLIST_FILE=$OPTARG;; i) PID_FILE=$OPTARG;; l) FILES="$FILES $OPTARG";; p) BLOCK_TIME=$OPTARG;; s) DETECTION_TIME=$OPTARG;; w) WHITELIST_ARG="$WHITELIST_ARG $OPTARG";; h) usage; exit;; v) echo "SSHGuard $version"; exit;; esac done # Check backend if [ -z "$BACKEND" ]; then err "BACKEND must be set in '$config'" exit 78 elif [ ! -x "$BACKEND" ]; then err "'$BACKEND' is not executable" exit 78 fi # Read config in to flags setflag 'a' $THRESHOLD setflag 'b' $BLACKLIST_FILE setflag 'i' $PID_FILE setflag 'p' $BLOCK_TIME setflag 's' $DETECTION_TIME setflag 'N' $IPV6_SUBNET setflag 'n' $IPV4_SUBNET if [ ! -z "$WHITELIST_ARG" ]; then for arg in $WHITELIST_ARG; do flags="$flags -w $arg" done elif [ ! -z "$WHITELIST_FILE" ]; then flags="$flags -w $WHITELIST_FILE" fi # Log source selection order: # runtime args, logreader and files, logreader, files, or stdin shift $((OPTIND-1)) if [ ! -z "$@" ]; then tailcmd="$libexec/sshg-logtail $@" elif [ \( ! -z "$LOGREADER" \) -a \( ! -z "$FILES" \) ]; then LOGREADER="$LOGREADER | grep --line-buffered '^'" FILESREAD="$libexec/sshg-logtail $FILES | grep --line-buffered '^'" tailcmd="( $LOGREADER & $FILESREAD )" elif [ ! -z "$LOGREADER" ]; then tailcmd="$LOGREADER" elif [ ! -z "$FILES" ]; then tailcmd="$libexec/sshg-logtail $FILES" elif [ -z "$tailcmd" ]; then err "Reading from stdin. You probably shouldn't be doing this." tailcmd="cat" fi eval $tailcmd | $libexec/sshg-parser | \ $libexec/sshg-blocker $flags | ($BACKEND; kill -PIPE $$) sshguard-2.3.1/src/parser/000755 001751 001751 00000000000 13412703327 016302 5ustar00kevinzkevinz000000 000000 sshguard-2.3.1/src/common/000755 001751 001751 00000000000 13412703327 016276 5ustar00kevinzkevinz000000 000000 sshguard-2.3.1/src/sshg-logtail000755 001751 001751 00000000540 13257633235 017337 0ustar00kevinzkevinz000000 000000 #!/bin/sh # sshg-logtail -- poll from the ends of log files using `tail` # This file is part of SSHGuard. tailF="tail -F -n 0 $@" tailf="tail -f -n 0 $@" fallback() { eval $tailF 2>/dev/null || exec $tailf } case `uname` in Darwin|FreeBSD|Linux|NetBSD) exec $tailF;; OpenBSD) exec $tailf;; *) fallback;; esac sshguard-2.3.1/src/blocker/000755 001751 001751 00000000000 13412703327 016427 5ustar00kevinzkevinz000000 000000 sshguard-2.3.1/src/fw/000755 001751 001751 00000000000 13412703327 015422 5ustar00kevinzkevinz000000 000000 sshguard-2.3.1/src/fw/hosts.c000644 001751 001751 00000024716 13412437434 016743 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2009 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #include #include #include #include #include #include #include #include #include "fw.h" #include "simclist.h" #ifndef HOSTSFILE_PATH # define HOSTSFILE_PATH "/etc/hosts.allow" #endif #define HOSTS_MAXCMDLEN 1024 /* hosts_access limits line length. How many addresses per line to use? */ #define HOSTS_ADDRS_PER_LINE 8 #define HOSTS_SSHGUARD_PREFIX "###sshguard###\n" #define HOSTS_SSHGUARD_SUFFIX "###sshguard###\n" typedef struct { char addr[ADDRLEN]; int addrkind; } addr_service_t; int hosts_updatelist(); int hosts_clearsshguardblocks(void); list_t hosts_blockedaddrs; FILE *hosts_file; /* buffer to hold the name of temporary configuration files. Set once, in fw_init() */ #define MAX_TEMPFILE_NAMELEN 60 static char tempflname[MAX_TEMPFILE_NAMELEN] = ""; size_t addr_service_meter(const void *el) { return sizeof(addr_service_t); } int addr_service_comparator(const void *a, const void *b) { addr_service_t *A = (addr_service_t *)a; addr_service_t *B = (addr_service_t *)b; return !((strcmp(A->addr, B->addr) == 0) && (A->addrkind == B->addrkind)); } static FILE *make_temporary_conffile(void) { FILE *f; f = fopen(tempflname, "w+"); if (f == NULL) return NULL; /* make sure to secure file permissions (-rw-r--r--) */ if (chmod(tempflname, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH) != 0) { /* could not secure perms, return full failure */ perror("could not chmod"); fclose(f); unlink(tempflname); return NULL; } return f; } static int install_temporary_conffile() { if (rename(tempflname, HOSTSFILE_PATH) != 0) { perror("could not rename temporary file"); return FWALL_ERR; } return FWALL_OK; } int fw_init() { char buf[HOSTS_MAXCMDLEN]; FILE *tmp, *deny; /* set the filename of the temporary configuration file */ if (snprintf(tempflname, MAX_TEMPFILE_NAMELEN, "%s-sshguard.%u", HOSTSFILE_PATH, getpid()) >= MAX_TEMPFILE_NAMELEN) { fprintf(stderr, "'tempflname' buffer too small to hold '%s-sshguard.%u!'", HOSTSFILE_PATH, getpid()); return FWALL_ERR; } hosts_clearsshguardblocks(); /* place sshguard block delimiters (header/footer) into HOSTSFILE_PATH */ deny = fopen(HOSTSFILE_PATH, "r+"); if (deny == NULL) { perror("could not open hosts.allow"); return FWALL_ERR; } tmp = make_temporary_conffile(); if (tmp == NULL) { perror("could not create temporary file"); fclose(deny); return FWALL_ERR; } fprintf(tmp, "%s%s", HOSTS_SSHGUARD_PREFIX, HOSTS_SSHGUARD_SUFFIX); /* copy the original content of HOSTSFILE_PATH into tmp */ while (fgets(buf, HOSTS_MAXCMDLEN, deny) != NULL) { fprintf(tmp, "%s", buf); } fclose(tmp); fclose(deny); /* install temporary conf file into main file */ if (install_temporary_conffile() != FWALL_OK) return FWALL_ERR; list_init(&hosts_blockedaddrs); list_attributes_copy(&hosts_blockedaddrs, addr_service_meter, 1); list_attributes_comparator(&hosts_blockedaddrs, addr_service_comparator); return FWALL_OK; } int fw_fin() { hosts_clearsshguardblocks(); list_destroy(&hosts_blockedaddrs); return FWALL_OK; } int fw_block(const attack_t *attack) { addr_service_t ads; strcpy(ads.addr, attack->address.value); ads.addrkind = attack->address.kind; list_append(&hosts_blockedaddrs, &ads); return hosts_updatelist(); } int fw_release(const attack_t *attack) { int pos; if ((pos = list_locate(&hosts_blockedaddrs, attack->address.value)) < 0) { return FWALL_ERR; } list_delete_at(&hosts_blockedaddrs, pos); return hosts_updatelist(); } int fw_flush(void) { list_clear(&hosts_blockedaddrs); return hosts_updatelist(); } int hosts_updatelist() { char buf[HOSTS_MAXCMDLEN]; FILE *tmp, *deny; /* open hosts.allow file */ deny = fopen(HOSTSFILE_PATH, "r+"); if (deny == NULL) { perror("could not open hosts.allow"); return FWALL_ERR; } /* create/open a temporary file */ tmp = make_temporary_conffile(); if (tmp == NULL) { perror("could not create temporary file"); fclose(deny); return FWALL_ERR; } /* copy everything until sshguard prefix line */ while (fgets(buf, HOSTS_MAXCMDLEN, deny) != NULL) { fprintf(tmp, "%s", buf); if (strcmp(buf, HOSTS_SSHGUARD_PREFIX) == 0) break; } /* sanity check */ if (strcmp(buf, HOSTS_SSHGUARD_PREFIX) != 0) { fprintf(stderr, "hosts.allow file did not contain sshguard rules block\n"); fclose(deny); fclose(tmp); unlink(tempflname); return FWALL_ERR; } if (list_size(& hosts_blockedaddrs) > 0) { addr_service_t *curr; fprintf(tmp, "ALL :"); for (unsigned int cnt = 0; cnt < list_size(&hosts_blockedaddrs); cnt++) { curr = (addr_service_t *)list_get_at(&hosts_blockedaddrs, cnt); /* block lines differ depending on IP Version */ switch (curr->addrkind) { case ADDRKIND_IPv4: fprintf(tmp, " %s", curr->addr); break; case ADDRKIND_IPv6: fprintf(tmp, " [%s]", curr->addr); break; } if (((cnt+1) % HOSTS_ADDRS_PER_LINE) == 0) { /* switch to new line */ fprintf(tmp, " : DENY\nALL : "); } } fprintf(tmp, " : DENY\n"); } fprintf(tmp, HOSTS_SSHGUARD_SUFFIX); /* getting to the end of the original block */ while (fgets(buf, HOSTS_MAXCMDLEN, deny)) { if (strcmp(buf, HOSTS_SSHGUARD_SUFFIX) == 0) break; } /* sanity check */ if (strcmp(buf, HOSTS_SSHGUARD_SUFFIX) != 0) { fprintf(stderr, "hosts.allow file's sshguard rules block was malformed\n"); fclose(deny); fclose(tmp); unlink(tempflname); return FWALL_ERR; } /* copy the rest of the original file */ while (fgets(buf, HOSTS_MAXCMDLEN, deny)) { fprintf(tmp, "%s", buf); } fclose(tmp); fclose(deny); /* move tmp over to deny */ if (install_temporary_conffile() != FWALL_OK) { perror("could not rename temporary file"); return FWALL_ERR; } #if 0 fseek(tmp, 0, SEEK_SET); fseek(deny, 0, SEEK_SET); while(fgets(buf, HOSTS_MAXCMDLEN, tmp) != NULL) { fprintf(deny, "%s", buf); } ftruncate(fileno(deny), ftell(tmp)); fclose(tmp); fclose(deny); close(fd); unlink(tempflname); #endif return FWALL_OK; } int hosts_clearsshguardblocks(void) { char buf[HOSTS_MAXCMDLEN]; int docopy; FILE *tmp, *deny; /* open deny file */ deny = fopen(HOSTSFILE_PATH, "r+"); if (deny == NULL) { perror("could not open hosts.allow file"); return FWALL_ERR; } /* create/open a temporary file */ tmp = make_temporary_conffile(); if (tmp == NULL) { perror("could not create temporary file"); fclose(deny); return FWALL_ERR; } /* save to tmp only those parts that are not sshguard blocks */ docopy = 1; while (fgets(buf, HOSTS_MAXCMDLEN, deny) != NULL) { switch (docopy) { case 1: if (strcmp(buf, HOSTS_SSHGUARD_PREFIX) == 0) { docopy = 0; } else { fprintf(tmp, "%s", buf); } break; case 0: if (strcmp(buf, HOSTS_SSHGUARD_SUFFIX) == 0) { docopy = 1; } break; } } fclose(tmp); fclose(deny); /* move tmp over to deny */ if (install_temporary_conffile() != FWALL_OK) { perror("could not rename temporary file"); return FWALL_ERR; } return FWALL_OK; } static bool fill_attack(attack_t *attack, const char *addr, const char *type) { if (addr == NULL || type == NULL) { return false; } long long addrtype = strtoll(type, NULL, 10); if (addrtype != 4 && addrtype != 6) { return false; } static sshg_address_t address; strncpy(address.value, addr, ADDRLEN); address.kind = addrtype; attack->address = address; return true; } void backend_main(const char *name) { if (fw_init() != FWALL_OK) { fprintf(stderr, "%s: Could not initialize firewall\n", name); exit(69); } atexit((void (*)(void))fw_fin); char buf[128]; while (fgets(buf, sizeof(buf), stdin) != NULL) { const char *sep = " \n"; char *cmd = strtok(buf, sep); char *address = strtok(NULL, sep); char *type = strtok(NULL, sep); if (strcmp(cmd, "block") == 0) { attack_t attack; if (!fill_attack(&attack, address, type)) { fprintf(stderr, "%s: Invalid arguments to block\n", name); exit(65); } fw_block(&attack); } else if (strcmp(cmd, "release") == 0) { attack_t attack; if (!fill_attack(&attack, address, type)) { fprintf(stderr, "%s: Invalid arguments to release\n", name); exit(65); } fw_release(&attack); } else if (strcmp(cmd, "flush") == 0) { fw_flush(); } else if (strcmp(cmd, "flushonexit") == 0) { atexit((void (*)(void))fw_flush); } else { fprintf(stderr, "%s: Invalid command\n", name); exit(65); } } } int main() { backend_main("sshg-fw-hosts"); } sshguard-2.3.1/src/fw/sshg-fw-null.sh000644 001751 001751 00000000553 13405335557 020317 0ustar00kevinzkevinz000000 000000 #!/bin/sh # sshg-fw-null # This file is part of SSHGuard. fw_init() { echo "===>>> Initializing (null) firewall" } fw_block() { echo "===>>> Blocking $1/$3 (null)" } fw_release() { echo "===>>> Releasing $1/$3 (null)" } fw_flush() { echo "===>>> Flushing blocked addresses (null)" } fw_fin() { echo "===>>> Cleaning up (null) firewall" } sshguard-2.3.1/src/fw/sshg-fw-nft-sets.sh000644 001751 001751 00000002173 13405335557 021110 0ustar00kevinzkevinz000000 000000 #!/bin/sh # sshg-fw-nft-sets # This file is part of SSHGuard. CMD_NFT=nft NFT_TABLE=sshguard NFT_CHAIN=blacklist NFT_SET=attackers proto() { if [ "6" = "$1" ]; then echo ip6 else echo ip fi } run_nft() { ${CMD_NFT} $1 $(proto $3) "${NFT_TABLE}" "$2" > /dev/null 2>&1 } fw_init() { run_nft "add table" "" 4 run_nft "add table" "" 6 run_nft "add chain" "${NFT_CHAIN}"' { type filter hook input priority -10 ; }' 4 run_nft "add chain" "${NFT_CHAIN}"' { type filter hook input priority -10 ; }' 6 # Create sets run_nft "add set" "${NFT_SET} { type ipv4_addr; flags interval; }" 4 run_nft "add set" "${NFT_SET} { type ipv6_addr; flags interval; }" 6 # Rule to drop sets' IP run_nft "add rule" "${NFT_CHAIN} ip saddr @${NFT_SET} drop" 4 run_nft "add rule" "${NFT_CHAIN} ip6 saddr @${NFT_SET} drop" 6 } fw_block() { run_nft "add element" "${NFT_SET} { $1/$3 }" $2 } fw_release() { run_nft "delete element" "${NFT_SET} { $1/$3 }" $2 } fw_flush() { fw_fin fw_init } fw_fin() { # Remove tables run_nft "delete table" "" 4 run_nft "delete table" "" 6 } sshguard-2.3.1/src/fw/fw.h000644 001751 001751 00000002420 13405335557 016215 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2009,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #pragma once #include "attack.h" #define FWALL_OK 0 #define FWALL_ERR -1 /** * Start the firewall process. */ int fw_init(void); /** * Stop the firewall process. */ int fw_fin(void); /** * Block an address associated with an attack. */ int fw_block(const attack_t *attack); /** * Release an address associated with an attack. */ int fw_release(const attack_t *attack); /** * Release all blocked addresses. */ int fw_flush(void); sshguard-2.3.1/src/fw/sshg-fw-iptables.sh000644 001751 001751 00000001076 13405335557 021151 0ustar00kevinzkevinz000000 000000 #!/bin/sh # sshg-fw-iptables # This file is part of SSHGuard. run_iptables() { cmd=iptables if [ "6" = "$2" ]; then cmd=ip6tables fi # Check if iptables supports the '-w' flag. if $cmd -w -V >/dev/null 2>&1; then $cmd -w $1 else $cmd $1 fi } fw_init() { run_iptables "-L -n" } fw_block() { run_iptables "-I sshguard -s $1/$3 -j DROP" $2 } fw_release() { run_iptables "-D sshguard -s $1/$3 -j DROP" $2 } fw_flush() { run_iptables "-F sshguard" 4 run_iptables "-F sshguard" 6 } fw_fin() { : } sshguard-2.3.1/src/fw/sshg-fw.in000644 001751 001751 00000001113 13405335557 017334 0ustar00kevinzkevinz000000 000000 die() { echo "`basename $0`: $2" >&2 exit $1 } fw_init || die 69 "Could not initialize firewall" cleanup() { trap "" EXIT if [ "YES" = "$flushonexit" ]; then fw_flush fi fw_fin exit } trap cleanup EXIT INT while read cmd address addrtype cidr; do case $cmd in block) fw_block $address $addrtype $cidr;; release) fw_release $address $addrtype $cidr;; flush) fw_flush;; flushonexit) flushonexit=YES;; *) die 65 "Invalid command";; esac done sshguard-2.3.1/src/fw/sshg-fw-ipfw.sh000644 001751 001751 00000000746 13405335557 020316 0ustar00kevinzkevinz000000 000000 #!/bin/sh # sshg-fw-ipfw # This file is part of SSHGuard. IPFW_TABLE=22 fw_init() { # Starting in FreeBSD 11, tables must first be created. ipfw table ${IPFW_TABLE} create 2>/dev/null || \ ipfw table ${IPFW_TABLE} list > /dev/null } fw_block() { ipfw -q table ${IPFW_TABLE} add $1/$3 } fw_release() { ipfw -q table ${IPFW_TABLE} delete $1/$3 } fw_flush() { ipfw table ${IPFW_TABLE} flush } fw_fin() { ipfw table ${IPFW_TABLE} destroy 2>/dev/null } sshguard-2.3.1/src/fw/Makefile.in000644 001751 001751 00000056537 13412435607 017512 0ustar00kevinzkevinz000000 000000 # Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : libexec_PROGRAMS = sshg-fw-hosts$(EXEEXT) subdir = src/fw ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/common/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(libexecdir)" PROGRAMS = $(libexec_PROGRAMS) am_sshg_fw_hosts_OBJECTS = hosts.$(OBJEXT) simclist.$(OBJEXT) sshg_fw_hosts_OBJECTS = $(am_sshg_fw_hosts_OBJECTS) sshg_fw_hosts_LDADD = $(LDADD) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } SCRIPTS = $(libexec_SCRIPTS) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/common depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/hosts.Po ./$(DEPDIR)/simclist.Po am__mv = mv -f AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(sshg_fw_hosts_SOURCES) DIST_SOURCES = $(sshg_fw_hosts_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ RST2MAN_PROG = @RST2MAN_PROG@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = -I$(top_srcdir)/src/common -DSIMCLIST_NO_DUMPRESTORE EXTRA_DIST = sshg-fw.in sshg-fw-firewalld.sh sshg-fw-ipfilter.sh sshg-fw-ipfw.sh sshg-fw-ipset.sh sshg-fw-iptables.sh sshg-fw-nft-sets.sh sshg-fw-null.sh sshg-fw-pf.sh libexec_SCRIPTS = sshg-fw-firewalld \ sshg-fw-ipfilter \ sshg-fw-ipfw \ sshg-fw-ipset \ sshg-fw-iptables \ sshg-fw-nft-sets \ sshg-fw-null \ sshg-fw-pf CLEANFILES = $(libexec_SCRIPTS) sshg_fw_hosts_SOURCES = fw.h hosts.c ../common/simclist.c SUFFIXES = .sh all: all-am .SUFFIXES: .SUFFIXES: .sh .c .o .obj $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/fw/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign src/fw/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) @list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(libexecdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libexecdir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(libexecdir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(libexecdir)$$dir" || exit $$?; \ } \ ; done uninstall-libexecPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(libexecdir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(libexecdir)" && rm -f $$files clean-libexecPROGRAMS: -test -z "$(libexec_PROGRAMS)" || rm -f $(libexec_PROGRAMS) sshg-fw-hosts$(EXEEXT): $(sshg_fw_hosts_OBJECTS) $(sshg_fw_hosts_DEPENDENCIES) $(EXTRA_sshg_fw_hosts_DEPENDENCIES) @rm -f sshg-fw-hosts$(EXEEXT) $(AM_V_CCLD)$(LINK) $(sshg_fw_hosts_OBJECTS) $(sshg_fw_hosts_LDADD) $(LIBS) install-libexecSCRIPTS: $(libexec_SCRIPTS) @$(NORMAL_INSTALL) @list='$(libexec_SCRIPTS)'; test -n "$(libexecdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(libexecdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libexecdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n' \ -e 'h;s|.*|.|' \ -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) { files[d] = files[d] " " $$1; \ if (++n[d] == $(am__install_max)) { \ print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ else { print "f", d "/" $$4, $$1 } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(libexecdir)$$dir'"; \ $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(libexecdir)$$dir" || exit $$?; \ } \ ; done uninstall-libexecSCRIPTS: @$(NORMAL_UNINSTALL) @list='$(libexec_SCRIPTS)'; test -n "$(libexecdir)" || exit 0; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 's,.*/,,;$(transform)'`; \ dir='$(DESTDIR)$(libexecdir)'; $(am__uninstall_files_from_dir) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hosts.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/simclist.Po@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` simclist.o: ../common/simclist.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT simclist.o -MD -MP -MF $(DEPDIR)/simclist.Tpo -c -o simclist.o `test -f '../common/simclist.c' || echo '$(srcdir)/'`../common/simclist.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/simclist.Tpo $(DEPDIR)/simclist.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../common/simclist.c' object='simclist.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o simclist.o `test -f '../common/simclist.c' || echo '$(srcdir)/'`../common/simclist.c simclist.obj: ../common/simclist.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT simclist.obj -MD -MP -MF $(DEPDIR)/simclist.Tpo -c -o simclist.obj `if test -f '../common/simclist.c'; then $(CYGPATH_W) '../common/simclist.c'; else $(CYGPATH_W) '$(srcdir)/../common/simclist.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/simclist.Tpo $(DEPDIR)/simclist.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../common/simclist.c' object='simclist.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o simclist.obj `if test -f '../common/simclist.c'; then $(CYGPATH_W) '../common/simclist.c'; else $(CYGPATH_W) '$(srcdir)/../common/simclist.c'; fi` ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) $(SCRIPTS) installdirs: for dir in "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(libexecdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libexecPROGRAMS mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/hosts.Po -rm -f ./$(DEPDIR)/simclist.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-libexecPROGRAMS install-libexecSCRIPTS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f ./$(DEPDIR)/hosts.Po -rm -f ./$(DEPDIR)/simclist.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-libexecPROGRAMS uninstall-libexecSCRIPTS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ clean-generic clean-libexecPROGRAMS cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am \ install-libexecPROGRAMS install-libexecSCRIPTS install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am uninstall-libexecPROGRAMS \ uninstall-libexecSCRIPTS .PRECIOUS: Makefile sshg-fw-firewalld: sshg-fw.in sshg-fw-firewalld.sh sshg-fw-ipfilter: sshg-fw.in sshg-fw-ipfilter.sh sshg-fw-ipfw: sshg-fw.in sshg-fw-ipfw.sh sshg-fw-ipset: sshg-fw.in sshg-fw-ipset.sh sshg-fw-iptables: sshg-fw.in sshg-fw-iptables.sh sshg-fw-nft-sets: sshg-fw.in sshg-fw-nft-sets.sh sshg-fw-null: sshg-fw.in sshg-fw-null.sh Sshg-fw-pf: sshg-fw.in sshg-fw-pf.sh .sh: cat $< $(srcdir)/sshg-fw.in > $@ # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: sshguard-2.3.1/src/fw/sshg-fw-firewalld.sh000644 001751 001751 00000001731 13405335557 021315 0ustar00kevinzkevinz000000 000000 #!/bin/sh # sshg-fw-firewalld # This file is part of SSHGuard. FIREW_CMD="firewall-cmd --quiet" IPSET_CMD="ipset -quiet" fw_init() { ${FIREW_CMD} --query-rich-rule="rule family=ipv6 source ipset=sshguard6 drop" || { ${FIREW_CMD} --permanent --new-ipset="sshguard6" --type="hash:net" --option="family=inet6" ${FIREW_CMD} --permanent --add-rich-rule="rule family=ipv6 source ipset=sshguard6 drop" } ${FIREW_CMD} --query-rich-rule="rule family=ipv4 source ipset=sshguard4 drop" || { ${FIREW_CMD} --permanent --new-ipset="sshguard4" --type="hash:net" --option="family=inet" ${FIREW_CMD} --permanent --add-rich-rule="rule family=ipv4 source ipset=sshguard4 drop" } ${FIREW_CMD} --reload } fw_block() { ${FIREW_CMD} --ipset="sshguard$2" --add-entry="$1/$3" } fw_release() { ${FIREW_CMD} --ipset="sshguard$2" --remove-entry="$1/$3" } fw_flush() { ${IPSET_CMD} flush sshguard6 ${IPSET_CMD} flush sshguard4 } fw_fin() { : } sshguard-2.3.1/src/fw/sshg-fw-ipset.sh000644 001751 001751 00000000651 13405335557 020470 0ustar00kevinzkevinz000000 000000 #!/bin/sh # sshg-fw-ipset # This file is part of SSHGuard. fw_init() { ipset -quiet create -exist sshguard4 hash:net family inet ipset -quiet create -exist sshguard6 hash:net family inet6 } fw_block() { ipset -quiet add -exist sshguard$2 $1/$3 } fw_release() { ipset -quiet del -exist sshguard$2 $1/$3 } fw_flush() { ipset -quiet flush sshguard4 ipset -quiet flush sshguard6 } fw_fin() { : } sshguard-2.3.1/src/fw/sshg-fw-pf.sh000644 001751 001751 00000000456 13405335557 017754 0ustar00kevinzkevinz000000 000000 #!/bin/sh # sshg-fw-pf # This file is part of SSHGuard. fw_init() { pfctl -q -t sshguard -T show > /dev/null } fw_block() { pfctl -q -k $1 -t sshguard -T add $1/$3 } fw_release() { pfctl -q -t sshguard -T del $1/$3 } fw_flush() { pfctl -q -t sshguard -T flush } fw_fin() { : } sshguard-2.3.1/src/fw/Makefile.am000644 001751 001751 00000002101 13405335557 017460 0ustar00kevinzkevinz000000 000000 AM_CFLAGS=-I$(top_srcdir)/src/common -DSIMCLIST_NO_DUMPRESTORE EXTRA_DIST = sshg-fw.in sshg-fw-firewalld.sh sshg-fw-ipfilter.sh sshg-fw-ipfw.sh sshg-fw-ipset.sh sshg-fw-iptables.sh sshg-fw-nft-sets.sh sshg-fw-null.sh sshg-fw-pf.sh libexec_PROGRAMS = sshg-fw-hosts libexec_SCRIPTS = sshg-fw-firewalld \ sshg-fw-ipfilter \ sshg-fw-ipfw \ sshg-fw-ipset \ sshg-fw-iptables \ sshg-fw-nft-sets \ sshg-fw-null \ sshg-fw-pf sshg-fw-firewalld: sshg-fw.in sshg-fw-firewalld.sh sshg-fw-ipfilter: sshg-fw.in sshg-fw-ipfilter.sh sshg-fw-ipfw: sshg-fw.in sshg-fw-ipfw.sh sshg-fw-ipset: sshg-fw.in sshg-fw-ipset.sh sshg-fw-iptables: sshg-fw.in sshg-fw-iptables.sh sshg-fw-nft-sets: sshg-fw.in sshg-fw-nft-sets.sh sshg-fw-null: sshg-fw.in sshg-fw-null.sh Sshg-fw-pf: sshg-fw.in sshg-fw-pf.sh CLEANFILES=$(libexec_SCRIPTS) sshg_fw_hosts_SOURCES = fw.h hosts.c ../common/simclist.c SUFFIXES=.sh .sh: cat $< $(srcdir)/sshg-fw.in > $@ sshguard-2.3.1/src/fw/sshg-fw-ipfilter.sh000644 001751 001751 00000001112 13405335557 021153 0ustar00kevinzkevinz000000 000000 #!/bin/sh # sshg-fw-ipfilter # This file is part of SSHGuard. IPFILTER_CMD=ipf IPFILTER_CONF=/etc/ipfilter.conf fw_init() { : } fw_block() { FAM="" if [ -n "$2" ]; then FAM="-$2" fi echo "block in quick proto tcp from $1/$3 to any" | \ ${IPFILTER_CMD} ${FAM} -A -f - } fw_release() { FAM="" if [ -n "$2" ]; then FAM="-$2" fi echo "block in quick proto tcp from $1/$3 to any" | \ ${IPFILTER_CMD} ${FAM} -A -r -f - } fw_flush() { ${IPFILTER_CMD} -Fa && ${IPFILTER_CMD} -f ${IPFILTER_CONF} } fw_fin() { : } sshguard-2.3.1/src/blocker/attack.c000644 001751 001751 00000002111 13405335557 020045 0ustar00kevinzkevinz000000 000000 #include #include #include #include "attack.h" int attackt_whenlast_comparator(const void *a, const void *b) { const attacker_t *aa = (const attacker_t *)a; const attacker_t *bb = (const attacker_t *)b; return ((aa->whenlast > bb->whenlast) - (aa->whenlast < bb->whenlast)); } void attackerinit(attacker_t *restrict ipe, const attack_t *restrict attack) { assert(ipe != NULL && attack != NULL); strcpy(ipe->attack.address.value, attack->address.value); ipe->attack.address.kind = attack->address.kind; ipe->attack.service = attack->service; ipe->whenfirst = ipe->whenlast = time(NULL); ipe->numhits = 1; ipe->cumulated_danger = attack->dangerousness; } int attack_addr_seeker(const void *el, const void *key) { const sshg_address_t *adr = (const sshg_address_t *)key; const attacker_t *atk = (const attacker_t *)el; assert(atk != NULL && adr != NULL); if (atk->attack.address.kind != adr->kind) return 0; return (strcmp(atk->attack.address.value, adr->value) == 0); } sshguard-2.3.1/src/blocker/sshguard_whitelist.c000644 001751 001751 00000033635 13405335557 022531 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #include #include #include #include #include #include #include #include #include #include #include "address.h" #include "simclist.h" #include "sshguard_log.h" #include "sshguard_whitelist.h" #define WHITELIST_SRCLINE_LEN 300 /* number of bits in the address types */ #define IPV4_BITS 32 #define IPV6_BITS 128 regex_t wl_ip4reg, wl_ip6reg, wl_hostreg; list_t whitelist; /* an address with mask */ typedef struct { int addrkind; union { struct { in_addr_t address; in_addr_t mask; } ip4; /* an IPv4 address w/ mask */ struct { struct in6_addr address; struct in6_addr mask; } ip6; /* an IPv6 address w/ mask */ } address; } addrblock_t; /* tell if IPv4 addr1 and addr2 are equivalent modulo mask */ static int match_ip4(in_addr_t addr1, in_addr_t addr2, in_addr_t mask) { return ((addr1 & mask) == (addr2 & mask)) ? 1 : 0; } /* tell if IPv6 addr1 and addr2 are equivalent modulo mask */ static int match_ip6(const struct in6_addr *restrict addr1, const struct in6_addr *restrict addr2, const struct in6_addr *restrict mask) { for (unsigned int i = 0; i < sizeof(addr1->s6_addr) && mask->s6_addr[i] != 0; i++) { if ((addr1->s6_addr[i] & mask->s6_addr[i]) != (addr2->s6_addr[i] & mask->s6_addr[i])) return 0; } return 1; } static size_t whitelist_meter() { return sizeof(addrblock_t); } static int whitelist_compare(const void *a, const void *b) { int ret; const addrblock_t *A = (const addrblock_t *)a; const addrblock_t *B = (const addrblock_t *)b; if ( A->addrkind != B->addrkind ) return (A->addrkind > B->addrkind ? 1 : -1); switch (A->addrkind) { case ADDRKIND_IPv4: if (A->address.ip4.address != B->address.ip4.address) return (A->address.ip4.address > B->address.ip4.address ? 1 : -1); if (A->address.ip4.mask != B->address.ip4.mask) return (A->address.ip4.mask > B->address.ip4.mask ? 1 : -1); break; case ADDRKIND_IPv6: ret = memcmp(& A->address.ip6.address, & B->address.ip6.address, sizeof(B->address.ip6.address)); if (ret != 0) return ret; ret = memcmp(& A->address.ip6.mask, & B->address.ip6.mask, sizeof(B->address.ip6.mask)); if (ret != 0) return ret; break; } return 0; } void whitelist_conf_fin() { regfree(&wl_ip4reg); regfree(&wl_ip6reg); regfree(&wl_hostreg); } void whitelist_init() { list_init(&whitelist); list_attributes_copy(&whitelist, whitelist_meter, 1); list_attributes_comparator(&whitelist, whitelist_compare); if (regcomp(&wl_ip4reg, "^" REGEXLIB_IPV4 "$", REG_EXTENDED) != 0) { abort(); } if (regcomp(&wl_ip6reg, "^" REGEXLIB_IPV6 "$", REG_EXTENDED) != 0) { abort(); } if (regcomp(&wl_hostreg, "^" REGEXLIB_HOSTNAME "$", REG_EXTENDED) != 0) { abort(); } } void whitelist_fin() { list_destroy(&whitelist); } int whitelist_file(const char *restrict filename) { FILE *src; char line[WHITELIST_SRCLINE_LEN]; int lineno = 0; size_t len; if (filename == NULL) return -1; src = fopen(filename, "r"); if (src == NULL) { sshguard_log(LOG_ERR, "whitelist: unable to open input file %s: %s", filename, strerror(errno)); return -1; } while (fgets(line, WHITELIST_SRCLINE_LEN, src) != NULL) { lineno++; /* handle comment lines */ if (line[0] == '#' || line[0] == '\n') continue; /* strip trailing '\n' */ len = strlen(line); if (len == 0) continue; if (line[len-1] == '\n') line[len-1] = '\0'; /* handling line */ if (whitelist_add(line) != 0) { sshguard_log(LOG_ERR, "whitelist: Unable to handle line %d from whitelist file \"%s\".", lineno, filename); } } fclose(src); return 0; } int whitelist_add(const char *str) { /* try address/mask first */ if (regexec(&wl_ip4reg, str, 0, NULL, 0) == 0) { /* plain IPv4 address */ sshguard_log(LOG_DEBUG, "whitelist: add '%s' as plain IPv4.", str); return whitelist_add_ipv4(str); } else if (regexec(&wl_ip6reg, str, 0, NULL, 0) == 0) { /* plain IPv6 address */ sshguard_log(LOG_DEBUG, "whitelist: add '%s' as plain IPv6.", str); return whitelist_add_ipv6(str); } else if (regexec(&wl_hostreg, str, 0, NULL, 0) == 0) { /* hostname to be resolved */ sshguard_log(LOG_DEBUG, "whitelist: add '%s' as host.", str); return whitelist_add_host(str); } else if (strrchr(str, '/') != NULL) { /* CIDR form (net block) */ char *pos; char buf[ADDRLEN+5]; unsigned int masklen; strncpy(buf, str, sizeof(buf)); buf[sizeof(buf)-1] = '\0'; pos = strrchr(buf, '/'); *pos = '\0'; masklen = (unsigned int)strtol(pos+1, (char **)NULL, 10); if (masklen == 0 && pos[1] != '0') { sshguard_log(LOG_WARNING, "whitelist: mask specified as '/%s' makes no sense.", pos+1); return -1; } if (masklen == 0 && errno != EINVAL) { /* could not convert the mask to an integer value */ sshguard_log(LOG_WARNING, "whitelist: could not parse line \"%s\" as plain IP nor IP block nor host name", str); return -1; } if (regexec(&wl_ip4reg, buf, 0, NULL, 0) == 0) { if (masklen > IPV4_BITS) { /* sanity check for netmask */ sshguard_log(LOG_WARNING, "whitelist: mask length '%u' makes no sense for IPv4.", masklen); return -1; } if (masklen == IPV4_BITS) { /* de-genere case with full mask --> plain address */ return whitelist_add_ipv4(buf); } return whitelist_add_block4(buf, masklen); } else if (regexec(&wl_ip6reg, buf, 0, NULL, 0) == 0) { if (masklen > IPV6_BITS) { /* sanity check for netmask */ sshguard_log(LOG_WARNING, "whitelist: mask length '%u' makes no sense for IPv6.", masklen); return -1; } if (masklen == IPV6_BITS) { /* de-genere case with full mask --> plain address */ return whitelist_add_ipv6(buf); } return whitelist_add_block6(buf, masklen); } } else { /* line not recognized */ sshguard_log(LOG_WARNING, "whitelist: could not parse line \"%s\" as plain IP nor IP block nor host name.", str); return -1; } return -1; } int whitelist_add_block4(const char *restrict address, int masklen) { addrblock_t ab; /* parse block line */ ab.addrkind = ADDRKIND_IPv4; if (inet_pton(AF_INET, address, & ab.address.ip4.address) != 1) { sshguard_log(LOG_WARNING, "whitelist: could not interpret address '%s': %s.", address, strerror(errno)); return -1; } ab.address.ip4.mask = htonl(0xFFFFFFFF << (IPV4_BITS-masklen)); if (! list_contains(& whitelist, &ab)) { list_append(& whitelist, &ab); sshguard_log(LOG_DEBUG, "whitelist: add IPv4 block: %s with mask %d.", address, masklen); } else { sshguard_log(LOG_DEBUG, "whitelist: skipping IPv4 block: %s/%d -- already present.", address, masklen); } return 0; } int whitelist_add_block6(const char *restrict address, int masklen) { addrblock_t ab; int bytelen, bitlen; uint8_t bitmask; /* parse block line */ ab.addrkind = ADDRKIND_IPv6; if (inet_pton(AF_INET6, address, & ab.address.ip6.address.s6_addr) != 1) { sshguard_log(LOG_WARNING, "whitelist: could not interpret address '%s': %s.", address, strerror(errno)); return -1; } bytelen = masklen / 8; /* compile the "all 1s" part */ memset(ab.address.ip6.mask.s6_addr, 0xFF, bytelen); /* compile the "crossing byte" */ if (bytelen == sizeof(ab.address.ip6.mask.s6_addr)) return 0; /* compile the remainder "all 0s" part */ bitlen = masklen % 8; bitmask = 0xFF << (8 - bitlen); ab.address.ip6.mask.s6_addr[bytelen] = bitmask; memset(& ab.address.ip6.mask.s6_addr[bytelen+1], 0x00, sizeof(ab.address.ip6.mask.s6_addr) - bytelen); if (! list_contains(& whitelist, &ab)) { list_append(& whitelist, &ab); sshguard_log(LOG_DEBUG, "whitelist: add IPv6 block: %s with mask %d.", address, masklen); } else { sshguard_log(LOG_DEBUG, "whitelist: skipping IPv6 block: %s/%d -- already present.", address, masklen); } return 0; } int whitelist_add_ipv4(const char *restrict ip) { addrblock_t ab; ab.addrkind = ADDRKIND_IPv4; inet_pton(AF_INET, ip, & ab.address.ip4.address); ab.address.ip4.mask = 0xFFFFFFFF; if (! list_contains(& whitelist, &ab)) { list_append(&whitelist, & ab); sshguard_log(LOG_DEBUG, "whitelist: add plain IPv4 %s.", ip); } else { sshguard_log(LOG_DEBUG, "whitelist: skipping plain IPv4 %s -- already present.", ip); } return 0; } int whitelist_add_ipv6(const char *restrict ip) { addrblock_t ab; ab.addrkind = ADDRKIND_IPv6; if (inet_pton(AF_INET6, ip, &ab.address.ip6.address.s6_addr) != 1) { sshguard_log(LOG_ERR, "whitelist: add ipv6: Could not add %s.", ip); return -1; } memset(ab.address.ip6.mask.s6_addr, 0xFF, sizeof(ab.address.ip6.mask.s6_addr)); if (! list_contains(& whitelist, &ab)) { list_append(&whitelist, & ab); sshguard_log(LOG_DEBUG, "whitelist: add plain IPv6 %s.", ip); } else { sshguard_log(LOG_DEBUG, "whitelist: skipping plain IPv6 %s -- already present.", ip); } return 0; } int whitelist_add_host(const char *restrict host) { struct addrinfo *hostaddrs; struct addrinfo *addriter; int ret, numaddresses; ret = getaddrinfo(host, NULL, NULL, & hostaddrs); if (ret != 0) { sshguard_log(LOG_ERR, "Could not resolve hostname '%s': %s.", host, gai_strerror(ret)); return -1; } /* iterate on all results, whitelist each based on its type */ for (numaddresses = 0, addriter = hostaddrs; addriter != NULL; addriter = addriter->ai_next, ++numaddresses) { /* convert result to printable format */ char addrstring[ADDRLEN]; switch (addriter->ai_family) { case AF_INET: /* IPv4 */ if (inet_ntop(addriter->ai_family, & ((struct sockaddr_in *)addriter->ai_addr)->sin_addr.s_addr, addrstring, ADDRLEN) == NULL) continue; whitelist_add_ipv4(addrstring); break; case AF_INET6: /* IPv6 */ if (inet_ntop(addriter->ai_family, & ((struct sockaddr_in6 *)addriter->ai_addr)->sin6_addr, addrstring, ADDRLEN) == NULL) continue; whitelist_add_ipv6(addrstring); break; default: --numaddresses; } } /* free all resolve stuff */ freeaddrinfo(hostaddrs); sshguard_log(LOG_DEBUG, "whitelist: add hostname '%s' with %d addresses.", host, numaddresses); return 0; } int whitelist_match(const char *restrict addr, int addrkind) { in_addr_t addrent; struct in6_addr addrent6; addrblock_t *entry; switch (addrkind) { case ADDRKIND_IPv4: if (inet_pton(AF_INET, addr, &addrent) != 1) { sshguard_log(LOG_WARNING, "whitelist: could not interpret ip address '%s'.", addr); return 0; } /* compare with every IPv4 entry in the list */ list_iterator_start(&whitelist); while (list_iterator_hasnext(&whitelist)) { entry = (addrblock_t *)list_iterator_next(&whitelist); if (entry->addrkind != ADDRKIND_IPv4) continue; if (match_ip4(addrent, entry->address.ip4.address, entry->address.ip4.mask)) { list_iterator_stop(&whitelist); return 1; } } list_iterator_stop(&whitelist); break; case ADDRKIND_IPv6: if (inet_pton(AF_INET6, addr, &addrent6.s6_addr) != 1) { sshguard_log(LOG_WARNING, "whitelist: could not interpret ip address '%s'.", addr); return 0; } /* compare with every IPv6 entry in the list */ list_iterator_start(&whitelist); while (list_iterator_hasnext(&whitelist)) { entry = (addrblock_t *)list_iterator_next(&whitelist); if (entry->addrkind != ADDRKIND_IPv6) continue; if (match_ip6(&addrent6, &entry->address.ip6.address, &entry->address.ip6.mask)) { list_iterator_stop(&whitelist); return 1; } } list_iterator_stop(&whitelist); break; default: /* not recognized */ /* make errors apparent */ assert(0); } return 0; } sshguard-2.3.1/src/blocker/sshguard_blacklist.c000644 001751 001751 00000011633 13405335557 022457 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2009,2011 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #include #include #include #include #include #include "attack.h" #include "simclist.h" #include "sshguard_blacklist.h" #include "sshguard_log.h" #define BL_MAXBUF 1024 #define stringify(x) xstr(x) #define xstr(x) #x static FILE *blacklist_file; static list_t *blacklist; static size_t attacker_el_meter(const void *el) { if (el) {} return sizeof(attacker_t); } /* INTERFACE FUNCTIONS */ static void blacklist_close() { assert(blacklist_file != NULL && blacklist != NULL); fclose(blacklist_file); blacklist_file = NULL; list_destroy(blacklist); free(blacklist); blacklist = NULL; } list_t *blacklist_load(const char *filename) { char blacklist_line[BL_MAXBUF]; unsigned int linecnt; assert(blacklist_file == NULL && blacklist == NULL); blacklist_file = fopen(filename, "a+"); if (blacklist_file == NULL) { return NULL; } blacklist = (list_t *)malloc(sizeof(list_t)); list_init(blacklist); list_attributes_copy(blacklist, attacker_el_meter, 1); rewind(blacklist_file); /* loading content of the file in the blacklist */ for (linecnt = 1; fgets(blacklist_line, BL_MAXBUF, blacklist_file) != NULL; ++linecnt) { attacker_t newattacker; /* discard empty lines and lines starting with a white-space or # */ if (isspace(blacklist_line[0]) || blacklist_line[0] == '#') { while (blacklist_line[strlen(blacklist_line)-1] != '\n') { /* consume until end of line */ if (fgets(blacklist_line, BL_MAXBUF, blacklist_file) == NULL) return blacklist; } continue; } long long blacklist_time; int service_no; if (sscanf(blacklist_line, "%lld|%d|%d|%" stringify(ADDRLEN) "s", &blacklist_time, &service_no, &newattacker.attack.address.kind, newattacker.attack.address.value) != 4) { sshguard_log(LOG_WARNING, "blacklist: ignoring malformed line %d", linecnt); continue; } newattacker.whenlast = (time_t)blacklist_time; newattacker.attack.service = (enum service)service_no; if (newattacker.attack.address.kind != ADDRKIND_IPv4 && newattacker.attack.address.kind != ADDRKIND_IPv6) { /* unknown address type */ sshguard_log(LOG_WARNING, "blacklist: unknown address type on line %d", linecnt); continue; } /* initialization of other default information */ newattacker.attack.dangerousness = 1; newattacker.whenfirst = 0; newattacker.pardontime = 0; newattacker.numhits = 1; newattacker.cumulated_danger = 1; /* add new element to the blacklist */ list_append(blacklist, & newattacker); } atexit(blacklist_close); return blacklist; } void blacklist_add(const attacker_t *restrict newel) { assert(blacklist_file != NULL && blacklist != NULL); if (blacklist_contains(&newel->attack.address)) { sshguard_log(LOG_WARNING, "blacklist: %s is already blacklisted", newel->attack.address.value); return; } int retval = fprintf(blacklist_file, "%lld|%d|%d|%s\n", (long long)newel->whenlast, newel->attack.service, newel->attack.address.kind, newel->attack.address.value); if (retval > 0) { sshguard_log(LOG_DEBUG, "blacklist: added %s", newel->attack.address.value); fflush(blacklist_file); list_append(blacklist, newel); } else { sshguard_log(LOG_ERR, "blacklist: could not add %s: %s", newel->attack.address.value, strerror(errno)); } } int blacklist_contains(const sshg_address_t *restrict addr) { if (blacklist == NULL) { // Blacklist hasn't been loaded yet. return -1; } list_attributes_seeker(blacklist, attack_addr_seeker); attacker_t *restrict el = list_seek(blacklist, addr); return (el != NULL); } sshguard-2.3.1/src/blocker/sshguard_options.h000644 001751 001751 00000003752 13405335557 022212 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2009 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #pragma once /* dynamic configuration options */ typedef struct { time_t pardon_threshold; /* minimal time before releasing an address */ time_t stale_threshold; /* time after which suspicious entries remained idle are forgiven */ unsigned int abuse_threshold; /* number of attacks before raising an abuse */ unsigned int blacklist_threshold; /* number of abuses after which blacklisting the attacker */ char *my_pidfile; /* NULL if disabled, or string with filename where user wants my PID tracked */ char *blacklist_filename; /* NULL to disable blacklist, or path of the blacklist file */ unsigned int subnet_ipv6; /* size of subnets to block, CIDR notation */ unsigned int subnet_ipv4; /* size of subnets to block, CIDR notation */ } sshg_opts; extern sshg_opts opts; /** * Parses user options from the command line, environment, config file or * whatever. * * After execution, this function leaves the "opts" global variable compiled * with the user's preferences. * * @return 0 iff success; -1 if failure */ int get_options_cmdline(int argc, char *argv[]); sshguard-2.3.1/src/blocker/blocklist.c000644 001751 001751 00000007532 13405335557 020600 0ustar00kevinzkevinz000000 000000 #include #include #include #include #include #include "blocklist.h" #include "simclist.h" #include "sshguard_blacklist.h" #include "sshguard_log.h" #include "sshguard_options.h" /* list of addresses currently blocked (offenders) */ static list_t hell; /* mutex against races between insertions and pruning of lists */ static pthread_mutex_t list_mutex; unsigned int fw_block_subnet_size(int inet_family) { if (inet_family == 6) { return opts.subnet_ipv6; } else if (inet_family == 4) { return opts.subnet_ipv4; } assert(0); } static void fw_block(const attack_t *attack) { unsigned int subnet_size = fw_block_subnet_size(attack->address.kind); printf("block %s %d %u\n", attack->address.value, attack->address.kind, subnet_size); fflush(stdout); } static void fw_release(const attack_t *attack) { unsigned int subnet_size = fw_block_subnet_size(attack->address.kind); printf("release %s %d %u\n", attack->address.value, attack->address.kind, subnet_size); fflush(stdout); } static void unblock_expired() { attacker_t *tmpel; int ret; time_t now = time(NULL); pthread_testcancel(); pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &ret); pthread_mutex_lock(&list_mutex); for (unsigned int pos = 0; pos < list_size(&hell); pos++) { tmpel = list_get_at(&hell, pos); /* skip blacklisted hosts (pardontime = infinite/0) */ if (tmpel->pardontime == 0) continue; /* process hosts with finite pardon time */ if (now - tmpel->whenlast > tmpel->pardontime) { /* pardon time passed, release block */ sshguard_log(LOG_DEBUG, "%s: unblocking after %lld secs", tmpel->attack.address.value, (long long)(now - tmpel->whenlast)); fw_release(&tmpel->attack); list_delete_at(&hell, pos); free(tmpel); /* element removed, next element is at current index (don't step * pos) */ pos--; } } pthread_mutex_unlock(&list_mutex); pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, &ret); pthread_testcancel(); } static void *unblock_loop() { while (1) { /* wait some time, at most opts.pardon_threshold/3 + 1 sec */ sleep(1 + ((unsigned int)rand() % (1 + opts.pardon_threshold / 2))); unblock_expired(); } pthread_exit(NULL); return NULL; } void blocklist_init() { pthread_t tid; list_init(&hell); list_attributes_seeker(&hell, attack_addr_seeker); /* start thread for purging stale blocked addresses */ pthread_mutex_init(&list_mutex, NULL); if (pthread_create(&tid, NULL, unblock_loop, NULL) != 0) { perror("pthread_create()"); exit(2); } } bool blocklist_contains(attack_t attack) { attacker_t *tmpent = NULL; pthread_mutex_lock(&list_mutex); tmpent = list_seek(&hell, &attack.address); pthread_mutex_unlock(&list_mutex); return tmpent != NULL; } void blocklist_add(attacker_t *tmpent) { fw_block(&tmpent->attack); pthread_mutex_lock(&list_mutex); list_append(&hell, tmpent); pthread_mutex_unlock(&list_mutex); } static void block_list(list_t *list) { list_iterator_start(list); while (list_iterator_hasnext(list)) { attacker_t *next = list_iterator_next(list); fw_block(&next->attack); } list_iterator_stop(list); } void blacklist_load_and_block() { list_t *blacklist = blacklist_load(opts.blacklist_filename); if (blacklist == NULL) { sshguard_log(LOG_ERR, "blacklist: could not open %s: %m", opts.blacklist_filename); exit(66); } sshguard_log(LOG_INFO, "blacklist: blocking %u addresses", (unsigned int)list_size(blacklist)); block_list(blacklist); } sshguard-2.3.1/src/blocker/sshguard_log.h000644 001751 001751 00000001634 13405335557 021275 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #pragma once #include #include #define sshguard_log syslog sshguard-2.3.1/src/blocker/fnv.h000644 001751 001751 00000007357 13405335557 017415 0ustar00kevinzkevinz000000 000000 /* * fnv - Fowler/Noll/Vo- hash code * * @(#) $Revision: 5.4 $ * @(#) $Id: fnv.h,v 5.4 2009/07/30 22:49:13 chongo Exp $ * @(#) $Source: /usr/local/src/cmd/fnv/RCS/fnv.h,v $ * *** * * Fowler/Noll/Vo- hash * * The basis of this hash algorithm was taken from an idea sent * as reviewer comments to the IEEE POSIX P1003.2 committee by: * * Phong Vo (http://www.research.att.com/info/kpv/) * Glenn Fowler (http://www.research.att.com/~gsf/) * * In a subsequent ballot round: * * Landon Curt Noll (http://www.isthe.com/chongo/) * * improved on their algorithm. Some people tried this hash * and found that it worked rather well. In an EMail message * to Landon, they named it the ``Fowler/Noll/Vo'' or FNV hash. * * FNV hashes are designed to be fast while maintaining a low * collision rate. The FNV speed allows one to quickly hash lots * of data while maintaining a reasonable collision rate. See: * * http://www.isthe.com/chongo/tech/comp/fnv/index.html * * for more details as well as other forms of the FNV hash. * *** * * NOTE: The FNV-0 historic hash is not recommended. One should use * the FNV-1 hash instead. * * To use the 32 bit FNV-0 historic hash, pass FNV0_32_INIT as the * Fnv32_t hashval argument to fnv_32_buf() or fnv_32_str(). * * To use the 64 bit FNV-0 historic hash, pass FNV0_64_INIT as the * Fnv64_t hashval argument to fnv_64_buf() or fnv_64_str(). * * To use the recommended 32 bit FNV-1 hash, pass FNV1_32_INIT as the * Fnv32_t hashval argument to fnv_32_buf() or fnv_32_str(). * * To use the recommended 64 bit FNV-1 hash, pass FNV1_64_INIT as the * Fnv64_t hashval argument to fnv_64_buf() or fnv_64_str(). * * To use the recommended 32 bit FNV-1a hash, pass FNV1_32A_INIT as the * Fnv32_t hashval argument to fnv_32a_buf() or fnv_32a_str(). * * To use the recommended 64 bit FNV-1a hash, pass FNV1A_64_INIT as the * Fnv64_t hashval argument to fnv_64a_buf() or fnv_64a_str(). * *** * * Please do not copyright this code. This code is in the public domain. * * LANDON CURT NOLL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO * EVENT SHALL LANDON CURT NOLL BE LIABLE FOR ANY SPECIAL, INDIRECT OR * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR * PERFORMANCE OF THIS SOFTWARE. * * By: * chongo /\oo/\ * http://www.isthe.com/chongo/ * * Share and Enjoy! :-) */ #if !defined(__FNV_H__) #define __FNV_H__ #include #include #define FNV_VERSION "5.0.2" /* @(#) FNV Version */ /* * 32 bit FNV-0 hash type */ typedef uint32_t Fnv32_t; /* * 32 bit FNV-0 zero initial basis * * This historic hash is not recommended. One should use * the FNV-1 hash and initial basis instead. */ #define FNV0_32_INIT ((Fnv32_t)0) /* * 32 bit FNV-1 and FNV-1a non-zero initial basis * * The FNV-1 initial basis is the FNV-0 hash of the following 32 octets: * * chongo /\../\ * * NOTE: The \'s above are not back-slashing escape characters. * They are literal ASCII backslash 0x5c characters. * * NOTE: The FNV-1a initial basis is the same value as FNV-1 by definition. */ #define FNV1_32_INIT ((Fnv32_t)0x811c9dc5) #define FNV1_32A_INIT FNV1_32_INIT #if 0 /* hash_32.c */ Fnv32_t fnv_32_buf(void *buf, size_t len, Fnv32_t hashval); Fnv32_t fnv_32_str(const char *buf, Fnv32_t hashval); #endif /* hash_32a.c */ #if 0 Fnv32_t fnv_32a_buf(void *buf, size_t len, Fnv32_t hashval); #endif Fnv32_t fnv_32a_str(const char *str, Fnv32_t hashval); #endif /* __FNV_H__ */ sshguard-2.3.1/src/blocker/sshguard_blacklist.h000644 001751 001751 00000003211 13405335557 022455 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2009 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #pragma once /** * Load blacklist from the given file. Return a list with the contents of the * blacklist. Do not destroy or free the returned list. * * @param filename full path of the file containing the black list * @return NULL in case of error, or a list containing blacklisted entries */ list_t *blacklist_load(const char *filename); /** * Add an entry to the blacklist. * * @param filename full path of the file containing the black list * @param newel ip entry to add */ void blacklist_add(const attacker_t *restrict newel); /** * Lookup if an address is present in the blacklist. * * @param addr address to look up (value + type) * * @return <0 if error; 1 if (addr,addrkind) present in blacklist, 0 otherwise */ int blacklist_contains(const sshg_address_t *restrict addr); sshguard-2.3.1/src/blocker/Makefile.in000644 001751 001751 00000052216 13412435607 020505 0ustar00kevinzkevinz000000 000000 # Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : libexec_PROGRAMS = sshg-blocker$(EXEEXT) subdir = src/blocker ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/common/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(libexecdir)" PROGRAMS = $(libexec_PROGRAMS) am_sshg_blocker_OBJECTS = simclist.$(OBJEXT) attack.$(OBJEXT) \ blocker.$(OBJEXT) blocklist.$(OBJEXT) hash_32a.$(OBJEXT) \ sshguard_blacklist.$(OBJEXT) sshguard_options.$(OBJEXT) \ sshguard_whitelist.$(OBJEXT) sshg_blocker_OBJECTS = $(am_sshg_blocker_OBJECTS) sshg_blocker_LDADD = $(LDADD) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/common depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/attack.Po ./$(DEPDIR)/blocker.Po \ ./$(DEPDIR)/blocklist.Po ./$(DEPDIR)/hash_32a.Po \ ./$(DEPDIR)/simclist.Po ./$(DEPDIR)/sshguard_blacklist.Po \ ./$(DEPDIR)/sshguard_options.Po \ ./$(DEPDIR)/sshguard_whitelist.Po am__mv = mv -f AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(sshg_blocker_SOURCES) DIST_SOURCES = $(sshg_blocker_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ RST2MAN_PROG = @RST2MAN_PROG@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = -I$(top_srcdir)/src/common -DSIMCLIST_NO_DUMPRESTORE sshg_blocker_SOURCES = \ ../common/simclist.c \ attack.c \ blocker.c \ blocklist.c \ blocklist.h \ fnv.h \ hash_32a.c \ sshguard_blacklist.c \ sshguard_blacklist.h \ sshguard_log.h \ sshguard_options.c \ sshguard_options.h \ sshguard_whitelist.c \ sshguard_whitelist.h all: all-am .SUFFIXES: .SUFFIXES: .c .o .obj $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/blocker/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign src/blocker/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) @list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(libexecdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libexecdir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(libexecdir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(libexecdir)$$dir" || exit $$?; \ } \ ; done uninstall-libexecPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(libexecdir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(libexecdir)" && rm -f $$files clean-libexecPROGRAMS: -test -z "$(libexec_PROGRAMS)" || rm -f $(libexec_PROGRAMS) sshg-blocker$(EXEEXT): $(sshg_blocker_OBJECTS) $(sshg_blocker_DEPENDENCIES) $(EXTRA_sshg_blocker_DEPENDENCIES) @rm -f sshg-blocker$(EXEEXT) $(AM_V_CCLD)$(LINK) $(sshg_blocker_OBJECTS) $(sshg_blocker_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/attack.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/blocker.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/blocklist.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hash_32a.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/simclist.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sshguard_blacklist.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sshguard_options.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sshguard_whitelist.Po@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` simclist.o: ../common/simclist.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT simclist.o -MD -MP -MF $(DEPDIR)/simclist.Tpo -c -o simclist.o `test -f '../common/simclist.c' || echo '$(srcdir)/'`../common/simclist.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/simclist.Tpo $(DEPDIR)/simclist.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../common/simclist.c' object='simclist.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o simclist.o `test -f '../common/simclist.c' || echo '$(srcdir)/'`../common/simclist.c simclist.obj: ../common/simclist.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT simclist.obj -MD -MP -MF $(DEPDIR)/simclist.Tpo -c -o simclist.obj `if test -f '../common/simclist.c'; then $(CYGPATH_W) '../common/simclist.c'; else $(CYGPATH_W) '$(srcdir)/../common/simclist.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/simclist.Tpo $(DEPDIR)/simclist.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../common/simclist.c' object='simclist.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o simclist.obj `if test -f '../common/simclist.c'; then $(CYGPATH_W) '../common/simclist.c'; else $(CYGPATH_W) '$(srcdir)/../common/simclist.c'; fi` ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) installdirs: for dir in "$(DESTDIR)$(libexecdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libexecPROGRAMS mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/attack.Po -rm -f ./$(DEPDIR)/blocker.Po -rm -f ./$(DEPDIR)/blocklist.Po -rm -f ./$(DEPDIR)/hash_32a.Po -rm -f ./$(DEPDIR)/simclist.Po -rm -f ./$(DEPDIR)/sshguard_blacklist.Po -rm -f ./$(DEPDIR)/sshguard_options.Po -rm -f ./$(DEPDIR)/sshguard_whitelist.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-libexecPROGRAMS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f ./$(DEPDIR)/attack.Po -rm -f ./$(DEPDIR)/blocker.Po -rm -f ./$(DEPDIR)/blocklist.Po -rm -f ./$(DEPDIR)/hash_32a.Po -rm -f ./$(DEPDIR)/simclist.Po -rm -f ./$(DEPDIR)/sshguard_blacklist.Po -rm -f ./$(DEPDIR)/sshguard_options.Po -rm -f ./$(DEPDIR)/sshguard_whitelist.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-libexecPROGRAMS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ clean-generic clean-libexecPROGRAMS cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am \ install-libexecPROGRAMS install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am uninstall-libexecPROGRAMS .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: sshguard-2.3.1/src/blocker/hash_32a.c000644 001751 001751 00000007604 13405335557 020202 0ustar00kevinzkevinz000000 000000 /* * hash_32 - 32 bit Fowler/Noll/Vo FNV-1a hash code * * @(#) $Revision: 5.1 $ * @(#) $Id: hash_32a.c,v 5.1 2009/06/30 09:13:32 chongo Exp $ * @(#) $Source: /usr/local/src/cmd/fnv/RCS/hash_32a.c,v $ * *** * * Fowler/Noll/Vo hash * * The basis of this hash algorithm was taken from an idea sent * as reviewer comments to the IEEE POSIX P1003.2 committee by: * * Phong Vo (http://www.research.att.com/info/kpv/) * Glenn Fowler (http://www.research.att.com/~gsf/) * * In a subsequent ballot round: * * Landon Curt Noll (http://www.isthe.com/chongo/) * * improved on their algorithm. Some people tried this hash * and found that it worked rather well. In an EMail message * to Landon, they named it the ``Fowler/Noll/Vo'' or FNV hash. * * FNV hashes are designed to be fast while maintaining a low * collision rate. The FNV speed allows one to quickly hash lots * of data while maintaining a reasonable collision rate. See: * * http://www.isthe.com/chongo/tech/comp/fnv/index.html * * for more details as well as other forms of the FNV hash. *** * * To use the recommended 32 bit FNV-1a hash, pass FNV1_32A_INIT as the * Fnv32_t hashval argument to fnv_32a_buf() or fnv_32a_str(). * *** * * Please do not copyright this code. This code is in the public domain. * * LANDON CURT NOLL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO * EVENT SHALL LANDON CURT NOLL BE LIABLE FOR ANY SPECIAL, INDIRECT OR * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR * PERFORMANCE OF THIS SOFTWARE. * * By: * chongo /\oo/\ * http://www.isthe.com/chongo/ * * Share and Enjoy! :-) */ #include #include "fnv.h" /* * 32 bit magic FNV-1a prime */ #define FNV_32_PRIME ((Fnv32_t)0x01000193) #if 0 /* * fnv_32a_buf - perform a 32 bit Fowler/Noll/Vo FNV-1a hash on a buffer * * input: * buf - start of buffer to hash * len - length of buffer in octets * hval - previous hash value or 0 if first call * * returns: * 32 bit hash as a static hash type * * NOTE: To use the recommended 32 bit FNV-1a hash, use FNV1_32A_INIT as the * hval arg on the first call to either fnv_32a_buf() or fnv_32a_str(). */ Fnv32_t fnv_32a_buf(void *buf, size_t len, Fnv32_t hval) { unsigned char *bp = (unsigned char *)buf; /* start of buffer */ unsigned char *be = bp + len; /* beyond end of buffer */ /* * FNV-1a hash each octet in the buffer */ while (bp < be) { /* xor the bottom with the current octet */ hval ^= (Fnv32_t)*bp++; /* multiply by the 32 bit FNV magic prime mod 2^32 */ #if defined(NO_FNV_GCC_OPTIMIZATION) hval *= FNV_32_PRIME; #else hval += (hval<<1) + (hval<<4) + (hval<<7) + (hval<<8) + (hval<<24); #endif } /* return our new hash value */ return hval; } #endif /* * fnv_32a_str - perform a 32 bit Fowler/Noll/Vo FNV-1a hash on a string * * input: * str - string to hash * hval - previous hash value or 0 if first call * * returns: * 32 bit hash as a static hash type * * NOTE: To use the recommended 32 bit FNV-1a hash, use FNV1_32A_INIT as the * hval arg on the first call to either fnv_32a_buf() or fnv_32a_str(). */ Fnv32_t fnv_32a_str(const char *str, Fnv32_t hval) { unsigned const char *s = (unsigned char *)str; /* unsigned string */ /* * FNV-1a hash each octet in the buffer */ while (*s) { /* xor the bottom with the current octet */ hval ^= (Fnv32_t)*s++; /* multiply by the 32 bit FNV magic prime mod 2^32 */ #if defined(NO_FNV_GCC_OPTIMIZATION) hval *= FNV_32_PRIME; #else hval += (hval<<1) + (hval<<4) + (hval<<7) + (hval<<8) + (hval<<24); #endif } /* return our new hash value */ return hval; } sshguard-2.3.1/src/blocker/sshguard_whitelist.h000644 001751 001751 00000007366 13405335557 022540 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #pragma once /** * Initialize the whitelisting subsystem. * * Any other whitelist_*() function must be executed * after this. This function cannot be executed twice * unless whitelist_fin() occurred in between. * * @return 0 if success, <0 if failure * * @see whitelist_fin() */ void whitelist_init(void); /** * End a session for configuring the whitelist. */ void whitelist_conf_fin(void); /** * Terminate the whitelisting subsystem. * * No calls to any whitelist_*() function can occur after * this, unless whitelist_init() is called first. */ void whitelist_fin(void); /** * Adds entries to whitelist from file. * * The file is human readable and line-based. Entries look like: * * # comment line (a '#' as very first character) * # a single ip address * 1.2.3.4 * # address blocks in CIDR notation * 127.0.0.0/8 * 10.11.128.0/17 * 192.168.0.0/24 * # hostnames * rome-fw.enterprise.com * hosts.friends.com * * @param filename The filename containing whitelist entries * @return 0 if success, -1 if unable to open filename */ int whitelist_file(const char *restrict filename); /** * Wrapper for _add_ip, _add_block and _add_host. * * @return 0 if success, <0 if failure * * @see whitelist_add_ipv4() * @see whitelist_add_ipv6() * @see whitelist_add_block4() * @see whitelist_add_block6() * @see whitelist_add_host() */ int whitelist_add(const char *restrict str); /** * Add an IPv4 address to the whitelist. * * @param ip ip address, in dotted decimal notation * @return 0 if success, <0 if failure */ int whitelist_add_ipv4(const char *restrict ip); /** * Add an IPv6 address to the whitelist. * * @param ip ip address, in numerical string notation * @return 0 if success, <0 if failure */ int whitelist_add_ipv6(const char *restrict ip); /** * Add an IPv4 address block to the whitelist * * @param address character string representation of ip address * @param masklen length of bits to mask in address block * * @return 0 if success, -1 if invalid address */ int whitelist_add_block4(const char *restrict address, int masklen); /** * Add an IPv6 address block to the whitelist * * @param address character string representation of ip address * @param masklen length of bits to mask in address block * * @return 0 if success, -1 if invalid address */ int whitelist_add_block6(const char *restrict address, int masklen); /** * add an ip address to the whitelist based on a hostname * * @param host the hostname to whitelist * @return 0 if success -1 if host could not be resolved */ int whitelist_add_host(const char *restrict host); /** * search for an address in the whitelist * * @param addr the address to search for * @param addrkind the type of address, one of * ADDRKIND_IPv4 or ADDRKIND_IPv6 * * @return 1 if the address exists in the whitelist, 0 if it doesn't */ int whitelist_match(const char *restrict addr, int addrkind); sshguard-2.3.1/src/blocker/blocker.c000644 001751 001751 00000025064 13405335557 020233 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2009,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #include "config.h" #include #include #include #include #include #include #include #include "blocklist.h" #include "sandbox.h" #include "simclist.h" #include "sshguard_blacklist.h" #include "sshguard_log.h" #include "sshguard_options.h" #include "sshguard_whitelist.h" /** Keep track of the exit signal received. */ static volatile sig_atomic_t exit_sig = 0; /* FUNDAMENTAL DATA STRUCTURES */ /* These lists are all lists of attacker_t structures. * limbo and hell maintain "temporary" entries: in limbo, entries are deleted * when the address is detected to have abused a service (right after it is * blocked); in hell, it is deleted when the address is released. * * The list offenders maintains a permanent history of the abuses of * attackers, their first and last attempt, the number of abuses etc. These * are maintained for entire runtime. When the number of abuses exceeds a * limit, an address might be blacklisted (if blacklisting is enabled with * -b). After blacklisting, the block of an attacker is released, because it * has already been blocked permanently. * * The invariant of "offenders" is: it is sorted in decreasing order of the * "whenlast" field. */ /* list of addresses that failed some times, but not enough to get blocked */ list_t limbo; /* list of offenders (addresses already blocked in the past) */ list_t offenders; /* handler for termination-related signals */ static void sigfin_handler(); /* called at exit(): flush blocked addresses and finalize subsystems */ static void finishup(void); /* handle an attack: addr is the author, addrkind its address kind, service the attacked service code */ static void report_address(attack_t attack); /* cleanup false-alarm attackers from limbo list (ones with too few attacks in too much time) */ static void purge_limbo_stale(void); static void my_pidfile_create() { FILE *p = fopen(opts.my_pidfile, "w"); if (p == NULL) { sshguard_log(LOG_ERR, "Failed to create pid file: %m"); exit(73); } fprintf(p, "%d\n", (int)getpid()); fclose(p); } static void my_pidfile_destroy() { if (unlink(opts.my_pidfile) != 0) { sshguard_log(LOG_ERR, "Failed to remove pid file: %m"); } } static void init_log(int debug) { int flags = LOG_NDELAY | LOG_PID; int dest = LOG_AUTH; if (debug) { flags |= LOG_PERROR; dest = LOG_LOCAL6; } else { setlogmask(LOG_UPTO(LOG_NOTICE)); } // Set local time zone and open log before entering sandbox. tzset(); openlog("sshguard", flags, dest); } int main(int argc, char *argv[]) { int sshg_debugging = (getenv("SSHGUARD_DEBUG") != NULL); init_log(sshg_debugging); srand(time(NULL)); /* pending, blocked, and offender address lists */ list_init(&limbo); list_attributes_seeker(& limbo, attack_addr_seeker); blocklist_init(); list_init(&offenders); list_attributes_seeker(& offenders, attack_addr_seeker); list_attributes_comparator(& offenders, attackt_whenlast_comparator); // Initialize whitelist before parsing arguments. whitelist_init(); if (get_options_cmdline(argc, argv) != 0) { exit(64); } if (opts.my_pidfile != NULL) { my_pidfile_create(); atexit(my_pidfile_destroy); } // Initialize firewall printf("flushonexit\n"); fflush(stdout); if (opts.blacklist_filename != NULL) { blacklist_load_and_block(); } /* termination signals */ signal(SIGTERM, sigfin_handler); signal(SIGHUP, sigfin_handler); signal(SIGINT, sigfin_handler); atexit(finishup); sandbox_init(); /* whitelist localhost */ if (whitelist_add("127.0.0.1") != 0) { fprintf(stderr, "Could not whitelist localhost. Terminating...\n"); exit(1); } whitelist_conf_fin(); sshguard_log(LOG_INFO, "Now monitoring attacks."); char buf[1024]; attack_t parsed_attack; while (fgets(buf, sizeof(buf), stdin) != NULL) { if (sscanf(buf, "%d %46s %d %d\n", (int*)&parsed_attack.service, parsed_attack.address.value, &parsed_attack.address.kind, &parsed_attack.dangerousness) == 4) { report_address(parsed_attack); } else { sshguard_log(LOG_ERR, "Could not parse attack data."); exit(65); } } if (feof(stdin)) { sshguard_log(LOG_DEBUG, "Received EOF from stdin."); } } void log_block(attacker_t *tmpent, attacker_t *offenderent) { char time_msg[128] = "forever"; const time_t time = tmpent->pardontime; unsigned int subnet_size = fw_block_subnet_size(tmpent->attack.address.kind); if (time > 0) { if (snprintf(time_msg, sizeof(time_msg), "for %lld secs", (long long)time) < 0) { abort(); } } sshguard_log(LOG_WARNING, "Blocking \"%s/%u\" %s (%u attacks in %lld " "secs, after %d abuses over %lld secs.)", tmpent->attack.address.value, subnet_size, time_msg, tmpent->numhits, (long long)(tmpent->whenlast - tmpent->whenfirst), offenderent->numhits, (long long)(offenderent->whenlast - offenderent->whenfirst)); } /* * This function is called every time an attack pattern is matched. * It does the following: * 1) update the attacker infos (counter, timestamps etc) * --OR-- create them if first sight. * 2) block the attacker, if attacks > threshold (abuse) * 3) blacklist the address, if the number of abuses is excessive */ static void report_address(attack_t attack) { attacker_t *tmpent = NULL; attacker_t *offenderent; assert(attack.address.value != NULL); assert(memchr(attack.address.value, '\0', sizeof(attack.address.value)) != NULL); /* clean list from stale entries */ purge_limbo_stale(); /* address already blocked? (can happen for 100 reasons) */ if (blocklist_contains(attack)) { sshguard_log(LOG_INFO, "%s has already been blocked.", attack.address.value); return; } if (whitelist_match(attack.address.value, attack.address.kind)) { sshguard_log(LOG_INFO, "%s: not blocking (on whitelist)", attack.address.value); return; } sshguard_log(LOG_NOTICE, "Attack from \"%s\" on service %d with danger %u.", attack.address.value, attack.service, attack.dangerousness); /* search entry in list */ tmpent = list_seek(& limbo, & attack.address); if (tmpent == NULL) { /* entry not already in list, add it */ /* otherwise: insert the new item */ tmpent = malloc(sizeof(attacker_t)); attackerinit(tmpent, & attack); list_append(&limbo, tmpent); } else { /* otherwise, the entry was already existing, update with new data */ tmpent->whenlast = time(NULL); tmpent->numhits++; tmpent->cumulated_danger += attack.dangerousness; } if (tmpent->cumulated_danger < opts.abuse_threshold) { /* do nothing now, just keep an eye on this guy */ return; } /* otherwise, we have to block it */ /* find out if this is a recidivous offender to determine the * duration of blocking */ tmpent->pardontime = opts.pardon_threshold; offenderent = list_seek(& offenders, & attack.address); if (offenderent == NULL) { /* first time we block this guy */ sshguard_log(LOG_DEBUG, "%s: first block (adding as offender.)", tmpent->attack.address.value); offenderent = (attacker_t *)malloc(sizeof(attacker_t)); /* copy everything from tmpent */ memcpy(offenderent, tmpent, sizeof(attacker_t)); /* adjust number of hits */ offenderent->numhits = 1; list_prepend(& offenders, offenderent); assert(! list_empty(& offenders)); } else { /* this is a previous offender, update dangerousness and last-hit timestamp */ offenderent->numhits++; offenderent->cumulated_danger += tmpent->cumulated_danger; offenderent->whenlast = tmpent->whenlast; } /* At this stage, the guy (in tmpent) is offender, and we'll block it anyway. */ /* Let's see if we _also_ need to blacklist it. */ if (opts.blacklist_filename != NULL && offenderent->cumulated_danger >= opts.blacklist_threshold) { /* this host must be blacklisted -- blocked and never unblocked */ tmpent->pardontime = 0; /* insert in the blacklisted db iff enabled */ if (opts.blacklist_filename != NULL) { blacklist_add(offenderent); } } else { /* compute blocking time wrt the "offensiveness" */ for (unsigned int i = 0; i < offenderent->numhits - 1; i++) { tmpent->pardontime *= 2; } } list_sort(& offenders, -1); log_block(tmpent, offenderent); /* append blocked attacker to the blocked list, and remove it from the pending list */ blocklist_add(tmpent); assert(list_locate(& limbo, tmpent) >= 0); list_delete_at(& limbo, list_locate(& limbo, tmpent)); } static void purge_limbo_stale(void) { sshguard_log(LOG_DEBUG, "Purging old attackers."); time_t now = time(NULL); for (unsigned int pos = 0; pos < list_size(&limbo); pos++) { attacker_t *tmpent = list_get_at(&limbo, pos); if (now - tmpent->whenfirst > opts.stale_threshold) { list_delete_at(&limbo, pos); free(tmpent); pos--; } } } static void finishup(void) { sshguard_log(LOG_INFO, "Exiting on %s.", exit_sig == SIGHUP ? "SIGHUP" : "signal"); whitelist_fin(); closelog(); } static void sigfin_handler(int sig) { exit_sig = sig; exit(0); } sshguard-2.3.1/src/blocker/Makefile.am000644 001751 001751 00000000574 13405335557 020501 0ustar00kevinzkevinz000000 000000 AM_CFLAGS=-I$(top_srcdir)/src/common -DSIMCLIST_NO_DUMPRESTORE libexec_PROGRAMS = sshg-blocker sshg_blocker_SOURCES = \ ../common/simclist.c \ attack.c \ blocker.c \ blocklist.c \ blocklist.h \ fnv.h \ hash_32a.c \ sshguard_blacklist.c \ sshguard_blacklist.h \ sshguard_log.h \ sshguard_options.c \ sshguard_options.h \ sshguard_whitelist.c \ sshguard_whitelist.h sshguard-2.3.1/src/blocker/blocklist.h000644 001751 001751 00000000354 13405335557 020600 0ustar00kevinzkevinz000000 000000 #pragma once #include #include "attack.h" unsigned int fw_block_subnet_size(int inet_family); bool blocklist_contains(attack_t); void blocklist_add(attacker_t *); void blocklist_init(); void blacklist_load_and_block(); sshguard-2.3.1/src/blocker/sshguard_options.c000644 001751 001751 00000010666 13405335557 022207 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2009,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #include "config.h" #include #include #include #include #ifdef HAVE_GETOPT_H #include #endif #include "sshguard_options.h" #include "sshguard_whitelist.h" sshg_opts opts; static void usage(void) { fprintf(stderr, "sshg-blocker: invalid command-line\n"); } /** * Initialize options to defaults. */ static void options_init(sshg_opts *opt) { opt->pardon_threshold = 2 * 60; opt->stale_threshold = 30 * 60; opt->abuse_threshold = 30; opt->blacklist_threshold = 0; opt->my_pidfile = NULL; opt->blacklist_filename = NULL; opt->subnet_ipv6 = 128; opt->subnet_ipv4 = 32; } int get_options_cmdline(int argc, char *argv[]) { int optch; options_init(&opts); while ((optch = getopt(argc, argv, "b:p:s:a:w:i:N:n:")) != -1) { switch (optch) { case 'b': opts.blacklist_filename = (char *)malloc(strlen(optarg) + 1); if (sscanf(optarg, "%u:%s", &opts.blacklist_threshold, opts.blacklist_filename) != 2) { usage(); return -1; } break; case 'p': /* pardon threshold interval */ opts.pardon_threshold = strtol(optarg, (char **)NULL, 10); if (opts.pardon_threshold < 1) { fprintf(stderr, "Doesn't make sense to have a pardon time lower than 1 second. Terminating.\n"); usage(); return -1; } break; case 's': /* stale threshold interval */ opts.stale_threshold = strtol(optarg, (char **)NULL, 10); if (opts.stale_threshold < 1) { fprintf(stderr, "Doesn't make sense to have a stale threshold lower than 1 second. Terminating.\n"); usage(); return -1; } break; case 'a': /* abuse threshold count */ opts.abuse_threshold = strtol(optarg, (char **)NULL, 10); break; case 'w': /* whitelist entries */ if (optarg[0] == '/' || optarg[0] == '.') { /* add from file */ if (whitelist_file(optarg) != 0) { fprintf(stderr, "Could not handle whitelisting for %s.\n", optarg); usage(); return -1; } } else { /* add raw content */ if (whitelist_add(optarg) != 0) { fprintf(stderr, "Could not handle whitelisting for %s.\n", optarg); usage(); return -1; } } break; case 'N': /* IPv6 subnet size */ opts.subnet_ipv6 = strtol(optarg, (char **)NULL, 10); break; case 'n': /* IPv4 subnet size */ opts.subnet_ipv4 = strtol(optarg, (char **)NULL, 10); break; case 'i': /* specify pidfile for my PID */ opts.my_pidfile = optarg; break; default: /* or anything else: print help */ usage(); return -1; } } if (opts.blacklist_filename && opts.blacklist_threshold < opts.abuse_threshold) { fprintf(stderr, "error: blacklist (%u) is less than abuse threshold (%u)\n", opts.blacklist_threshold, opts.abuse_threshold); return -1; } return 0; } sshguard-2.3.1/src/common/simclist.h000644 001751 001751 00000075776 13405335557 020334 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SimCList library. See http://mij.oltrelinux.com/devel/simclist */ #ifndef SIMCLIST_H #define SIMCLIST_H #ifdef __cplusplus extern "C" { #endif #include #include #include /* Be friend of both C90 and C99 compilers */ #if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* "inline" and "restrict" are keywords */ #else # define inline /* inline */ # define restrict /* restrict */ #endif /** * Type representing list hashes. * * This is a signed integer value. */ typedef int32_t list_hash_t; #ifndef SIMCLIST_NO_DUMPRESTORE typedef struct { uint16_t version; /* dump version */ int64_t timestamp; /* when the list has been dumped, microseconds from UNIX epoch */ uint32_t list_size; uint32_t list_numels; list_hash_t list_hash; /* hash of the list when dumped, or 0 if invalid */ uint32_t dumpsize; int consistent; /* 1 if the dump is verified complete/consistent; 0 otherwise */ } list_dump_info_t; #endif /** * a comparator of elements. * * A comparator of elements is a function that: * -# receives two references to elements a and b * -# returns {<0, 0, >0} if (a > b), (a == b), (a < b) respectively * * It is responsability of the function to handle possible NULL values. */ typedef int (*element_comparator)(const void *a, const void *b); /** * an element synthesizer / sort key generator. * * Takes an element and returns an integer key suitable to direct sorting. * Elements are sorted by key of increasing value. To invert the sorting * direction, invert the sign of the key. * * @see list_sort() */ typedef long int (*element_keymaker)(const void *el); /** * a seeker of elements. * * An element seeker is a function that: * -# receives a reference to an element el * -# receives a reference to some indicator data * -# returns non-0 if the element matches the indicator, 0 otherwise * * It is responsability of the function to handle possible NULL values in any * argument. */ typedef int (*element_seeker)(const void *el, const void *indicator); /** * an element lenght meter. * * An element meter is a function that: * -# receives the reference to an element el * -# returns its size in bytes * * It is responsability of the function to handle possible NULL values. */ typedef size_t (*element_meter)(const void *el); /** * a function computing the hash of elements. * * An hash computing function is a function that: * -# receives the reference to an element el * -# returns a hash value for el * * It is responsability of the function to handle possible NULL values. */ typedef list_hash_t (*element_hash_computer)(const void *el); /** * a function for serializing an element. * * A serializer function is one that gets a reference to an element, * and returns a reference to a buffer that contains its serialization * along with the length of this buffer. * It is responsability of the function to handle possible NULL values, * returning a NULL buffer and a 0 buffer length. * * These functions have 3 goals: * -# "freeze" and "flatten" the memory representation of the element * -# provide a portable (wrt byte order, or type size) representation of the element, if the dump can be used on different sw/hw combinations * -# possibly extract a compressed representation of the element * * @param el reference to the element data * @param serialize_buffer reference to fill with the length of the buffer * @return reference to the buffer with the serialized data */ typedef void *(*element_serializer)(const void *restrict el, uint32_t *restrict serializ_len); /** * a function for un-serializing an element. * * An unserializer function accomplishes the inverse operation of the * serializer function. An unserializer function is one that gets a * serialized representation of an element and turns it backe to the original * element. The serialized representation is passed as a reference to a buffer * with its data, and the function allocates and returns the buffer containing * the original element, and it sets the length of this buffer into the * integer passed by reference. * * @param data reference to the buffer with the serialized representation of the element * @param data_len reference to the location where to store the length of the data in the buffer returned * @return reference to a buffer with the original, unserialized representation of the element */ typedef void *(*element_unserializer)(const void *restrict data, uint32_t *restrict data_len); /* [private-use] list entry -- olds actual user datum */ struct list_entry_s { void *data; /* doubly-linked list service references */ struct list_entry_s *next; struct list_entry_s *prev; }; /* [private-use] list attributes */ struct list_attributes_s { /* user-set routine for comparing list elements */ element_comparator comparator; /* user-set routine for synthesizing an element into an int value for sorting */ element_keymaker keymaker; /* user-set routing for seeking elements */ element_seeker seeker; /* user-set routine for determining the length of an element */ element_meter meter; int copy_data; /* user-set routine for computing the hash of an element */ element_hash_computer hasher; /* user-set routine for serializing an element */ element_serializer serializer; /* user-set routine for unserializing an element */ element_unserializer unserializer; }; /** list object */ typedef struct { struct list_entry_s *head_sentinel; struct list_entry_s *tail_sentinel; struct list_entry_s *mid; unsigned int numels; /* array of spare elements */ struct list_entry_s **spareels; unsigned int spareelsnum; #ifdef SIMCLIST_WITH_THREADS /* how many threads are currently running */ unsigned int threadcount; #endif /* service variables for list iteration */ int iter_active; unsigned int iter_pos; struct list_entry_s *iter_curentry; /* list attributes */ struct list_attributes_s attrs; } list_t; /** * initialize a list object for use. * * @param l must point to a user-provided memory location * @return 0 for success. -1 for failure */ int list_init(list_t *restrict l); /** * completely remove the list from memory. * * This function is the inverse of list_init(). It is meant to be called when * the list is no longer going to be used. Elements and possible memory taken * for internal use are freed. * * @param l list to destroy */ void list_destroy(list_t *restrict l); /** * set the comparator function for list elements. * * Comparator functions are used for searching and sorting. If NULL is passed * as reference to the function, the comparator is disabled. * * @param l list to operate * @param comparator_fun pointer to the actual comparator function * @return 0 if the attribute was successfully set; -1 otherwise * * @see element_comparator() */ int list_attributes_comparator(list_t *restrict l, element_comparator comparator_fun); /** * set the keymaker functions for list elements. * * @see element_keymaker * * @param l list to operate * @param keymaker_fun pointer to the actual keymaker function * @return 0 if the attribute was successfully set; -1 otherwise */ int list_attributes_keymaker(list_t *restrict l, element_keymaker keymaker_fun); /** * set a seeker function for list elements. * * Seeker functions are used for finding elements. If NULL is passed as reference * to the function, the seeker is disabled. * * @param l list to operate * @param seeker_fun pointer to the actual seeker function * @return 0 if the attribute was successfully set; -1 otherwise * * @see element_seeker() */ int list_attributes_seeker(list_t *restrict l, element_seeker seeker_fun); /** * require to free element data when list entry is removed (default: don't free). * * [ advanced preference ] * * By default, when an element is removed from the list, it disappears from * the list by its actual data is not free()d. With this option, every * deletion causes element data to be freed. * * It is responsability of this function to correctly handle NULL values, if * NULL elements are inserted into the list. * * @param l list to operate * @param metric_fun pointer to the actual metric function * @param copy_data 0: do not free element data (default); non-0: do free * @return 0 if the attribute was successfully set; -1 otherwise * * @see element_meter() * @see list_meter_int8_t() * @see list_meter_int16_t() * @see list_meter_int32_t() * @see list_meter_int64_t() * @see list_meter_uint8_t() * @see list_meter_uint16_t() * @see list_meter_uint32_t() * @see list_meter_uint64_t() * @see list_meter_float() * @see list_meter_double() * @see list_meter_string() */ int list_attributes_copy(list_t *restrict l, element_meter metric_fun, int copy_data); /** * set the element hash computing function for the list elements. * * [ advanced preference ] * * An hash can be requested depicting the list status at a given time. An hash * only depends on the elements and their order. By default, the hash of an * element is only computed on its reference. With this function, the user can * set a custom function computing the hash of an element. If such function is * provided, the list_hash() function automatically computes the list hash using * the custom function instead of simply referring to element references. * * @param l list to operate * @param hash_computer_fun pointer to the actual hash computing function * @return 0 if the attribute was successfully set; -1 otherwise * * @see element_hash_computer() */ int list_attributes_hash_computer(list_t *restrict l, element_hash_computer hash_computer_fun); /** * set the element serializer function for the list elements. * * [ advanced preference ] * * Serialize functions are used for dumping the list to some persistent * storage. The serializer function is called for each element; it is passed * a reference to the element and a reference to a size_t object. It will * provide (and return) the buffer with the serialization of the element and * fill the size_t object with the length of this serialization data. * * @param l list to operate * @param serializer_fun pointer to the actual serializer function * @return 0 if the attribute was successfully set; -1 otherwise * * @see element_serializer() * @see list_dump_filedescriptor() * @see list_restore_filedescriptor() */ int list_attributes_serializer(list_t *restrict l, element_serializer serializer_fun); /** * set the element unserializer function for the list elements. * * [ advanced preference ] * * Unserialize functions are used for restoring the list from some persistent * storage. The unserializer function is called for each element segment read * from the storage; it is passed the segment and a reference to an integer. * It shall allocate and return a buffer compiled with the resumed memory * representation of the element, and set the integer value to the length of * this buffer. * * @param l list to operate * @param unserializer_fun pointer to the actual unserializer function * @return 0 if the attribute was successfully set; -1 otherwise * * @see element_unserializer() * @see list_dump_filedescriptor() * @see list_restore_filedescriptor() */ int list_attributes_unserializer(list_t *restrict l, element_unserializer unserializer_fun); /** * append data at the end of the list. * * This function is useful for adding elements with a FIFO/queue policy. * * @param l list to operate * @param data pointer to user data to append * * @return 1 for success. < 0 for failure */ int list_append(list_t *restrict l, const void *data); /** * insert data in the head of the list. * * This function is useful for adding elements with a LIFO/Stack policy. * * @param l list to operate * @param data pointer to user data to append * * @return 1 for success. < 0 for failure */ int list_prepend(list_t *restrict l, const void *restrict data); /** * extract the element in the top of the list. * * This function is for using a list with a FIFO/queue policy. * * @param l list to operate * @return reference to user datum, or NULL on errors */ void *list_fetch(list_t *restrict l); /** * retrieve an element at a given position. * * @param l list to operate * @param pos [0,size-1] position index of the element wanted * @return reference to user datum, or NULL on errors */ void *list_get_at(const list_t *restrict l, unsigned int pos); /** * return the maximum element of the list. * * @warning Requires a comparator function to be set for the list. * * Returns the maximum element with respect to the comparator function output. * * @see list_attributes_comparator() * * @param l list to operate * @return the reference to the element, or NULL */ void *list_get_max(const list_t *restrict l); /** * return the minimum element of the list. * * @warning Requires a comparator function to be set for the list. * * Returns the minimum element with respect to the comparator function output. * * @see list_attributes_comparator() * * @param l list to operate * @return the reference to the element, or NULL */ void *list_get_min(const list_t *restrict l); /** * retrieve and remove from list an element at a given position. * * @param l list to operate * @param pos [0,size-1] position index of the element wanted * @return reference to user datum, or NULL on errors */ void *list_extract_at(list_t *restrict l, unsigned int pos); /** * insert an element at a given position. * * @param l list to operate * @param data reference to data to be inserted * @param pos [0,size-1] position index to insert the element at * @return positive value on success. Negative on failure */ int list_insert_at(list_t *restrict l, const void *data, unsigned int pos); /** * expunge the first found given element from the list. * * Inspects the given list looking for the given element; if the element * is found, it is removed. Only the first occurence is removed. * If a comparator function was not set, elements are compared by reference. * Otherwise, the comparator is used to match the element. * * @param l list to operate * @param data reference of the element to search for * @return 0 on success. Negative value on failure * * @see list_attributes_comparator() * @see list_delete_at() */ int list_delete(list_t *restrict l, const void *data); /** * expunge an element at a given position from the list. * * @param l list to operate * @param pos [0,size-1] position index of the element to be deleted * @return 0 on success. Negative value on failure */ int list_delete_at(list_t *restrict l, unsigned int pos); /** * expunge an array of elements from the list, given their position range. * * @param l list to operate * @param posstart [0,size-1] position index of the first element to be deleted * @param posend [posstart,size-1] position of the last element to be deleted * @return the number of elements successfully removed */ int list_delete_range(list_t *restrict l, unsigned int posstart, unsigned int posend); /** * clear all the elements off of the list. * * The element datums will not be freed. * * @see list_delete_range() * @see list_size() * * @param l list to operate * @return the number of elements in the list before cleaning */ int list_clear(list_t *restrict l); /** * inspect the number of elements in the list. * * @param l list to operate * @return number of elements currently held by the list */ unsigned int list_size(const list_t *restrict l); /** * inspect whether the list is empty. * * @param l list to operate * @return 0 iff the list is not empty * * @see list_size() */ int list_empty(const list_t *restrict l); /** * find the position of an element in a list. * * @warning Requires a comparator function to be set for the list. * * Inspects the given list looking for the given element; if the element * is found, its position into the list is returned. * Elements are inspected comparing references if a comparator has not been * set. Otherwise, the comparator is used to find the element. * * @param l list to operate * @param data reference of the element to search for * @return position of element in the list, or <0 if not found * * @see list_attributes_comparator() * @see list_get_at() */ int list_locate(const list_t *restrict l, const void *data); /** * returns an element given an indicator. * * @warning Requires a seeker function to be set for the list. * * Inspect the given list looking with the seeker if an element matches * an indicator. If such element is found, the reference to the element * is returned. * * @param l list to operate * @param indicator indicator data to pass to the seeker along with elements * @return reference to the element accepted by the seeker, or NULL if none found */ void *list_seek(list_t *restrict l, const void *indicator); /** * inspect whether some data is member of the list. * * @warning Requires a comparator function to be set for the list. * * By default, a per-reference comparison is accomplished. That is, * the data is in list if any element of the list points to the same * location of data. * A "semantic" comparison is accomplished, otherwise, if a comparator * function has been set previously, with list_attributes_comparator(); * in which case, the given data reference is believed to be in list iff * comparator_fun(elementdata, userdata) == 0 for any element in the list. * * @param l list to operate * @param data reference to the data to search * @return 0 iff the list does not contain data as an element * * @see list_attributes_comparator() */ int list_contains(const list_t *restrict l, const void *data); /** * concatenate two lists * * Concatenates one list with another, and stores the result into a * user-provided list object, which must be different from both the * lists to concatenate. Attributes from the original lists are not * cloned. * The destination list referred is threated as virgin room: if it * is an existing list containing elements, memory leaks will happen. * It is OK to specify the same list twice as source, for "doubling" * it in the destination. * * @param l1 base list * @param l2 list to append to the base * @param dest reference to the destination list * @return 0 for success, -1 for errors */ int list_concat(const list_t *l1, const list_t *l2, list_t *restrict dest); /** * sort list elements. * * @warning Requires a comparator function to be set for the list. * * Sorts the list in ascending or descending order as specified by the versus * flag. The algorithm chooses autonomously what algorithm is best suited for * sorting the list wrt its current status. * * @param l list to operate * @param versus positive: order small to big; negative: order big to small * @return 0: sorting went OK non-0: errors happened * * @see list_attributes_comparator() * @see list_attributes_keymaker() */ int list_sort(list_t *restrict l, int versus); /** * start an iteration session. * * This function prepares the list to be iterated. * * @param l list to operate * @return 0 if the list cannot be currently iterated. >0 otherwise * * @see list_iterator_stop() */ int list_iterator_start(list_t *restrict l); /** * return the next element in the iteration session. * * @param l list to operate * @return element datum, or NULL on errors */ void *list_iterator_next(list_t *restrict l); /** * inspect whether more elements are available in the iteration session. * * @param l list to operate * @return 0 iff no more elements are available. */ int list_iterator_hasnext(const list_t *restrict l); /** * end an iteration session. * * @param l list to operate * @return 0 iff the iteration session cannot be stopped */ int list_iterator_stop(list_t *restrict l); /** * return the hash of the current status of the list. * * @param l list to operate * @param hash where the resulting hash is put * * @return 0 for success; <0 for failure */ int list_hash(const list_t *restrict l, list_hash_t *restrict hash); #ifndef SIMCLIST_NO_DUMPRESTORE /** * get meta informations on a list dump on filedescriptor. * * [ advanced function ] * * Extracts the meta information from a SimCList dump located in a file * descriptor. The file descriptor must be open and positioned at the * beginning of the SimCList dump block. * * @param fd file descriptor to get metadata from * @param info reference to a dump metainformation structure to fill * @return 0 for success; <0 for failure * * @see list_dump_filedescriptor() */ int list_dump_getinfo_filedescriptor(int fd, list_dump_info_t *restrict info); /** * get meta informations on a list dump on file. * * [ advanced function ] * * Extracts the meta information from a SimCList dump located in a file. * * @param filename filename of the file to fetch from * @param info reference to a dump metainformation structure to fill * @return 0 for success; <0 for failure * * @see list_dump_filedescriptor() */ int list_dump_getinfo_file(const char *restrict filename, list_dump_info_t *restrict info); /** * dump the list into an open, writable file descriptor. * * This function "dumps" the list to a persistent storage so it can be * preserved across process terminations. * When called, the file descriptor must be open for writing and positioned * where the serialized data must begin. It writes its serialization of the * list in a form which is portable across different architectures. Dump can * be safely performed on stream-only (non seekable) descriptors. The file * descriptor is not closed at the end of the operations. * * To use dump functions, either of these conditions must be satisfied: * -# a metric function has been specified with list_attributes_copy() * -# a serializer function has been specified with list_attributes_serializer() * * If a metric function has been specified, each element of the list is dumped * as-is from memory, copying it from its pointer for its length down to the * file descriptor. This might have impacts on portability of the dump to * different architectures. * * If a serializer function has been specified, its result for each element is * dumped to the file descriptor. * * * @param l list to operate * @param fd file descriptor to write to * @param len location to store the resulting length of the dump (bytes), or NULL * * @return 0 if successful; -1 otherwise * * @see element_serializer() * @see list_attributes_copy() * @see list_attributes_serializer() */ int list_dump_filedescriptor(const list_t *restrict l, int fd, size_t *restrict len); /** * dump the list to a file name. * * This function creates a filename and dumps the current content of the list * to it. If the file exists it is overwritten. The number of bytes written to * the file can be returned in a specified argument. * * @param l list to operate * @param filename filename to write to * @param len location to store the resulting length of the dump (bytes), or NULL * * @return 0 if successful; -1 otherwise * * @see list_attributes_copy() * @see element_serializer() * @see list_attributes_serializer() * @see list_dump_filedescriptor() * @see list_restore_file() * * This function stores a representation of the list */ int list_dump_file(const list_t *restrict l, const char *restrict filename, size_t *restrict len); /** * restore the list from an open, readable file descriptor to memory. * * This function is the "inverse" of list_dump_filedescriptor(). It restores * the list content from a (open, read-ready) file descriptor to memory. An * unserializer might be needed to restore elements from the persistent * representation back into memory-consistent format. List attributes can not * be restored and must be set manually. * * @see list_dump_filedescriptor() * @see list_attributes_serializer() * @see list_attributes_unserializer() * * @param l list to restore to * @param fd file descriptor to read from. * @param len location to store the length of the dump read (bytes), or NULL * @return 0 if successful; -1 otherwise */ int list_restore_filedescriptor(list_t *restrict l, int fd, size_t *restrict len); /** * restore the list from a file name. * * This function restores the content of a list from a file into memory. It is * the inverse of list_dump_file(). * * @see element_unserializer() * @see list_attributes_unserializer() * @see list_dump_file() * @see list_restore_filedescriptor() * * @param l list to restore to * @param filename filename to read data from * @param len location to store the length of the dump read (bytes), or NULL * @return 0 if successful; -1 otherwise */ int list_restore_file(list_t *restrict l, const char *restrict filename, size_t *len); #endif /* ready-made comparators, meters and hash computers */ /* comparator functions */ /** * ready-made comparator for int8_t elements. * @see list_attributes_comparator() */ int list_comparator_int8_t(const void *a, const void *b); /** * ready-made comparator for int16_t elements. * @see list_attributes_comparator() */ int list_comparator_int16_t(const void *a, const void *b); /** * ready-made comparator for int32_t elements. * @see list_attributes_comparator() */ int list_comparator_int32_t(const void *a, const void *b); /** * ready-made comparator for int64_t elements. * @see list_attributes_comparator() */ int list_comparator_int64_t(const void *a, const void *b); /** * ready-made comparator for uint8_t elements. * @see list_attributes_comparator() */ int list_comparator_uint8_t(const void *a, const void *b); /** * ready-made comparator for uint16_t elements. * @see list_attributes_comparator() */ int list_comparator_uint16_t(const void *a, const void *b); /** * ready-made comparator for uint32_t elements. * @see list_attributes_comparator() */ int list_comparator_uint32_t(const void *a, const void *b); /** * ready-made comparator for uint64_t elements. * @see list_attributes_comparator() */ int list_comparator_uint64_t(const void *a, const void *b); /** * ready-made comparator for float elements. * @see list_attributes_comparator() */ int list_comparator_float(const void *a, const void *b); /** * ready-made comparator for double elements. * @see list_attributes_comparator() */ int list_comparator_double(const void *a, const void *b); /** * ready-made comparator for string elements. * @see list_attributes_comparator() */ int list_comparator_string(const void *a, const void *b); /* metric functions */ /** * ready-made metric function for int8_t elements. * @see list_attributes_copy() */ size_t list_meter_int8_t(const void *el); /** * ready-made metric function for int16_t elements. * @see list_attributes_copy() */ size_t list_meter_int16_t(const void *el); /** * ready-made metric function for int32_t elements. * @see list_attributes_copy() */ size_t list_meter_int32_t(const void *el); /** * ready-made metric function for int64_t elements. * @see list_attributes_copy() */ size_t list_meter_int64_t(const void *el); /** * ready-made metric function for uint8_t elements. * @see list_attributes_copy() */ size_t list_meter_uint8_t(const void *el); /** * ready-made metric function for uint16_t elements. * @see list_attributes_copy() */ size_t list_meter_uint16_t(const void *el); /** * ready-made metric function for uint32_t elements. * @see list_attributes_copy() */ size_t list_meter_uint32_t(const void *el); /** * ready-made metric function for uint64_t elements. * @see list_attributes_copy() */ size_t list_meter_uint64_t(const void *el); /** * ready-made metric function for float elements. * @see list_attributes_copy() */ size_t list_meter_float(const void *el); /** * ready-made metric function for double elements. * @see list_attributes_copy() */ size_t list_meter_double(const void *el); /** * ready-made metric function for string elements. * @see list_attributes_copy() */ size_t list_meter_string(const void *el); /* hash functions */ /** * ready-made hash function for int8_t elements. * @see list_attributes_hash_computer() */ list_hash_t list_hashcomputer_int8_t(const void *el); /** * ready-made hash function for int16_t elements. * @see list_attributes_hash_computer() */ list_hash_t list_hashcomputer_int16_t(const void *el); /** * ready-made hash function for int32_t elements. * @see list_attributes_hash_computer() */ list_hash_t list_hashcomputer_int32_t(const void *el); /** * ready-made hash function for int64_t elements. * @see list_attributes_hash_computer() */ list_hash_t list_hashcomputer_int64_t(const void *el); /** * ready-made hash function for uint8_t elements. * @see list_attributes_hash_computer() */ list_hash_t list_hashcomputer_uint8_t(const void *el); /** * ready-made hash function for uint16_t elements. * @see list_attributes_hash_computer() */ list_hash_t list_hashcomputer_uint16_t(const void *el); /** * ready-made hash function for uint32_t elements. * @see list_attributes_hash_computer() */ list_hash_t list_hashcomputer_uint32_t(const void *el); /** * ready-made hash function for uint64_t elements. * @see list_attributes_hash_computer() */ list_hash_t list_hashcomputer_uint64_t(const void *el); /** * ready-made hash function for float elements. * @see list_attributes_hash_computer() */ list_hash_t list_hashcomputer_float(const void *el); /** * ready-made hash function for double elements. * @see list_attributes_hash_computer() */ list_hash_t list_hashcomputer_double(const void *el); /** * ready-made hash function for string elements. * @see list_attributes_hash_computer() */ list_hash_t list_hashcomputer_string(const void *el); #ifdef __cplusplus } #endif #endif sshguard-2.3.1/src/common/address.h000644 001751 001751 00000004163 13405335557 020110 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #pragma once /* maximum length of an address string */ #ifndef INET_ADDRSTRLEN # define INET_ADDRSTRLEN 16 #endif #ifndef INET6_ADDRSTRLEN # define INET6_ADDRSTRLEN 46 #endif #define ADDRLEN INET6_ADDRSTRLEN /* address kind codes */ #define ADDRKIND_IPv4 4 #define ADDRKIND_IPv6 6 /* an IPv4 address */ #define REGEXLIB_IPV4 "((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]?|0)(\\.(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]?|0)){3})" /* an IPv6 address, possibly compressed */ #define REGEXLIB_IPV6 "(::|(([a-fA-F0-9]{1,4}):){7}(([a-fA-F0-9]{1,4}))|(:(:([a-fA-F0-9]{1,4})){1,6})|((([a-fA-F0-9]{1,4}):){1,6}:)|((([a-fA-F0-9]{1,4}):)(:([a-fA-F0-9]{1,4})){1,6})|((([a-fA-F0-9]{1,4}):){2}(:([a-fA-F0-9]{1,4})){1,5})|((([a-fA-F0-9]{1,4}):){3}(:([a-fA-F0-9]{1,4})){1,4})|((([a-fA-F0-9]{1,4}):){4}(:([a-fA-F0-9]{1,4})){1,3})|((([a-fA-F0-9]{1,4}):){5}(:([a-fA-F0-9]{1,4})){1,2}))" /* an IPv4 address, mapped to IPv6 */ #define REGEXLIB_IPV4_MAPPED6 "(((0:){5}(0|[fF]{4})|:(:[fF]{4})?):{IPV4})" /* a hostname, "localhost" or at least 2nd level */ #define REGEXLIB_HOSTNAME "(localhost|([-a-zA-Z0-9]+\\.)+[a-zA-Z]+)" typedef struct { char value[ADDRLEN]; /* address of offender */ int kind; /* type of address addr */ } sshg_address_t; sshguard-2.3.1/src/common/attack.h000644 001751 001751 00000006071 13405335557 017732 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #pragma once #include #include "address.h" enum service { SERVICES_ALL = 0, //< anything SERVICES_SSH = 100, //< ssh SERVICES_SSHGUARD = 110, //< SSHGuard SERVICES_UWIMAP = 200, //< UWimap for imap and pop daemon SERVICES_DOVECOT = 210, //< dovecot SERVICES_CYRUSIMAP = 220, //< cyrus-imap SERVICES_CUCIPOP = 230, //< cucipop SERVICES_EXIM = 240, //< exim SERVICES_SENDMAIL = 250, //< sendmail SERVICES_POSTFIX = 260, //< postfix SERVICES_OPENSMTPD = 270, //< OpenSMTPD SERVICES_COURIER = 280, //< Courier IMAP/POP SERVICES_FREEBSDFTPD = 300, //< ftpd shipped with FreeBSD SERVICES_PROFTPD = 310, //< ProFTPd SERVICES_PUREFTPD = 320, //< Pure-FTPd SERVICES_VSFTPD = 330, //< vsftpd SERVICES_COCKPIT = 340, //< cockpit management dashboard SERVICES_CLF_UNAUTH = 350, //< HTTP 401 in common log format SERVICES_CLF_PROBES = 360, //< probes for common web services SERVICES_CLF_WORDPRESS = 370, //< WordPress logins in common log format SERVICES_OPENVPN = 400, //< OpenVPN }; /* an attack (source address & target service info) */ typedef struct { sshg_address_t address; //< Address enum service service; //< Service int dangerousness; //< Danger level } attack_t; /* profile of an attacker */ typedef struct { attack_t attack; /* attacker address, target service */ time_t whenfirst; /* first time seen (or blocked) */ time_t whenlast; /* last time seen (or blocked) */ time_t pardontime; /* minimum seconds to wait before releasing address when blocked */ unsigned int numhits; /* #attacks for attacker tracking; #abuses for offenders tracking */ unsigned int cumulated_danger; /* total danger incurred (before or after blocked) */ } attacker_t; int attack_addr_seeker(const void *el, const void *key); int attack_from_hostname(attack_t *attack, const char *name); void attackerinit(attacker_t *restrict ipe, const attack_t *restrict attack); int attackt_whenlast_comparator(const void *a, const void *b); sshguard-2.3.1/src/common/config.h.in000644 001751 001751 00000005372 13412703326 020327 0ustar00kevinzkevinz000000 000000 /* src/common/config.h.in. Generated from configure.ac by autoheader. */ /* Use Capsicum */ #undef CAPSICUM /* Define to 1 if you have the `cap_enter' function. */ #undef HAVE_CAP_ENTER /* Define to 1 if you have the `cap_rights_limit' function. */ #undef HAVE_CAP_RIGHTS_LIMIT /* Define to 1 if you have the header file. */ #undef HAVE_GETOPT_H /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_CAPABILITY_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_CAPSICUM_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* Name of package */ #undef PACKAGE /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the home page for this package. */ #undef PACKAGE_URL /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Enable extensions on AIX 3, Interix. */ #ifndef _ALL_SOURCE # undef _ALL_SOURCE #endif /* Enable GNU extensions on systems that have them. */ #ifndef _GNU_SOURCE # undef _GNU_SOURCE #endif /* Enable threading extensions on Solaris. */ #ifndef _POSIX_PTHREAD_SEMANTICS # undef _POSIX_PTHREAD_SEMANTICS #endif /* Enable extensions on HP NonStop. */ #ifndef _TANDEM_SOURCE # undef _TANDEM_SOURCE #endif /* Enable general extensions on Solaris. */ #ifndef __EXTENSIONS__ # undef __EXTENSIONS__ #endif /* Version number of package */ #undef VERSION /* Define to 1 if `lex' declares `yytext' as a `char *' by default, not a `char[]'. */ #undef YYTEXT_POINTER /* Define to 1 if on MINIX. */ #undef _MINIX /* Define to 2 if the system does not provide POSIX.1 features except with this defined. */ #undef _POSIX_1_SOURCE /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE sshguard-2.3.1/src/common/simclist.c000644 001751 001751 00000135024 13405335557 020306 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2009,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SimCList library. See http://mij.oltrelinux.com/devel/simclist */ /* SimCList implementation, version 1.4.4rc4 */ #include #include #include /* for setting errno */ #include #include /* for READ_ERRCHECK() and write() */ #include /* for open() etc */ #include /* for htons() */ #include #include /* for time() for random seed */ #include /* for gettimeofday() */ #include /* for open()'s access modes S_IRUSR etc */ #include #include /* work around lack of inttypes.h support in broken Microsoft Visual Studio compilers */ #if !defined(WIN32) || !defined(_MSC_VER) # include /* (u)int*_t */ #else # include typedef UINT8 uint8_t; typedef UINT16 uint16_t; typedef ULONG32 uint32_t; typedef UINT64 uint64_t; typedef INT8 int8_t; typedef INT16 int16_t; typedef LONG32 int32_t; typedef INT64 int64_t; #endif #ifndef SIMCLIST_NO_DUMPRESTORE /* convert 64bit integers from host to network format */ #define hton64(x) (\ htons(1) == 1 ? \ (uint64_t)x /* big endian */ \ : /* little endian */ \ ((uint64_t)((((uint64_t)(x) & 0xff00000000000000ULL) >> 56) | \ (((uint64_t)(x) & 0x00ff000000000000ULL) >> 40) | \ (((uint64_t)(x) & 0x0000ff0000000000ULL) >> 24) | \ (((uint64_t)(x) & 0x000000ff00000000ULL) >> 8) | \ (((uint64_t)(x) & 0x00000000ff000000ULL) << 8) | \ (((uint64_t)(x) & 0x0000000000ff0000ULL) << 24) | \ (((uint64_t)(x) & 0x000000000000ff00ULL) << 40) | \ (((uint64_t)(x) & 0x00000000000000ffULL) << 56))) \ ) /* convert 64bit integers from network to host format */ #define ntoh64(x) (hton64(x)) #endif /* some OSes don't have EPROTO (eg OpenBSD) */ #ifndef EPROTO #define EPROTO EIO #endif /* disable asserts */ #ifndef SIMCLIST_DEBUG #define NDEBUG #endif #include #ifdef SIMCLIST_WITH_THREADS /* limit (approx) to the number of threads running * for threaded operations. Only meant when * SIMCLIST_WITH_THREADS is defined */ #define SIMCLIST_MAXTHREADS 2 #endif /* * how many elems to keep as spare. During a deletion, an element * can be saved in a "free-list", not free()d immediately. When * latter insertions are performed, spare elems can be used instead * of malloc()ing new elems. * * about this param, some values for appending * 10 million elems into an empty list: * (#, time[sec], gain[%], gain/no[%]) * 0 2,164 0,00 0,00 <-- feature disabled * 1 1,815 34,9 34,9 * 2 1,446 71,8 35,9 <-- MAX gain/no * 3 1,347 81,7 27,23 * 5 1,213 95,1 19,02 * 8 1,064 110,0 13,75 * 10 1,015 114,9 11,49 <-- MAX gain w/ likely sol * 15 1,019 114,5 7,63 * 25 0,985 117,9 4,72 * 50 1,088 107,6 2,15 * 75 1,016 114,8 1,53 * 100 0,988 117,6 1,18 * 150 1,022 114,2 0,76 * 200 0,939 122,5 0,61 <-- MIN time */ #ifndef SIMCLIST_MAX_SPARE_ELEMS #define SIMCLIST_MAX_SPARE_ELEMS 5 #endif #ifdef SIMCLIST_WITH_THREADS #include #endif #include "simclist.h" /* minumum number of elements for sorting with quicksort instead of insertion */ #define SIMCLIST_MINQUICKSORTELS 24 /* list dump declarations */ #define SIMCLIST_DUMPFORMAT_VERSION 1 /* (short integer) version of fileformat managed by _dump* and _restore* functions */ #define SIMCLIST_DUMPFORMAT_HEADERLEN 30 /* length of the header */ /* header for a list dump */ struct list_dump_header_s { uint16_t ver; /* version */ int64_t timestamp; /* dump timestamp */ int32_t rndterm; /* random value terminator -- terminates the data sequence */ uint32_t totlistlen; /* sum of every element' size, bytes */ uint32_t numels; /* number of elements */ uint32_t elemlen; /* bytes length of an element, for constant-size lists, <= 0 otherwise */ int32_t listhash; /* hash of the list at the time of dumping, or 0 if to be ignored */ }; /* deletes tmp from list, with care wrt its position (head, tail, middle) */ static int list_drop_elem(list_t *restrict l, struct list_entry_s *tmp, unsigned int pos); /* set default values for initialized lists */ static int list_attributes_setdefaults(list_t *restrict l); #ifndef NDEBUG /* check whether the list internal REPresentation is valid -- Costs O(n) */ static int list_repOk(const list_t *restrict l); /* check whether the list attribute set is valid -- Costs O(1) */ static int list_attrOk(const list_t *restrict l); #endif /* do not inline, this is recursive */ static void list_sort_quicksort(list_t *restrict l, int versus, unsigned int first, struct list_entry_s *fel, unsigned int last, struct list_entry_s *lel); static inline void list_sort_selectionsort(list_t *restrict l, int versus, unsigned int first, struct list_entry_s *fel, unsigned int last, struct list_entry_s *lel); static void *list_get_minmax(const list_t *restrict l, int versus); static inline struct list_entry_s *list_findpos(const list_t *restrict l, int posstart); /* write() decorated with error checking logic */ #define WRITE_ERRCHECK(fd, msgbuf, msglen) do { \ if (write(fd, msgbuf, msglen) < 0) return -1; \ } while (0); /* READ_ERRCHECK() decorated with error checking logic */ #define READ_ERRCHECK(fd, msgbuf, msglen) do { \ if (read(fd, msgbuf, msglen) != msglen) { \ /*errno = EPROTO;*/ \ return -1; \ } \ } while (0); /* * Random Number Generator * * The user is expected to seed the RNG (ie call srand()) if * SIMCLIST_SYSTEM_RNG is defined. * * Otherwise, a self-contained RNG based on LCG is used; see * http://en.wikipedia.org/wiki/Linear_congruential_generator . * * Facts pro local RNG: * 1. no need for the user to call srand() on his own * 2. very fast, possibly faster than OS * 3. avoid interference with user's RNG * * Facts pro system RNG: * 1. may be more accurate (irrelevant for SimCList randno purposes) * 2. why reinvent the wheel * * Default to local RNG for user's ease of use. */ #ifdef SIMCLIST_SYSTEM_RNG /* keep track whether we initialized already (non-0) or not (0) */ static unsigned random_seed = 0; /* use local RNG */ static inline void seed_random() { if (random_seed == 0) random_seed = (unsigned)getpid() ^ (unsigned)time(NULL); } static inline long get_random() { random_seed = (1664525 * random_seed + 1013904223); return random_seed; } #else /* use OS's random generator */ # define seed_random() # define get_random() (rand()) #endif /* list initialization */ int list_init(list_t *restrict l) { if (l == NULL) return -1; seed_random(); l->numels = 0; /* head/tail sentinels and mid pointer */ l->head_sentinel = (struct list_entry_s *)malloc(sizeof(struct list_entry_s)); l->tail_sentinel = (struct list_entry_s *)malloc(sizeof(struct list_entry_s)); l->head_sentinel->next = l->tail_sentinel; l->tail_sentinel->prev = l->head_sentinel; l->head_sentinel->prev = l->tail_sentinel->next = l->mid = NULL; l->head_sentinel->data = l->tail_sentinel->data = NULL; /* iteration attributes */ l->iter_active = 0; l->iter_pos = 0; l->iter_curentry = NULL; /* free-list attributes */ l->spareels = (struct list_entry_s **)malloc(SIMCLIST_MAX_SPARE_ELEMS * sizeof(struct list_entry_s *)); l->spareelsnum = 0; #ifdef SIMCLIST_WITH_THREADS l->threadcount = 0; #endif list_attributes_setdefaults(l); assert(list_repOk(l)); assert(list_attrOk(l)); return 0; } void list_destroy(list_t *restrict l) { unsigned int i; list_clear(l); for (i = 0; i < l->spareelsnum; i++) { free(l->spareels[i]); } free(l->spareels); free(l->head_sentinel); free(l->tail_sentinel); } int list_attributes_setdefaults(list_t *restrict l) { l->attrs.comparator = NULL; l->attrs.seeker = NULL; /* also free() element data when removing and element from the list */ l->attrs.meter = NULL; l->attrs.copy_data = 0; l->attrs.hasher = NULL; /* serializer/unserializer */ l->attrs.serializer = NULL; l->attrs.unserializer = NULL; assert(list_attrOk(l)); return 0; } /* setting list properties */ int list_attributes_comparator(list_t *restrict l, element_comparator comparator_fun) { if (l == NULL) return -1; l->attrs.comparator = comparator_fun; assert(list_attrOk(l)); return 0; } int list_attributes_keymaker(list_t *restrict l, element_keymaker keymaker_fun) { if (l == NULL) return -1; l->attrs.keymaker = keymaker_fun; assert(list_attrOk(l)); return 0; } int list_attributes_seeker(list_t *restrict l, element_seeker seeker_fun) { if (l == NULL) return -1; l->attrs.seeker = seeker_fun; assert(list_attrOk(l)); return 0; } int list_attributes_copy(list_t *restrict l, element_meter metric_fun, int copy_data) { if (l == NULL || (metric_fun == NULL && copy_data != 0)) return -1; l->attrs.meter = metric_fun; l->attrs.copy_data = copy_data; assert(list_attrOk(l)); return 0; } int list_attributes_hash_computer(list_t *restrict l, element_hash_computer hash_computer_fun) { if (l == NULL) return -1; l->attrs.hasher = hash_computer_fun; assert(list_attrOk(l)); return 0; } int list_attributes_serializer(list_t *restrict l, element_serializer serializer_fun) { if (l == NULL) return -1; l->attrs.serializer = serializer_fun; assert(list_attrOk(l)); return 0; } int list_attributes_unserializer(list_t *restrict l, element_unserializer unserializer_fun) { if (l == NULL) return -1; l->attrs.unserializer = unserializer_fun; assert(list_attrOk(l)); return 0; } int list_append(list_t *restrict l, const void *data) { return list_insert_at(l, data, l->numels); } int list_prepend(list_t *restrict l, const void *data) { return list_insert_at(l, data, 0); } void *list_fetch(list_t *restrict l) { return list_extract_at(l, 0); } void *list_get_at(const list_t *restrict l, unsigned int pos) { struct list_entry_s *tmp; tmp = list_findpos(l, pos); return (tmp != NULL ? tmp->data : NULL); } void *list_get_max(const list_t *restrict l) { return list_get_minmax(l, +1); } void *list_get_min(const list_t *restrict l) { return list_get_minmax(l, -1); } /* REQUIRES {list->numels >= 1} * return the min (versus < 0) or max value (v > 0) in l */ static void *list_get_minmax(const list_t *restrict l, int versus) { void *curminmax; struct list_entry_s *s; if (l->attrs.comparator == NULL || l->numels == 0) return NULL; curminmax = l->head_sentinel->next->data; for (s = l->head_sentinel->next->next; s != l->tail_sentinel; s = s->next) { if (l->attrs.comparator(curminmax, s->data) * versus > 0) curminmax = s->data; } return curminmax; } /* set tmp to point to element at index posstart in l */ static inline struct list_entry_s *list_findpos(const list_t *restrict l, int posstart) { struct list_entry_s *ptr; float x; int i; /* accept 1 slot overflow for fetching head and tail sentinels */ if (posstart < -1 || posstart > (int)l->numels) return NULL; if (l->numels == 0) { /* fetching either head (-1) or tail (0) sentinels */ if (posstart == -1) return l->head_sentinel; return l->tail_sentinel; } x = (float)(posstart+1) / l->numels; if (x <= 0.25) { /* first quarter: get to posstart from head */ for (i = -1, ptr = l->head_sentinel; i < posstart; ptr = ptr->next, i++); } else if (x < 0.5) { /* second quarter: get to posstart from mid */ for (i = (l->numels-1)/2, ptr = l->mid; i > posstart; ptr = ptr->prev, i--); } else if (x <= 0.75) { /* third quarter: get to posstart from mid */ for (i = (l->numels-1)/2, ptr = l->mid; i < posstart; ptr = ptr->next, i++); } else { /* fourth quarter: get to posstart from tail */ for (i = l->numels, ptr = l->tail_sentinel; i > posstart; ptr = ptr->prev, i--); } return ptr; } void *list_extract_at(list_t *restrict l, unsigned int pos) { struct list_entry_s *tmp; void *data; if (l->iter_active || pos >= l->numels) return NULL; tmp = list_findpos(l, pos); data = tmp->data; tmp->data = NULL; /* save data from list_drop_elem() free() */ list_drop_elem(l, tmp, pos); l->numels--; assert(list_repOk(l)); return data; } int list_insert_at(list_t *restrict l, const void *data, unsigned int pos) { struct list_entry_s *lent, *succ, *prec; if (l->iter_active || pos > l->numels) return -1; /* this code optimizes malloc() with a free-list */ if (l->spareelsnum > 0) { lent = l->spareels[l->spareelsnum-1]; l->spareelsnum--; } else { lent = (struct list_entry_s *)malloc(sizeof(struct list_entry_s)); if (lent == NULL) return -1; } if (l->attrs.copy_data) { /* make room for user' data (has to be copied) */ size_t datalen = l->attrs.meter(data); lent->data = (struct list_entry_s *)malloc(datalen); memcpy(lent->data, data, datalen); } else { lent->data = (void*)data; } /* actually append element */ prec = list_findpos(l, pos-1); succ = prec->next; prec->next = lent; lent->prev = prec; lent->next = succ; succ->prev = lent; l->numels++; /* fix mid pointer */ if (l->numels == 1) { /* first element, set pointer */ l->mid = lent; } else if (l->numels % 2) { /* now odd */ if (pos >= (l->numels-1)/2) l->mid = l->mid->next; } else { /* now even */ if (pos <= (l->numels-1)/2) l->mid = l->mid->prev; } assert(list_repOk(l)); return 1; } int list_delete(list_t *restrict l, const void *data) { int pos, r; pos = list_locate(l, data); if (pos < 0) return -1; r = list_delete_at(l, pos); if (r < 0) return -1; assert(list_repOk(l)); return 0; } int list_delete_at(list_t *restrict l, unsigned int pos) { struct list_entry_s *delendo; if (l->iter_active || pos >= l->numels) return -1; delendo = list_findpos(l, pos); list_drop_elem(l, delendo, pos); l->numels--; assert(list_repOk(l)); return 0; } int list_delete_range(list_t *restrict l, unsigned int posstart, unsigned int posend) { struct list_entry_s *lastvalid, *tmp, *tmp2; unsigned int i; int movedx; unsigned int numdel, midposafter; if (l->iter_active || posend < posstart || posend >= l->numels) return -1; tmp = list_findpos(l, posstart); /* first el to be deleted */ lastvalid = tmp->prev; /* last valid element */ numdel = posend - posstart + 1; midposafter = (l->numels-1-numdel)/2; midposafter = midposafter < posstart ? midposafter : midposafter+numdel; movedx = midposafter - (l->numels-1)/2; if (movedx > 0) { /* move right */ for (i = 0; i < (unsigned int)movedx; l->mid = l->mid->next, i++); } else { /* move left */ movedx = -movedx; for (i = 0; i < (unsigned int)movedx; l->mid = l->mid->prev, i++); } assert(posstart == 0 || lastvalid != l->head_sentinel); i = posstart; if (l->attrs.copy_data) { /* also free element data */ for (; i <= posend; i++) { tmp2 = tmp; tmp = tmp->next; if (tmp2->data != NULL) free(tmp2->data); if (l->spareelsnum < SIMCLIST_MAX_SPARE_ELEMS) { l->spareels[l->spareelsnum++] = tmp2; } else { free(tmp2); } } } else { /* only free containers */ for (; i <= posend; i++) { tmp2 = tmp; tmp = tmp->next; if (l->spareelsnum < SIMCLIST_MAX_SPARE_ELEMS) { l->spareels[l->spareelsnum++] = tmp2; } else { free(tmp2); } } } assert(i == posend+1 && (posend != l->numels || tmp == l->tail_sentinel)); lastvalid->next = tmp; tmp->prev = lastvalid; l->numels -= posend - posstart + 1; assert(list_repOk(l)); return 0; } int list_clear(list_t *restrict l) { struct list_entry_s *s; if (l->iter_active) return -1; if (l->attrs.copy_data) { /* also free user data */ /* spare a loop conditional with two loops: spareing elems and freeing elems */ for (s = l->head_sentinel->next; l->spareelsnum < SIMCLIST_MAX_SPARE_ELEMS && s != l->tail_sentinel; s = s->next) { /* move elements as spares as long as there is room */ if (s->data != NULL) free(s->data); l->spareels[l->spareelsnum++] = s; } while (s != l->tail_sentinel) { /* free the remaining elems */ if (s->data != NULL) free(s->data); s = s->next; free(s->prev); } l->head_sentinel->next = l->tail_sentinel; l->tail_sentinel->prev = l->head_sentinel; } else { /* only free element containers */ /* spare a loop conditional with two loops: spareing elems and freeing elems */ for (s = l->head_sentinel->next; l->spareelsnum < SIMCLIST_MAX_SPARE_ELEMS && s != l->tail_sentinel; s = s->next) { /* move elements as spares as long as there is room */ l->spareels[l->spareelsnum++] = s; } while (s != l->tail_sentinel) { /* free the remaining elems */ s = s->next; free(s->prev); } l->head_sentinel->next = l->tail_sentinel; l->tail_sentinel->prev = l->head_sentinel; } l->numels = 0; l->mid = NULL; assert(list_repOk(l)); return 0; } unsigned int list_size(const list_t *restrict l) { return l->numels; } int list_empty(const list_t *restrict l) { return (l->numels == 0); } int list_locate(const list_t *restrict l, const void *data) { struct list_entry_s *el; int pos = 0; if (l->attrs.comparator != NULL) { /* use comparator */ for (el = l->head_sentinel->next; el != l->tail_sentinel; el = el->next, pos++) { if (l->attrs.comparator(data, el->data) == 0) break; } } else { /* compare references */ for (el = l->head_sentinel->next; el != l->tail_sentinel; el = el->next, pos++) { if (el->data == data) break; } } if (el == l->tail_sentinel) return -1; return pos; } void *list_seek(list_t *restrict l, const void *indicator) { const struct list_entry_s *iter; if (l->attrs.seeker == NULL) return NULL; for (iter = l->head_sentinel->next; iter != l->tail_sentinel; iter = iter->next) { if (l->attrs.seeker(iter->data, indicator) != 0) return iter->data; } return NULL; } int list_contains(const list_t *restrict l, const void *data) { return (list_locate(l, data) >= 0); } int list_concat(const list_t *l1, const list_t *l2, list_t *restrict dest) { struct list_entry_s *el, *srcel; unsigned int cnt; int err; if (l1 == NULL || l2 == NULL || dest == NULL || l1 == dest || l2 == dest) return -1; list_init(dest); dest->numels = l1->numels + l2->numels; if (dest->numels == 0) return 0; /* copy list1 */ srcel = l1->head_sentinel->next; el = dest->head_sentinel; while (srcel != l1->tail_sentinel) { el->next = (struct list_entry_s *)malloc(sizeof(struct list_entry_s)); el->next->prev = el; el = el->next; el->data = srcel->data; srcel = srcel->next; } dest->mid = el; /* approximate position (adjust later) */ /* copy list 2 */ srcel = l2->head_sentinel->next; while (srcel != l2->tail_sentinel) { el->next = (struct list_entry_s *)malloc(sizeof(struct list_entry_s)); el->next->prev = el; el = el->next; el->data = srcel->data; srcel = srcel->next; } el->next = dest->tail_sentinel; dest->tail_sentinel->prev = el; /* fix mid pointer */ err = l2->numels - l1->numels; if ((err+1)/2 > 0) { /* correct pos RIGHT (err-1)/2 moves */ err = (err+1)/2; for (cnt = 0; cnt < (unsigned int)err; cnt++) dest->mid = dest->mid->next; } else if (err/2 < 0) { /* correct pos LEFT (err/2)-1 moves */ err = -err/2; for (cnt = 0; cnt < (unsigned int)err; cnt++) dest->mid = dest->mid->prev; } assert(!(list_repOk(l1) && list_repOk(l2)) || list_repOk(dest)); return 0; } int list_sort(list_t *restrict l, int versus) { if (l->iter_active || (l->attrs.comparator == NULL && l->attrs.keymaker == NULL)) /* cannot modify list in the middle of an iteration */ return -1; if (l->numels <= 1) return 0; list_sort_quicksort(l, versus, 0, l->head_sentinel->next, l->numels-1, l->tail_sentinel->prev); assert(list_repOk(l)); return 0; } #ifdef SIMCLIST_WITH_THREADS struct list_sort_wrappedparams { list_t *restrict l; int versus; unsigned int first, last; struct list_entry_s *fel, *lel; }; static void *list_sort_quicksort_threadwrapper(void *wrapped_params) { struct list_sort_wrappedparams *wp = (struct list_sort_wrappedparams *)wrapped_params; list_sort_quicksort(wp->l, wp->versus, wp->first, wp->fel, wp->last, wp->lel); free(wp); pthread_exit(NULL); return NULL; } #endif static inline int el_compare(const list_t *l, const void *a, const void *b) { if (l->attrs.keymaker != NULL) { /* keymaker function available */ long int na, nb; na = l->attrs.keymaker(a); nb = l->attrs.keymaker(b); return (na - nb) - (nb - na); } /* use comparator function */ assert(l->comparator != NULL); return l->attrs.comparator(a, b); } static inline void list_sort_selectionsort(list_t *restrict l, int versus, unsigned int first, struct list_entry_s *fel, unsigned int last, struct list_entry_s *lel) { struct list_entry_s *cursor, *toswap, *firstunsorted; void *tmpdata; if (last <= first) /* <= 1-element lists are always sorted */ return; for (firstunsorted = fel; firstunsorted != lel; firstunsorted = firstunsorted->next) { /* find min or max in the remainder of the list */ for (toswap = firstunsorted, cursor = firstunsorted->next; cursor != lel->next; cursor = cursor->next) if (el_compare(l, toswap->data, cursor->data) * -versus > 0) toswap = cursor; if (toswap != firstunsorted) { /* swap firstunsorted with toswap */ tmpdata = firstunsorted->data; firstunsorted->data = toswap->data; toswap->data = tmpdata; } } } static void list_sort_quicksort(list_t *restrict l, int versus, unsigned int first, struct list_entry_s *fel, unsigned int last, struct list_entry_s *lel) { unsigned int pivotid; unsigned int i; register struct list_entry_s *pivot; struct list_entry_s *left, *right; void *tmpdata; #ifdef SIMCLIST_WITH_THREADS pthread_t tid; int traised; #endif if (last <= first) /* <= 1-element lists are always sorted */ return; if (last - first+1 <= SIMCLIST_MINQUICKSORTELS) { list_sort_selectionsort(l, versus, first, fel, last, lel); return; } /* base of iteration: one element list */ if (! (last > first)) return; pivotid = (get_random() % (last - first + 1)); /* pivotid = (last - first + 1) / 2; */ /* find pivot */ if (pivotid < (last - first + 1)/2) { for (i = 0, pivot = fel; i < pivotid; pivot = pivot->next, i++); } else { for (i = last - first, pivot = lel; i > pivotid; pivot = pivot->prev, i--); } /* smaller PIVOT bigger */ left = fel; right = lel; /* iterate --- left ---> PIV <--- right --- */ while (left != pivot && right != pivot) { for (; left != pivot && (el_compare(l, left->data, pivot->data) * -versus <= 0); left = left->next); /* left points to a smaller element, or to pivot */ for (; right != pivot && (el_compare(l, right->data, pivot->data) * -versus >= 0); right = right->prev); /* right points to a bigger element, or to pivot */ if (left != pivot && right != pivot) { /* swap, then move iterators */ tmpdata = left->data; left->data = right->data; right->data = tmpdata; left = left->next; right = right->prev; } } /* now either left points to pivot (end run), or right */ if (right == pivot) { /* left part longer */ while (left != pivot) { if (el_compare(l, left->data, pivot->data) * -versus > 0) { tmpdata = left->data; left->data = pivot->prev->data; pivot->prev->data = pivot->data; pivot->data = tmpdata; pivot = pivot->prev; pivotid--; if (pivot == left) break; } else { left = left->next; } } } else { /* right part longer */ while (right != pivot) { if (el_compare(l, right->data, pivot->data) * -versus < 0) { /* move current right before pivot */ tmpdata = right->data; right->data = pivot->next->data; pivot->next->data = pivot->data; pivot->data = tmpdata; pivot = pivot->next; pivotid++; if (pivot == right) break; } else { right = right->prev; } } } /* sort sublists A and B : |---A---| pivot |---B---| */ #ifdef SIMCLIST_WITH_THREADS traised = 0; if (pivotid > 0) { /* prepare wrapped args, then start thread */ if (l->threadcount < SIMCLIST_MAXTHREADS-1) { struct list_sort_wrappedparams *wp = (struct list_sort_wrappedparams *)malloc(sizeof(struct list_sort_wrappedparams)); l->threadcount++; traised = 1; wp->l = l; wp->versus = versus; wp->first = first; wp->fel = fel; wp->last = first+pivotid-1; wp->lel = pivot->prev; if (pthread_create(&tid, NULL, list_sort_quicksort_threadwrapper, wp) != 0) { free(wp); traised = 0; list_sort_quicksort(l, versus, first, fel, first+pivotid-1, pivot->prev); } } else { list_sort_quicksort(l, versus, first, fel, first+pivotid-1, pivot->prev); } } if (first + pivotid < last) list_sort_quicksort(l, versus, first+pivotid+1, pivot->next, last, lel); if (traised) { pthread_join(tid, (void **)NULL); l->threadcount--; } #else if (pivotid > 0) list_sort_quicksort(l, versus, first, fel, first+pivotid-1, pivot->prev); if (first + pivotid < last) list_sort_quicksort(l, versus, first+pivotid+1, pivot->next, last, lel); #endif } int list_iterator_start(list_t *restrict l) { if (l->iter_active) return 0; l->iter_pos = 0; l->iter_active = 1; l->iter_curentry = l->head_sentinel->next; return 1; } void *list_iterator_next(list_t *restrict l) { void *toret; if (! l->iter_active) return NULL; toret = l->iter_curentry->data; l->iter_curentry = l->iter_curentry->next; l->iter_pos++; return toret; } int list_iterator_hasnext(const list_t *restrict l) { if (! l->iter_active) return 0; return (l->iter_pos < l->numels); } int list_iterator_stop(list_t *restrict l) { if (! l->iter_active) return 0; l->iter_pos = 0; l->iter_active = 0; return 1; } int list_hash(const list_t *restrict l, list_hash_t *restrict hash) { struct list_entry_s *x; list_hash_t tmphash; assert(hash != NULL); tmphash = l->numels * 2 + 100; if (l->attrs.hasher == NULL) { #ifdef SIMCLIST_ALLOW_LOCATIONBASED_HASHES /* ENABLE WITH CARE !! */ #warning "Memlocation-based hash is consistent only for testing modification in the same program run." int i; /* only use element references */ for (x = l->head_sentinel->next; x != l->tail_sentinel; x = x->next) { for (i = 0; i < sizeof(x->data); i++) { tmphash += (tmphash ^ (uintptr_t)x->data); } tmphash += tmphash % l->numels; } #else return -1; #endif } else { /* hash each element with the user-given function */ for (x = l->head_sentinel->next; x != l->tail_sentinel; x = x->next) { tmphash += tmphash ^ l->attrs.hasher(x->data); tmphash +=* hash % l->numels; } } *hash = tmphash; return 0; } #ifndef SIMCLIST_NO_DUMPRESTORE int list_dump_getinfo_filedescriptor(int fd, list_dump_info_t *restrict info) { int32_t terminator_head, terminator_tail; uint32_t elemlen; off_t hop; /* version */ READ_ERRCHECK(fd, & info->version, sizeof(info->version)); info->version = ntohs(info->version); if (info->version > SIMCLIST_DUMPFORMAT_VERSION) { errno = EILSEQ; return -1; } /* timestamp */ READ_ERRCHECK(fd, & info->timestamp, sizeof(info->timestamp)); info->timestamp = hton64(info->timestamp); /* list terminator (to check thereafter) */ READ_ERRCHECK(fd, & terminator_head, sizeof(terminator_head)); terminator_head = ntohl(terminator_head); /* list size */ READ_ERRCHECK(fd, & info->list_size, sizeof(info->list_size)); info->list_size = ntohl(info->list_size); /* number of elements */ READ_ERRCHECK(fd, & info->list_numels, sizeof(info->list_numels)); info->list_numels = ntohl(info->list_numels); /* length of each element (for checking for consistency) */ READ_ERRCHECK(fd, & elemlen, sizeof(elemlen)); elemlen = ntohl(elemlen); /* list hash */ READ_ERRCHECK(fd, & info->list_hash, sizeof(info->list_hash)); info->list_hash = ntohl(info->list_hash); /* check consistency */ if (elemlen > 0) { /* constant length, hop by size only */ hop = info->list_size; } else { /* non-constant length, hop by size + all element length blocks */ hop = info->list_size + elemlen*info->list_numels; } if (lseek(fd, hop, SEEK_CUR) == -1) { return -1; } /* read the trailing value and compare with terminator_head */ READ_ERRCHECK(fd, & terminator_tail, sizeof(terminator_tail)); terminator_tail = ntohl(terminator_tail); if (terminator_head == terminator_tail) info->consistent = 1; else info->consistent = 0; return 0; } int list_dump_getinfo_file(const char *restrict filename, list_dump_info_t *restrict info) { int fd, ret; fd = open(filename, O_RDONLY, 0); if (fd < 0) return -1; ret = list_dump_getinfo_filedescriptor(fd, info); close(fd); return ret; } int list_dump_filedescriptor(const list_t *restrict l, int fd, size_t *restrict len) { struct list_entry_s *x; void *ser_buf; uint32_t bufsize; struct timeval timeofday; struct list_dump_header_s header; if (l->attrs.meter == NULL && l->attrs.serializer == NULL) { errno = ENOTTY; return -1; } /**** DUMP FORMAT **** [ ver timestamp | totlen numels elemlen hash | DATA ] where DATA can be: @ for constant-size list (element size is constant; elemlen > 0) [ elem elem ... elem ] @ for other lists (element size dictated by element_meter each time; elemlen <= 0) [ size elem size elem ... size elem ] all integers are encoded in NETWORK BYTE FORMAT *****/ /* prepare HEADER */ /* version */ header.ver = htons( SIMCLIST_DUMPFORMAT_VERSION ); /* timestamp */ gettimeofday(&timeofday, NULL); header.timestamp = (int64_t)timeofday.tv_sec * 1000000 + (int64_t)timeofday.tv_usec; header.timestamp = hton64(header.timestamp); header.rndterm = htonl((int32_t)get_random()); /* total list size is postprocessed afterwards */ /* number of elements */ header.numels = htonl(l->numels); /* include an hash, if possible */ if (l->attrs.hasher != NULL) { if (htonl(list_hash(l, & header.listhash)) != 0) { /* could not compute list hash! */ return -1; } } else { header.listhash = htonl(0); } header.totlistlen = header.elemlen = 0; /* leave room for the header at the beginning of the file */ if (lseek(fd, SIMCLIST_DUMPFORMAT_HEADERLEN, SEEK_SET) < 0) { /* errno set by lseek() */ return -1; } /* write CONTENT */ if (l->numels > 0) { /* SPECULATE that the list has constant element size */ if (l->attrs.serializer != NULL) { /* user user-specified serializer */ /* get preliminary length of serialized element in header.elemlen */ ser_buf = l->attrs.serializer(l->head_sentinel->next->data, & header.elemlen); free(ser_buf); /* request custom serialization of each element */ for (x = l->head_sentinel->next; x != l->tail_sentinel; x = x->next) { ser_buf = l->attrs.serializer(x->data, &bufsize); header.totlistlen += bufsize; if (header.elemlen != 0) { /* continue on speculation */ if (header.elemlen != bufsize) { free(ser_buf); /* constant element length speculation broken! */ header.elemlen = 0; header.totlistlen = 0; x = l->head_sentinel; if (lseek(fd, SIMCLIST_DUMPFORMAT_HEADERLEN, SEEK_SET) < 0) { /* errno set by lseek() */ return -1; } /* restart from the beginning */ continue; } /* speculation confirmed */ WRITE_ERRCHECK(fd, ser_buf, bufsize); } else { /* speculation found broken */ WRITE_ERRCHECK(fd, & bufsize, sizeof(size_t)); WRITE_ERRCHECK(fd, ser_buf, bufsize); } free(ser_buf); } } else if (l->attrs.meter != NULL) { header.elemlen = (uint32_t)l->attrs.meter(l->head_sentinel->next->data); /* serialize the element straight from its data */ for (x = l->head_sentinel->next; x != l->tail_sentinel; x = x->next) { bufsize = l->attrs.meter(x->data); header.totlistlen += bufsize; if (header.elemlen != 0) { if (header.elemlen != bufsize) { /* constant element length speculation broken! */ header.elemlen = 0; header.totlistlen = 0; x = l->head_sentinel; /* restart from the beginning */ continue; } WRITE_ERRCHECK(fd, x->data, bufsize); } else { WRITE_ERRCHECK(fd, &bufsize, sizeof(size_t)); WRITE_ERRCHECK(fd, x->data, bufsize); } } } /* adjust endianness */ header.elemlen = htonl(header.elemlen); header.totlistlen = htonl(header.totlistlen); } /* write random terminator */ WRITE_ERRCHECK(fd, & header.rndterm, sizeof(header.rndterm)); /* list terminator */ /* write header */ lseek(fd, 0, SEEK_SET); WRITE_ERRCHECK(fd, & header.ver, sizeof(header.ver)); /* version */ WRITE_ERRCHECK(fd, & header.timestamp, sizeof(header.timestamp)); /* timestamp */ WRITE_ERRCHECK(fd, & header.rndterm, sizeof(header.rndterm)); /* random terminator */ WRITE_ERRCHECK(fd, & header.totlistlen, sizeof(header.totlistlen)); /* total length of elements */ WRITE_ERRCHECK(fd, & header.numels, sizeof(header.numels)); /* number of elements */ WRITE_ERRCHECK(fd, & header.elemlen, sizeof(header.elemlen)); /* size of each element, or 0 for independent */ WRITE_ERRCHECK(fd, & header.listhash, sizeof(header.listhash)); /* list hash, or 0 for "ignore" */ /* possibly store total written length in "len" */ if (len != NULL) { *len = sizeof(header) + ntohl(header.totlistlen); } return 0; } int list_restore_filedescriptor(list_t *restrict l, int fd, size_t *restrict len) { struct list_dump_header_s header; unsigned long cnt; void *buf; uint32_t elsize, totreadlen, totmemorylen; memset(& header, 0, sizeof(header)); /* read header */ /* version */ READ_ERRCHECK(fd, &header.ver, sizeof(header.ver)); header.ver = ntohs(header.ver); if (header.ver != SIMCLIST_DUMPFORMAT_VERSION) { errno = EILSEQ; return -1; } /* timestamp */ READ_ERRCHECK(fd, & header.timestamp, sizeof(header.timestamp)); /* list terminator */ READ_ERRCHECK(fd, & header.rndterm, sizeof(header.rndterm)); header.rndterm = ntohl(header.rndterm); /* total list size */ READ_ERRCHECK(fd, & header.totlistlen, sizeof(header.totlistlen)); header.totlistlen = ntohl(header.totlistlen); /* number of elements */ READ_ERRCHECK(fd, & header.numels, sizeof(header.numels)); header.numels = ntohl(header.numels); /* length of every element, or '0' = variable */ READ_ERRCHECK(fd, & header.elemlen, sizeof(header.elemlen)); header.elemlen = ntohl(header.elemlen); /* list hash, or 0 = 'ignore' */ READ_ERRCHECK(fd, & header.listhash, sizeof(header.listhash)); header.listhash = ntohl(header.listhash); /* read content */ totreadlen = totmemorylen = 0; if (header.elemlen > 0) { /* elements have constant size = header.elemlen */ if (l->attrs.unserializer != NULL) { /* use unserializer */ buf = malloc(header.elemlen); for (cnt = 0; cnt < header.numels; cnt++) { READ_ERRCHECK(fd, buf, header.elemlen); list_append(l, l->attrs.unserializer(buf, & elsize)); totmemorylen += elsize; } } else { /* copy verbatim into memory */ for (cnt = 0; cnt < header.numels; cnt++) { buf = malloc(header.elemlen); READ_ERRCHECK(fd, buf, header.elemlen); list_append(l, buf); } totmemorylen = header.numels * header.elemlen; } totreadlen = header.numels * header.elemlen; } else { /* elements have variable size. Each element is preceded by its size */ if (l->attrs.unserializer != NULL) { /* use unserializer */ for (cnt = 0; cnt < header.numels; cnt++) { READ_ERRCHECK(fd, & elsize, sizeof(elsize)); buf = malloc((size_t)elsize); READ_ERRCHECK(fd, buf, elsize); totreadlen += elsize; list_append(l, l->attrs.unserializer(buf, & elsize)); totmemorylen += elsize; } } else { /* copy verbatim into memory */ for (cnt = 0; cnt < header.numels; cnt++) { READ_ERRCHECK(fd, & elsize, sizeof(elsize)); buf = malloc(elsize); READ_ERRCHECK(fd, buf, elsize); totreadlen += elsize; list_append(l, buf); } totmemorylen = totreadlen; } } READ_ERRCHECK(fd, &elsize, sizeof(elsize)); /* read list terminator */ elsize = ntohl(elsize); /* possibly verify the list consistency */ /* wrt hash */ /* don't do that if (header.listhash != 0 && header.listhash != list_hash(l)) { errno = ECANCELED; return -1; } */ /* wrt header */ if (totreadlen != header.totlistlen && (int32_t)elsize == header.rndterm) { errno = EPROTO; return -1; } /* wrt file */ if (lseek(fd, 0, SEEK_CUR) != lseek(fd, 0, SEEK_END)) { errno = EPROTO; return -1; } if (len != NULL) { *len = totmemorylen; } return 0; } int list_dump_file(const list_t *restrict l, const char *restrict filename, size_t *restrict len) { int fd; size_t sizetoret; fd = open(filename, O_RDWR | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); if (fd < 0) return -1; sizetoret = list_dump_filedescriptor(l, fd, len); close(fd); return sizetoret; } int list_restore_file(list_t *restrict l, const char *restrict filename, size_t *restrict len) { int fd; size_t totdata; fd = open(filename, O_RDONLY, 0); if (fd < 0) return -1; totdata = list_restore_filedescriptor(l, fd, len); close(fd); return totdata; } #endif /* ifndef SIMCLIST_NO_DUMPRESTORE */ static int list_drop_elem(list_t *restrict l, struct list_entry_s *tmp, unsigned int pos) { if (tmp == NULL) return -1; /* fix mid pointer. This is wrt the PRE situation */ if (l->numels % 2) { /* now odd */ /* sort out the base case by hand */ if (l->numels == 1) l->mid = NULL; else if (pos >= l->numels/2) l->mid = l->mid->prev; } else { /* now even */ if (pos < l->numels/2) l->mid = l->mid->next; } tmp->prev->next = tmp->next; tmp->next->prev = tmp->prev; /* free what's to be freed */ if (l->attrs.copy_data && tmp->data != NULL) free(tmp->data); if (l->spareelsnum < SIMCLIST_MAX_SPARE_ELEMS) { l->spareels[l->spareelsnum++] = tmp; } else { free(tmp); } return 0; } /* ready-made comparators and meters */ #define SIMCLIST_NUMBER_COMPARATOR(type) int list_comparator_##type(const void *a, const void *b) { return( *(type *)a < *(type *)b) - (*(type *)a > *(type *)b); } SIMCLIST_NUMBER_COMPARATOR(int8_t) SIMCLIST_NUMBER_COMPARATOR(int16_t) SIMCLIST_NUMBER_COMPARATOR(int32_t) SIMCLIST_NUMBER_COMPARATOR(int64_t) SIMCLIST_NUMBER_COMPARATOR(uint8_t) SIMCLIST_NUMBER_COMPARATOR(uint16_t) SIMCLIST_NUMBER_COMPARATOR(uint32_t) SIMCLIST_NUMBER_COMPARATOR(uint64_t) SIMCLIST_NUMBER_COMPARATOR(float) SIMCLIST_NUMBER_COMPARATOR(double) int list_comparator_string(const void *a, const void *b) { return strcmp((const char *)b, (const char *)a); } /* ready-made metric functions */ #define SIMCLIST_METER(type) size_t list_meter_##type(const void *el) { if (el) { /* kill compiler whinge */ } return sizeof(type); } SIMCLIST_METER(int8_t) SIMCLIST_METER(int16_t) SIMCLIST_METER(int32_t) SIMCLIST_METER(int64_t) SIMCLIST_METER(uint8_t) SIMCLIST_METER(uint16_t) SIMCLIST_METER(uint32_t) SIMCLIST_METER(uint64_t) SIMCLIST_METER(float) SIMCLIST_METER(double) size_t list_meter_string(const void *el) { return strlen((const char *)el) + 1; } /* ready-made hashing functions */ #define SIMCLIST_HASHCOMPUTER(type) list_hash_t list_hashcomputer_##type(const void *el) { return (list_hash_t)(*(type *)el); } SIMCLIST_HASHCOMPUTER(int8_t) SIMCLIST_HASHCOMPUTER(int16_t) SIMCLIST_HASHCOMPUTER(int32_t) SIMCLIST_HASHCOMPUTER(int64_t) SIMCLIST_HASHCOMPUTER(uint8_t) SIMCLIST_HASHCOMPUTER(uint16_t) SIMCLIST_HASHCOMPUTER(uint32_t) SIMCLIST_HASHCOMPUTER(uint64_t) SIMCLIST_HASHCOMPUTER(float) SIMCLIST_HASHCOMPUTER(double) list_hash_t list_hashcomputer_string(const void *el) { size_t l; list_hash_t hash = 123; const char *str = (const char *)el; char plus; for (l = 0; str[l] != '\0'; l++) { if (l) plus = hash ^ str[l]; else plus = hash ^ (str[l] - str[0]); hash += (plus << (CHAR_BIT * (l % sizeof(list_hash_t)))); } return hash; } #ifndef NDEBUG static int list_repOk(const list_t *restrict l) { int ok, i; struct list_entry_s *s; ok = (l != NULL) && ( /* head/tail checks */ (l->head_sentinel != NULL && l->tail_sentinel != NULL) && (l->head_sentinel != l->tail_sentinel) && (l->head_sentinel->prev == NULL && l->tail_sentinel->next == NULL) && /* empty list */ (l->numels > 0 || (l->mid == NULL && l->head_sentinel->next == l->tail_sentinel && l->tail_sentinel->prev == l->head_sentinel)) && /* spare elements checks */ l->spareelsnum <= SIMCLIST_MAX_SPARE_ELEMS ); if (!ok) return 0; if (l->numels >= 1) { /* correct referencing */ for (i = -1, s = l->head_sentinel; i < (int)(l->numels-1)/2 && s->next != NULL; i++, s = s->next) { if (s->next->prev != s) break; } ok = (i == (int)(l->numels-1)/2 && l->mid == s); if (!ok) return 0; for (; s->next != NULL; i++, s = s->next) { if (s->next->prev != s) break; } ok = (i == (int)l->numels && s == l->tail_sentinel); } return ok; } static int list_attrOk(const list_t *restrict l) { int ok; ok = (l->attrs.copy_data == 0 || l->attrs.meter != NULL); return ok; } #endif sshguard-2.3.1/src/common/sandbox.h000644 001751 001751 00000000723 13405336127 020111 0ustar00kevinzkevinz000000 000000 #pragma once #include "config.h" #if defined(CAPSICUM) # if defined(HAVE_SYS_CAPSICUM_H) # include # elif defined(HAVE_SYS_CAPABILITY_H) # include # endif #endif static inline void sandbox_init() { #ifdef CAPSICUM if (cap_enter() != 0) { perror("Could not enter capability mode"); } #endif #ifdef __OpenBSD__ if (pledge("dns stdio", NULL) != 0) { perror("Could not pledge"); } #endif } sshguard-2.3.1/src/parser/tests.txt000644 001751 001751 00000042624 13411746556 020227 0ustar00kevinzkevinz000000 000000 #### SSH Invalid user inexu from 6.6.6.0 100 6.6.6.0 4 10 M Invalid user inexu from 2001:db8::a11:beef:7ac0 100 2001:db8::a11:beef:7ac0 6 10 M Invalid user inexu from 2001:db8::a11:beef:7ac0%abcdefgh1234567 100 2001:db8::a11:beef:7ac0 6 10 M User mario from 6.6.6.0 not allowed because XYZ 100 6.6.6.0 4 10 M ROOT LOGIN REFUSED FROM 6.6.6.0 port 14423 100 6.6.6.0 4 10 M ROOT LOGIN REFUSED FROM 2001:db8::a11:beef:7ac1 port 14423 100 2001:db8::a11:beef:7ac1 6 10 M ROOT LOGIN REFUSED FROM 1.2.3.4 port 14423 [preauth] 100 1.2.3.4 4 10 M ROOT LOGIN REFUSED FROM 2001:db8::a11:beef:7ac1 port 14423 [preauth] 100 2001:db8::a11:beef:7ac1 6 10 M User mario from 2001:db8::a11:beef:7ac0 not allowed because XYZ 100 2001:db8::a11:beef:7ac0 6 10 M User mario from 2001:db8::a11:beef:7ac0%lo not allowed because XYZ 100 2001:db8::a11:beef:7ac0 6 10 M Failed XYZ for XYZ from 6.6.6.0 port 14423 ssh2 100 6.6.6.0 4 10 M Failed XYZ for XYZ from 2001:db8::a11:beef:7ac0 port 14423 ssh2 100 2001:db8::a11:beef:7ac0 6 10 M Failed XYZ for XYZ from 2001:db8::a11:beef:7ac1 port 14423 ssh2: ED25519 SHA256:0123456789ABCDEF+/0123456789ABCDEF+/0123456 100 2001:db8::a11:beef:7ac1 6 10 M Failed XYZ for XYZ from 1.2.3.4 port 14423 ssh2: ECDSA sha256:0123456789abcdef+/0123456789abcdef+/0123456 100 1.2.3.4 4 10 M Failed XYZ for XYZ from 2001:db8::a11:beef:7ac1 port 14423 ssh2: rsa MD5:01:23:45:67:89:AB:CD:EF:01:23:45:67:89:AB:CD:EF 100 2001:db8::a11:beef:7ac1 6 10 M Failed XYZ for XYZ from 1.2.3.4 port 14423 ssh2: dsa md5:01:23:45:67:89:ab:cd:ef:01:23:45:67:89:ab:cd:ef 100 1.2.3.4 4 10 M Failed XYZ for XYZ from 2001:db8::a11:beef:7ac0%enp3s0 port 14423 ssh2 100 2001:db8::a11:beef:7ac0 6 10 M fatal: Unable to negotiate with 6.6.6.6 port 2222: no matching key exchange method found. Their offer: diffie-hellman-group14-sha1 100 6.6.6.6 4 10 M error: PAM: authentication failure for mario from 6.6.6.0 100 6.6.6.0 4 10 M error: PAM: authentication failure for mario from 2001:db8::a11:beef:7ac0 100 2001:db8::a11:beef:7ac0 6 10 M error: PAM: authentication failure for mario from 2001:db8::a11:beef:7ac0%vbr1 100 2001:db8::a11:beef:7ac0 6 10 M error: PAM: unknown user for illegal user mario from 6.6.6.6 100 6.6.6.6 4 10 M Did not receive identification string from 6.6.6.0 100 6.6.6.0 4 10 M Did not receive identification string from 2001:db8::a11:beef:7ac0 100 2001:db8::a11:beef:7ac0 6 10 M Did not receive identification string from 2001:db8::a11:beef:7ac0%eth0 100 2001:db8::a11:beef:7ac0 6 10 M Bad protocol version identification XYZ from 6.6.6.0 100 6.6.6.0 4 10 M Bad protocol version identification XYZ from 2001:db8::a11:beef:7ac0 100 2001:db8::a11:beef:7ac0 6 10 M Apr 10 02:43:29 quasar sshd[50112]: Connection closed by 66.240.236.119 [preauth] 100 66.240.236.119 4 2 M Apr 10 02:43:29 quasar sshd[50112]: Connection closed by 2001:db8::a11:beef:7ac0 [preauth] 100 2001:db8::a11:beef:7ac0 6 2 M Apr 10 13:50:24 quasar sshd[53269]: error: Received disconnect from 95.9.156.208: 3: com.jcraft.jsch.JSchException: Auth fail [preauth] 100 95.9.156.208 4 10 M Apr 10 13:50:24 quasar sshd[53269]: error: Received disconnect from 2001:db8::a11:beef:7ac0: 3: com.jcraft.jsch.JSchException: Auth fail [preauth] 100 2001:db8::a11:beef:7ac0 6 10 M Apr 10 06:55:42 quasar sshd[50880]: Received disconnect from 130.207.203.56: 11: These aren't the droids we're looking for. [preauth] 100 130.207.203.56 4 10 M Apr 10 06:55:42 quasar sshd[50880]: Received disconnect from 2001:db8::a11:beef:7ac0: 11: These aren't the droids we're looking for. [preauth] 100 2001:db8::a11:beef:7ac0 6 10 M Apr 9 13:24:07 quasar sshd[44787]: Received disconnect from 103.237.33.58: 11: Bye Bye [preauth] 100 103.237.33.58 4 10 M Apr 9 13:24:07 quasar sshd[44787]: Received disconnect from 2001:db8::a11:beef:7ac0: 11: Bye Bye [preauth] 100 2001:db8::a11:beef:7ac0 6 10 M 2015-05-27T04:31:27.46667 auth.info: Invalid user admin from 192.168.2.1 100 192.168.2.1 4 10 M 2015-05-27T04:31:27.46667 auth.info: Invalid user admin from 2001:db8::a11:beef:7ac0 100 2001:db8::a11:beef:7ac0 6 10 M Jun 20 02:18:39 vps auth.info sshd[13482]: Invalid user admin from 192.168.2.2 100 192.168.2.2 4 10 M Jun 20 02:18:39 vps auth.info sshd[13482]: Invalid user admin from 2001:db8::a11:beef:7ac0 100 2001:db8::a11:beef:7ac0 6 10 M May 29 14:44:30 epsilon sshd[4564]: error: Received disconnect from 192.168.2.200: 14: No supported authentication methods available [preauth] 100 192.168.2.200 4 10 M May 29 14:44:30 epsilon sshd[4564]: error: Received disconnect from 2001:db8::a11:beef:7ac0: 14: No supported authentication methods available [preauth] 100 2001:db8::a11:beef:7ac0 6 10 M error: maximum authentication attempts exceeded for root from 117.81.26.226 port 4919 ssh2 [preauth] 100 117.81.26.226 4 10 M error: maximum authentication attempts exceeded for root from 2001:db8::a11:beef:7ac0 port 4919 ssh2 [preauth] 100 2001:db8::a11:beef:7ac0 6 10 M Invalid user support from 190.50.238.98 port 32836 100 190.50.238.98 4 10 M Invalid user support from 2001:db8::a11:beef:7ac0 port 32836 100 2001:db8::a11:beef:7ac0 6 10 M Failed password for invalid user admin from 172.22.10.15 port 39065 ssh2 100 172.22.10.15 4 10 M Failed password for invalid user admin from 2001:db8::a11:beef:7ac1 port 39065 ssh2 100 2001:db8::a11:beef:7ac1 6 10 M Jul 4 13:55:09 karpov sshd[64301]: Disconnecting invalid user user 10.42.42.42 port 38987: Change of username or service not allowed: (user,ssh-connection) -> (manager,ssh-connection) [preauth] 100 10.42.42.42 4 10 M Dec 1 06:25:27 server sshd[19956]: Accepted publickey for User from 1.2.3.4 port 21563 ssh2: RSA SHA256:... * M Dec 1 06:25:27 server sshd[19471]: Received disconnect from 1.2.3.4 port 60058:11: disconnected by user * M Dec 1 06:25:27 server sshd[19471]: Disconnected from 1.2.3.4 port 60058 * M #### Remote SSHGuard Attack from "2001:db8::a11:beef:456e" on service 100 with danger 10. 110 2001:db8::a11:beef:456e 6 10 M Attack from "192.68.18.1" on service 100 with danger 10. 110 192.68.18.1 4 10 M Blocking "192.68.18.2/32" for 300 secs (3 attacks in 5 secs, after 1 abuses over 5 secs.) 110 192.68.18.2 4 10 M Blocking "2001:db8::a11:beef:456f/64" for 300 secs (3 attacks in 5 secs, after 1 abuses over 5 secs.) 110 2001:db8::a11:beef:456f 6 10 M #### Mail authentication failure XYZ 6.6.6.0 230 6.6.6.0 4 10 M authentication failure XYZ 2001:db8::a11:beef:7ac0 230 2001:db8::a11:beef:7ac0 6 10 M authenticator failed for XYZ [6.6.6.0]:14432 I=XYZ : 535 Incorrect authentication data (set_id=test) 240 6.6.6.0 4 10 M authenticator failed for XYZ [2001:db8::a11:beef:7ac0]:14432 I=XYZ : 535 Incorrect authentication data (set_id=test) 240 2001:db8::a11:beef:7ac0 6 10 M SMTP protocol error in "AUTH LOGIN" H=(XYZ) [6.6.6.0] AUTH command used when not advertised 240 6.6.6.0 4 10 M SMTP protocol error in "AUTH LOGIN" H=(XYZ) [2001:db8::a11:beef:7ac0] AUTH command used when not advertised 240 2001:db8::a11:beef:7ac0 6 10 M SMTP protocol error in "AUTH LOGIN" H=(XYZ) [6.6.6.0] LOGIN authentication mechanism not supported 240 6.6.6.0 4 10 M SMTP protocol error in "AUTH LOGIN" H=(XYZ) [2001:db8::a11:beef:7ac0] LOGIN authentication mechanism not supported 240 2001:db8::a11:beef:7ac0 6 10 M 2018-06-03 13:16:08 SMTP protocol error in "AUTH LOGIN" H=(mail.example.com) [123.24.161.123] AUTH command used when not advertised: 1 Time(s) 240 123.24.161.123 4 10 M 2018-06-03 13:35:07 SMTP protocol error in "AUTH LOGIN" H=dynamic-186-31-81-98.dynamic.etb.net.co (mail.example.com) [186.31.81.98] AUTH command used when not advertised: 1 Time(s) 240 186.31.81.98 4 10 M Relaying denied. IP name lookup failed [6.6.6.0] 250 6.6.6.0 4 10 M Relaying denied. IP name lookup failed [2001:db8::a11:beef:7ac0] 250 2001:db8::a11:beef:7ac0 6 10 M imap-login: Aborted login (auth failed, 6 attempts): XYZ rip=6.6.6.0, lip=127.0.0.1 210 6.6.6.0 4 10 M imap-login: Aborted login (auth failed, 6 attempts): XYZ rip=2001:db8::a11:beef:7ac0, lip=127.0.0.1 210 2001:db8::a11:beef:7ac0 6 10 M Login failed user=XYZ auth=XYZ host=XYZ [6.6.6.0] 200 6.6.6.0 4 10 M Login failed user=XYZ auth=XYZ host=XYZ [2001:db8::a11:beef:7ac0] 200 2001:db8::a11:beef:7ac0 6 10 M badlogin: XYZ [6.6.6.0] XYZ SASL XYZ checkpass failed 220 6.6.6.0 4 10 M badlogin: XYZ [2001:db8::a11:beef:7ac0] XYZ SASL XYZ checkpass failed 220 2001:db8::a11:beef:7ac0 6 10 M Oct 19 19:56:07 longbeach postfix/smtpd[2309]: warning: unknown[199.19.110.207]: SASL LOGIN authentication failed: UGFzc3dvcmQ6 260 199.19.110.207 4 10 M Oct 19 19:56:07 longbeach postfix/smtpd[2309]: warning: unknown[2001:db8::a11:beef:7ac0]: SASL LOGIN authentication failed: UGFzc3dvcmQ6 260 2001:db8::a11:beef:7ac0 6 10 M 2015-03-12 03:17:22 login authenticator failed for vps.o2c.net (User) [87.76.31.6]: 535 Incorrect authentication data (set_id=dog) 240 87.76.31.6 4 10 M 2015-03-12 03:17:22 login authenticator failed for vps.o2c.net (User) [2001:db8::a11:beef:7ac0]: 535 Incorrect authentication data (set_id=dog) 240 2001:db8::a11:beef:7ac0 6 10 M 1999-03-02 09:44:33 expanded_prompt_plain authenticator failed for (test.host) [10.0.0.1] U=CALLER: 535 Incorrect authentication data (set_id=userx) 240 10.0.0.1 4 10 M 1999-03-02 09:44:33 expanded_prompt_plain authenticator failed for (test.host) [2001:db8::a11:beef:7ac0] U=CALLER: 535 Incorrect authentication data (set_id=userx) 240 2001:db8::a11:beef:7ac0 6 10 M Dec 13 09:32:50 marcos postfix/smtpd[24754]: lost connection after AUTH from rrcs-24-213-217-114.nys.biz.rr.com[24.213.217.114] 260 24.213.217.114 4 10 M Dec 13 09:32:50 marcos postfix/smtpd[24754]: lost connection after AUTH from rrcs-24-213-217-114.nys.biz.rr.com[2001:db8::a11:beef:7ac0] 260 2001:db8::a11:beef:7ac0 6 10 M Jun 20 16:46:17 ares postgrey[919]: action=greylist, reason=early-retry (295s missing), client_name=r244.mail.kbc.be, client_address=172.82.231.244, sender=bounce@mail.kbc.be, recipient=lilydehoux@zeelandned.nl 260 172.82.231.244 4 10 M 38dd06274cde1fd7 smtp event=failed-command address=185.236.202.133 host=no-mans-land.m247.com command="AUTH LOGIN" result="503 5.5.1 Invalid command: Command not supported" 270 185.236.202.133 4 10 M 45addba89269aeaa smtp event=failed-command address=128.237.183.69 host=zeta.wv.cc.cmu.edu command="AUTH PLAIN (...)" result="535 Authentication failed" 270 128.237.183.69 4 10 M 2018-06-03 13:16:08 SMTP protocol error in "AUTH LOGIN" H=(mail.example.com) [123.24.161.123] AUTH command used when not advertised: 1 Time(s) 240 123.24.161.123 4 10 M imaps TLS negotiation failed: [196.52.43.55] 220 196.52.43.55 4 10 M imaps TLS negotiation failed: [2001:470:df49:2:9df9:4e98:31e1:1720] 220 2001:470:df49:2:9df9:4e98:31e1:1720 6 10 M STARTTLS negotiation failed: [196.52.43.55] 220 196.52.43.55 4 10 M STARTTLS negotiation failed: [2001:470:df49:2:9df9:4e98:31e1:1720] 220 2001:470:df49:2:9df9:4e98:31e1:1720 6 10 M Jun 24 15:34:21 mail imapd: LOGIN FAILED, user=fakeemail@example.com, ip=[1.2.3.4] 280 1.2.3.4 4 10 M Jun 24 15:34:21 mail imapd: LOGIN FAILED, user=fakeemail@example.com, ip=[2001:470:df49:2:9df9:4e98:31e1:1720] 280 2001:470:df49:2:9df9:4e98:31e1:1720 6 10 M Jun 24 15:34:21 mail imapd: LOGIN FAILED, user=fakeemail@example.com, ip=[::ffff:121.226.61.81] 280 121.226.61.81 4 10 M Jun 24 11:53:25 mail pop3d: LOGIN FAILED, user=britton, ip=[1.2.3.4] 280 1.2.3.4 4 10 M Jun 24 11:53:25 mail pop3d: LOGIN FAILED, user=britton, ip=[2001:470:df49:2:9df9:4e98:31e1:1720] 280 2001:470:df49:2:9df9:4e98:31e1:1720 6 10 M Jun 24 11:53:25 mail pop3d: LOGIN FAILED, user=britton, ip=[::ffff:121.226.61.81] 280 121.226.61.81 4 10 M Nov 20 04:12:45 mail imapd-ssl[20815]: LOGIN FAILED, method=PLAIN, ip=[::ffff:177.19.165.26] 280 177.19.165.26 4 10 M #### FTP FTP LOGIN FAILED FROM 6.6.6.0, XYZ 300 6.6.6.0 4 10 M FTP LOGIN FAILED FROM 2001:db8::a11:beef:7ac0, XYZ 300 2001:db8::a11:beef:7ac0 6 10 M foo.com (foo.com [6.6.6.0]) XYZ no such user XYZ 310 6.6.6.0 4 10 M foo.com (foo.com [2001:db8::a11:beef:7ac0]) XYZ no such user XYZ 310 2001:db8::a11:beef:7ac0 6 10 M (XYZ@6.6.6.0) [WARNING] Authentication failed for user XYZ 320 6.6.6.0 4 10 M (XYZ@2001:db8::a11:beef:7ac0) [WARNING] Authentication failed for user XYZ 320 2001:db8::a11:beef:7ac0 6 10 M XYZ FAIL LOGIN: Client "6.6.6.0" 330 6.6.6.0 4 10 M XYZ FAIL LOGIN: Client "2001:db8::a11:beef:7ac0" 330 2001:db8::a11:beef:7ac0 6 10 M #### Cockpit pam_unix(cockpit:auth): authentication failure; logname= uid=0 euid=0 tty= ruser= rhost=172.22.10.15 user=jeff 340 172.22.10.15 4 10 M pam_unix(cockpit:auth): authentication failure; logname= uid=0 euid=0 tty= ruser= rhost=2001:db8::a11:beef:7ac0 user=root 340 2001:db8::a11:beef:7ac0 6 10 M pam_unix(cockpit:auth): authentication failure; logname= uid=0 euid=0 tty= ruser= rhost=172.22.10.15 340 172.22.10.15 4 10 M pam_unix(cockpit:auth): authentication failure; logname= uid=0 euid=0 tty= ruser= rhost=2001:db8::a11:beef:7ac1 340 2001:db8::a11:beef:7ac1 6 10 M pam_unix(cockpit:auth): authentication failure; logname= uid=0 euid=0 tty= ruser= rhost=172.22.10.15 user=jeff 340 172.22.10.15 4 10 M pam_unix(cockpit:auth): authentication failure; logname= uid=0 euid=0 tty= ruser= rhost=2001:db8::a11:beef:7ac1 user=jeff 340 2001:db8::a11:beef:7ac1 6 10 M #### OpenVPN Sep 04 00:00:06 hostname openvpn[23718]: 54.183.149.10:34791 TLS Error: TLS handshake failed 400 54.183.149.10 4 10 M Sep 04 00:00:06 hostname openvpn[23718]: [2001:db8::a11:beef:7ac0]:34791 TLS Error: TLS handshake failed 400 2001:db8::a11:beef:7ac0 6 10 M #### Web 10.42.42.39 - "jeff" [19/Apr/1943:03:14:13 +0000] "GET /secret-base HTTP/1.1" 401 356 "EvilAgent/2.0" 350 10.42.42.39 4 10 M 10.42.42.40 - - [19/Apr/1943:03:14:10 +0000] "GET /wp-login.php HTTP/1.1" 404 1 "-" "Mozilla/5.0" 360 10.42.42.40 4 10 M 10.42.42.41 - - [19/Apr/1943:03:14:11 +0000] "GET /wp-admin.php HTTP/1" 401 - "-" "Mozilla/5.0" 360 10.42.42.41 4 10 M 10.42.42.42 - - [19/Apr/1943:03:14:12 +0000] "GET /wordress/wp-login.php HTTP/2.0" 404 2571 "-" "Mozilla/5.0" "extra-field" "more-data" 360 10.42.42.42 4 10 M 10.42.42.43 - - [19/Apr/1943:03:14:13 +0000] "GET /roundcube HTTP/1.1" 410 3 360 10.42.42.43 4 10 M 2001:db8::a11:beef:7aa0 - - [19/Apr/1943:03:14:14 +0000] "GET /roundcube HTTP/2.0" 403 0 "-" "Mozilla/4.0" 360 2001:db8::a11:beef:7aa0 6 10 M 10.42.42.44 - - [19/Apr/1943:03:14:15 +0000] "GET /wp-login.php HTTP/1.1" 404 56 "-" 360 10.42.42.44 4 10 M 2001:db8::a11:beef:7aa1 - - [19/Apr/1943:03:14:14 +0000] "GET /roundcube HTTP/2.0" 404 - 360 2001:db8::a11:beef:7aa1 6 10 M 10.42.42.45 - - [19/Apr/1943:03:14:17 +0000] "GET /roundcube/ HTTP/2.0" 410 - "-" "Mozilla/4.0" 360 10.42.42.45 4 10 M 2001:db8::a11:b2ef:78f2 - - [19/Apr/1943:03:14:11 +0000] "POST /wordpress/wp-login.php HTTP/1.1" 200 781 "-" "Googlebot" 370 2001:db8::a11:b2ef:78f2 6 10 M 10.42.57.1 - - [19/Apr/1943:03:14:10 +0000] "POST /wp-login.php HTTP/1.1" 200 1056 370 10.42.57.1 4 10 M 2001:db8::a11:beef:7aa2 - - [19/Apr/1943:03:14:11 +0000] "POST /wordpress/wp-login.php HTTP/1.1" 200 781 "-" "Googlebot" 370 2001:db8::a11:beef:7aa2 6 10 M 192.68.11.1 - - [19/Apr/1943:03:14:11 +0000] "POST /wordpress/wp-login.php HTTP/1.1" 200 781 "-" "Googlebot" 370 192.68.11.1 4 10 M 192.68.11.1 - - [19/Apr/1943:03:14:12 +0000] "POST /wp/wp-login.php HTTP/1.1" 200 - "-" "Mozilla/5.0" 370 192.68.11.1 4 10 M 2001:db8::a11:beef:7aa3 - "admin" [19/Apr/1943:03:14:13 +0000] "GET /admin/system HTTP/1.1" 401 - 350 2001:db8::a11:beef:7aa3 6 10 M reverse mapping checking getaddrinfo for XYZ [6.6.6.0] XYZ POSSIBLE BREAK-IN ATTEMPT! * M 10.42.42.40 - - [19/Apr/1943:03:14:15 +0000] "GET / HTTP/1.1" 401 314 "-" "Mozilla/5.0" * M 2001:db8::a11:beef:7ac0 - - [19/Apr/1943:03:14:15 +0000] "GET / HTTP/2.0" 301 401 "-" "Mozilla/5.0" * M 10.42.42.42 - - [19/Apr/1943:03:14:15 +0000] "GET / HTTP/2.0" 301 401 314 "-" "Mozilla/5.0" * M 10.42.42.44 - [19/Apr/1943:03:14:15 +0000] "GET / HTTP/2.0" 301 401 314 "-" "Mozilla/5.0" * M 10.42.42.45 - - [19/Apr/1943:03:14:15 +0000] "GET wp-login.php HTTP/1.1" 200 "-" "Mozilla/5.0" * M 10.42.42.46 - - [19/Apr/1943:03:14:15 +0000] "GET /wp-login.php HTTP/1.1" 200 "-" "Mozilla/5.0" * M 10.42.42.47 - - [19/Apr/1943:03:14:15 +0000] "POST /wp-login.php HTTP/1.1" 302 200 "-" "Mozilla/5.0" * M 10.42.42.48 - - [19/Apr/1943:03:14:15 +0000] "GET /wp-login.php HTTP/1.1" 301 201 "-" "Mozilla/5.0" * M 2001:db8::a11:beef:7ac1 - - [19/Apr/1943:03:14:15 +0000] "POST /wp-login.php HTTP/1.1" 302 201 "-" "Mozilla/5.0" * M 10.42.42.49 - - [19/Apr/1943:03:14:15 +0000] "GET /wp-login.php HTTP/1.1" 302 200 "-" "Mozilla/5.0" * M 10.42.42.50 - - [19/Apr/1943:03:14:15 +0000] "GET roundcube HTTP/1.1" 200 "-" "Mozilla/4.0" * M 10.42.42.51 - - [19/Apr/1943:03:14:15 +0000] "GET /roundcube HTTP/1.1" 200 "-" "Mozilla/4.0" * M 10.42.42.52 - - [19/Apr/1943:03:14:15 +0000] "GET /roundcube HTTP/1.1" 301 200 "-" "Mozilla/4.0" * M 10.42.42.53 - - [19/Apr/1943:03:14:15 +0000] "GET /roundcube HTTP/1.1" 301 201 "-" "Mozilla/4.0" "extra-field" "more-data" * M 2001:db8::a11:beef:7ac2 - - [19/Apr/1943:03:14:15 +0000] "GET /roundcube/ HTTP/1.1" 200 "-" "Mozilla/4.0" * M 10.42.42.54 - - [19/Apr/1943:03:14:15 +0000] "GET /roundcube/ HTTP/1.1" 301 200 "-" "Mozilla/4.0" * M 10.42.42.55 - - [19/Apr/1943:03:14:15 +0000] "GET /roundcube/ HTTP/1.1" 301 201 "-" "Mozilla/4.0" * M 10.42.42.56 - - [19/Apr/1943:03:14:15 +0000] "GET /somewhere HTTP/1.1" 200 "https://example.com/wp-admin.php" "Mozilla/5.0" * M # Greedy SYSLOG_BANNER token (#93) 2018-06-26 13:22:02.108781500 Failed password for woold from 10.10.10.76 port 34718 ssh2 100 10.10.10.76 4 10 M # macOS log format (#106) 2018-12-20 10:09:05.180218+0000 localhost sshd[67566]: Invalid user git from 185.52.1.9 port 35968 100 185.52.1.9 4 10 M # OpenSSH 7 (#81) Dec 29 16:48:56 xxx sshd[24924]: Did not receive identification string from 5.20.95.202 port 56452 100 5.20.95.202 4 10 M sshguard-2.3.1/src/parser/attack_parser.y000644 001751 001751 00000025216 13411746453 021333 0ustar00kevinzkevinz000000 000000 %{ /* * Copyright (c) 2007,2008,2009,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #include #include "parser.h" #define DEFAULT_ATTACKS_DANGEROUSNESS 10 /* stuff exported by the scanner */ extern void scanner_init(); extern void scanner_fin(); extern int yylex(); static void yyerror(attack_t *, const char *); %} %parse-param { attack_t *attack } /* %pure-parser */ %start text %union { char *str; int num; } /* semantic values for tokens */ %token IPv4 IPv6 HOSTADDR WORD %token INTEGER SYSLOG_BANNER_PID SOCKLOG_BANNER_PID BUSYBOX_SYSLOG_BANNER_PID /* flat tokens */ %token SYSLOG_BANNER TIMESTAMP_SYSLOG TIMESTAMP_ISO8601 TIMESTAMP_TAI64 AT_TIMESTAMP_TAI64 METALOG_BANNER SOCKLOG_BANNER %token REPETITIONS %token HTTP_REQUEST HTTP_VERSION HTTP_REDIRECT HTTP_AUTHFAIL HTTP_CLIERROR %token HTTP_BOTSEARCH_WEBMAIL HTTP_BOTSEARCH_PHPMYADMIN HTTP_BOTSEARCH_WORDPRESS HTTP_BOTSEARCH /* ssh */ %token SSH_INVALUSERPREF SSH_NOTALLOWEDPREF SSH_NOTALLOWEDSUFF %token SSH_LOGINERR_PREF SSH_LOGINERR_PAM %token SSH_VIA %token SSH_MAXAUTH %token SSH_ADDR_SUFF %token SSH_NOIDENTIFSTR SSH_BADPROTOCOLIDENTIF SSH_BADPROTOCOLIDENTIF_SUFF %token SSH_BADKEX_PREF SSH_BADKEX_SUFF %token SSH_DISCONNECT_PREF SSH_CONNECTION_CLOSED SSH_PREAUTH_SUFF /* SSHGuard */ %token SSHGUARD_ATTACK_PREF SSHGUARD_ATTACK_SUFF %token SSHGUARD_BLOCK_PREF SSHGUARD_BLOCK_SUFF /* dovecot */ %token DOVECOT_IMAP_LOGINERR_PREF DOVECOT_IMAP_LOGINERR_SUFF /* uwimap */ %token UWIMAP_LOGINERR /* cyrus-imap */ %token CYRUSIMAP_SASL_LOGINERR_PREF CYRUSIMAP_SASL_LOGINERR_SUFF %token CYRUSIMAP_TLS_ERR_PREF /* cucipop */ %token CUCIPOP_AUTHFAIL /* exim */ %token EXIM_ESMTP_AUTHFAIL_PREF EXIM_ESMTP_AUTHFAIL_SUFF %token EXIM_ESMTP_LOGINFAIL_PREF EXIM_ESMTP_LOGINFAIL_SUFF /* sendmail */ %token SENDMAIL_RELAYDENIED_PREF SENDMAIL_RELAYDENIED_SUFF %token SENDMAIL_AUTHFAILURE_PREF SENDMAIL_AUTHFAILURE_SUFF /* postfix */ %token POSTFIX_NO_AUTH_PREF POSTFIX_SASL_LOGINERR_PREF POSTFIX_SASL_LOGINERR_SUFF %token POSTFIX_GREYLIST POSTFIX_GREYLIST_SUFF /* FreeBSD's FTPd */ %token FREEBSDFTPD_LOGINERR_PREF FREEBSDFTPD_LOGINERR_SUFF /* proFTPd */ %token PROFTPD_LOGINERR_PREF PROFTPD_LOGINERR_SUFF /* PureFTPd */ %token PUREFTPD_LOGINERR_PREF PUREFTPD_LOGINERR_SUFF /* vsftpd */ %token VSFTPD_LOGINERR_PREF VSFTPD_LOGINERR_SUFF /* cockpit */ %token COCKPIT_AUTHFAIL_PREF COCKPIT_AUTHFAIL_SUFF /* CLF request */ %token CLF_REQUEST_PREF /* CLF, unauhtorized */ %token CLF_UNAUTHOIRIZED_PREF CLF_UNAUTHOIRIZED_SUFF /* CLF, common webapp probes */ %token CLFWEBPROBES_BOTSEARCH_SUFF /* CLF, WordPress brute-force attacks */ %token CLF_WORDPRESS_SUFF /* OpenSMTPD */ %token OPENSMTPD_FAILED_CMD_PREF OPENSMTPD_AUTHFAIL_SUFF OPENSMTPD_UNSUPPORTED_CMD_SUFF /* courier */ %token COURIER_AUTHFAIL_PREF /* OpenVPN */ %token OPENVPN_TLS_ERR_SUFF %% /* log source */ text: syslogent | multilogent | metalogent | socklogent | busyboxent | logmsg ; /** BEGIN OF "LIBRARY" RULES **/ /* a syslog-generated log entry */ /* EFFECT: * - the target address is stored in attack->address.value * - the target address kind is stored in attack->address.kind */ syslogent: /* timestamp hostname procname[pid]: logmsg */ /*TIMESTAMP_SYSLOG hostname procname '[' INTEGER ']' ':' logmsg {*/ SYSLOG_BANNER_PID logmsg /*| TIMESTAMP_SYSLOG hostname procname ':' logmsg*/ | SYSLOG_BANNER logmsg | TIMESTAMP_ISO8601 logmsg /* some have different timestamps */ | TIMESTAMP_ISO8601 WORD logmsg /* handle different timestamp with proc name */ ; /* a multilog-generated log entry */ multilogent: AT_TIMESTAMP_TAI64 logmsg ; metalogent: METALOG_BANNER logmsg ; /* a socklog-generated log entry */ socklogent: SOCKLOG_BANNER_PID logmsg | SOCKLOG_BANNER logmsg ; /* a busybox syslog log entry */ busyboxent: BUSYBOX_SYSLOG_BANNER_PID logmsg ; /* the "payload" of a log entry: the oridinal message generated from a process */ logmsg: msg_single repetition_suffix ; repetition_suffix: | REPETITIONS ; msg_single: sshmsg { attack->service = SERVICES_SSH; } | sshguardmsg { attack->service = SERVICES_SSHGUARD; } | dovecotmsg { attack->service = SERVICES_DOVECOT; } | uwimapmsg { attack->service = SERVICES_UWIMAP; } | cyrusimapmsg { attack->service = SERVICES_CYRUSIMAP; } | cucipopmsg { attack->service = SERVICES_CUCIPOP; } | eximmsg { attack->service = SERVICES_EXIM; } | sendmailmsg { attack->service = SERVICES_SENDMAIL; } | postfixmsg { attack->service = SERVICES_POSTFIX; } | freebsdftpdmsg { attack->service = SERVICES_FREEBSDFTPD; } | proftpdmsg { attack->service = SERVICES_PROFTPD; } | pureftpdmsg { attack->service = SERVICES_PUREFTPD; } | vsftpdmsg { attack->service = SERVICES_VSFTPD; } | cockpitmsg { attack->service = SERVICES_COCKPIT; } | clfunauhtdmsg { attack->service = SERVICES_CLF_UNAUTH; } | clfwebprobesmsg { attack->service = SERVICES_CLF_PROBES; } | clfwordpressmsg { attack->service = SERVICES_CLF_WORDPRESS; } | opensmtpdmsg { attack->service = SERVICES_OPENSMTPD; } | couriermsg { attack->service = SERVICES_COURIER; } | openvpnmsg { attack->service = SERVICES_OPENVPN; } ; /* an address */ addr: IPv4 { attack->address.kind = ADDRKIND_IPv4; strcpy(attack->address.value, $1); } | IPv6 { attack->address.kind = ADDRKIND_IPv6; strcpy(attack->address.value, $1); free($1); } | IPv6 '%' WORD /* IPv6 address with interface name */ { attack->address.kind = ADDRKIND_IPv6; strcpy(attack->address.value, $1); free($1); } | HOSTADDR { if (!attack_from_hostname(attack, $1)) { YYABORT; } } ; /** END OF "LIBRARY" RULES **/ /* attack rules for SSHd */ sshmsg: /* login attempt from non-existent user, or from existent but non-allowed user */ ssh_illegaluser /* incorrect login attempt from valid and allowed user */ | ssh_authfail | ssh_noidentifstring | ssh_badprotocol | ssh_badkex ; ssh_illegaluser: /* nonexistent user */ SSH_INVALUSERPREF addr | SSH_INVALUSERPREF addr SSH_ADDR_SUFF /* existent, unallowed user */ | SSH_NOTALLOWEDPREF addr SSH_NOTALLOWEDSUFF ; ssh_authfail: SSH_LOGINERR_PREF addr SSH_ADDR_SUFF | SSH_LOGINERR_PAM addr | SSH_LOGINERR_PAM addr SSH_VIA | SSH_MAXAUTH addr SSH_ADDR_SUFF ; ssh_noidentifstring: SSH_NOIDENTIFSTR addr | SSH_NOIDENTIFSTR addr SSH_ADDR_SUFF | SSH_DISCONNECT_PREF addr SSH_PREAUTH_SUFF | SSH_CONNECTION_CLOSED addr SSH_PREAUTH_SUFF { attack->dangerousness = 2; } ; ssh_badprotocol: SSH_BADPROTOCOLIDENTIF addr SSH_BADPROTOCOLIDENTIF_SUFF ; ssh_badkex: SSH_BADKEX_PREF addr SSH_BADKEX_SUFF ; /* attacks and blocks from SSHGuard */ sshguardmsg: SSHGUARD_ATTACK_PREF addr SSHGUARD_ATTACK_SUFF | SSHGUARD_BLOCK_PREF addr SSHGUARD_BLOCK_SUFF ; /* attack rules for dovecot imap */ dovecotmsg: DOVECOT_IMAP_LOGINERR_PREF addr DOVECOT_IMAP_LOGINERR_SUFF ; /* attack rules for UWIMAP */ uwimapmsg: UWIMAP_LOGINERR '[' addr ']' ; cyrusimapmsg: CYRUSIMAP_SASL_LOGINERR_PREF addr CYRUSIMAP_SASL_LOGINERR_SUFF | CYRUSIMAP_TLS_ERR_PREF '[' addr ']' ; /* cucipop reports @addr@ tried to log in with wrong password */ cucipopmsg: CUCIPOP_AUTHFAIL addr ; /* */ eximmsg: EXIM_ESMTP_AUTHFAIL_PREF addr EXIM_ESMTP_AUTHFAIL_SUFF | EXIM_ESMTP_LOGINFAIL_PREF addr EXIM_ESMTP_LOGINFAIL_SUFF ; sendmailmsg: SENDMAIL_RELAYDENIED_PREF addr SENDMAIL_RELAYDENIED_SUFF | SENDMAIL_AUTHFAILURE_PREF addr SENDMAIL_AUTHFAILURE_SUFF; ; postfixmsg: POSTFIX_SASL_LOGINERR_PREF addr POSTFIX_SASL_LOGINERR_SUFF | POSTFIX_NO_AUTH_PREF addr ']' | POSTFIX_GREYLIST addr POSTFIX_GREYLIST_SUFF ; /* attack rules for FreeBSD's ftpd */ freebsdftpdmsg: FREEBSDFTPD_LOGINERR_PREF addr FREEBSDFTPD_LOGINERR_SUFF ; /* attack rules for ProFTPd */ proftpdmsg: PROFTPD_LOGINERR_PREF addr PROFTPD_LOGINERR_SUFF ; /* attack rules for Pure-FTPd */ pureftpdmsg: PUREFTPD_LOGINERR_PREF addr PUREFTPD_LOGINERR_SUFF ; /* attack rules for vsftpd */ vsftpdmsg: VSFTPD_LOGINERR_PREF addr VSFTPD_LOGINERR_SUFF ; /* attack rules for cockpit */ cockpitmsg: COCKPIT_AUTHFAIL_PREF addr COCKPIT_AUTHFAIL_SUFF | COCKPIT_AUTHFAIL_PREF addr ; /* attack rules for HTTP 401 Unauhtorized in common log format */ clfunauhtdmsg: addr CLF_UNAUTHOIRIZED_PREF CLF_UNAUTHOIRIZED_SUFF ; /* attack rules for probes for common web services */ clfwebprobesmsg: addr CLF_REQUEST_PREF CLFWEBPROBES_BOTSEARCH_SUFF ; /* attack rules against WordPress */ clfwordpressmsg: addr CLF_REQUEST_PREF CLF_WORDPRESS_SUFF ; /* opensmtpd */ opensmtpdmsg: OPENSMTPD_FAILED_CMD_PREF addr OPENSMTPD_AUTHFAIL_SUFF | OPENSMTPD_FAILED_CMD_PREF addr OPENSMTPD_UNSUPPORTED_CMD_SUFF ; /* attack rules for courier imap/pop */ couriermsg: COURIER_AUTHFAIL_PREF '[' addr ']' ; /* attack rules for openvpn */ openvpnmsg: addr OPENVPN_TLS_ERR_SUFF | '[' addr ']' OPENVPN_TLS_ERR_SUFF ; %% static void yyerror(__attribute__((unused)) attack_t *a, __attribute__((unused)) const char *s) { /* do nothing */ } int parse_line(char *str, attack_t *attack) { /* TODO: reduce danger for SERVICES_CLF_PROBES */ attack->dangerousness = DEFAULT_ATTACKS_DANGEROUSNESS; scanner_init(str); int ret = yyparse(attack); scanner_fin(); return ret; } sshguard-2.3.1/src/parser/attack_scanner.c000644 001751 001751 00022267133 13407005341 021441 0ustar00kevinzkevinz000000 000000 #line 3 "attack_scanner.c" #define YY_INT_ALIGNED short int /* A lexical scanner generated by flex */ /* %not-for-header */ /* %if-c-only */ /* %if-not-reentrant */ /* %endif */ /* %endif */ /* %ok-for-header */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 #define YY_FLEX_SUBMINOR_VERSION 37 #if YY_FLEX_SUBMINOR_VERSION > 0 #define FLEX_BETA #endif /* %if-c++-only */ /* %endif */ /* %if-c-only */ /* %endif */ /* %if-c-only */ /* %endif */ /* First, we deal with platform-specific or compiler-specific issues. */ #if defined(__FreeBSD__) #ifndef __STDC_LIMIT_MACROS #define __STDC_LIMIT_MACROS #endif #include #include #else #define __dead2 #endif /* begin standard C headers. */ /* %if-c-only */ #include #include #include #include /* %endif */ /* %if-tables-serialization */ /* %endif */ /* end standard C headers. */ /* %if-c-or-c++ */ /* flex integer type definitions */ #ifndef FLEXINT_H #define FLEXINT_H /* C99 systems have . Non-C99 systems may or may not. */ #if defined(__FreeBSD__) || \ (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, * if you want the limit (max/min) macros for int types. */ #ifndef __STDC_LIMIT_MACROS #define __STDC_LIMIT_MACROS 1 #endif #include typedef int8_t flex_int8_t; typedef uint8_t flex_uint8_t; typedef int16_t flex_int16_t; typedef uint16_t flex_uint16_t; typedef int32_t flex_int32_t; typedef uint32_t flex_uint32_t; #else typedef signed char flex_int8_t; typedef short int flex_int16_t; typedef int flex_int32_t; typedef unsigned char flex_uint8_t; typedef unsigned short int flex_uint16_t; typedef unsigned int flex_uint32_t; /* Limits of integral types. */ #ifndef INT8_MIN #define INT8_MIN (-128) #endif #ifndef INT16_MIN #define INT16_MIN (-32767-1) #endif #ifndef INT32_MIN #define INT32_MIN (-2147483647-1) #endif #ifndef INT8_MAX #define INT8_MAX (127) #endif #ifndef INT16_MAX #define INT16_MAX (32767) #endif #ifndef INT32_MAX #define INT32_MAX (2147483647) #endif #ifndef UINT8_MAX #define UINT8_MAX (255U) #endif #ifndef UINT16_MAX #define UINT16_MAX (65535U) #endif #ifndef UINT32_MAX #define UINT32_MAX (4294967295U) #endif #endif /* ! C99 */ #endif /* ! FLEXINT_H */ /* %endif */ /* %if-c++-only */ /* %endif */ #ifdef __cplusplus /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ /* C99 requires __STDC__ to be defined as 1. */ #if defined (__STDC__) #define YY_USE_CONST #endif /* defined (__STDC__) */ #endif /* ! __cplusplus */ #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif /* %not-for-header */ /* Returned upon end-of-file. */ #define YY_NULL 0 /* %ok-for-header */ /* %not-for-header */ /* Promotes a possibly negative, possibly signed char to an unsigned * integer for use as an array index. If the signed char is negative, * we want to instead treat it as an 8-bit unsigned char, hence the * double cast. */ #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) /* %ok-for-header */ /* %if-reentrant */ /* %endif */ /* %if-not-reentrant */ /* %endif */ /* Enter a start condition. This macro really ought to take a parameter, * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */ #define BEGIN (yy_start) = 1 + 2 * /* Translate the current start state into a value that can be later handed * to BEGIN to return to the state. The YYSTATE alias is for lex * compatibility. */ #define YY_START (((yy_start) - 1) / 2) #define YYSTATE YY_START /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) /* Special action meaning "start processing a new file". */ #define YY_NEW_FILE yyrestart(yyin ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ #ifndef YY_BUF_SIZE #define YY_BUF_SIZE 16384 #endif /* The state buf must be large enough to hold one state per character in the main buffer. */ #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) #ifndef YY_TYPEDEF_YY_BUFFER_STATE #define YY_TYPEDEF_YY_BUFFER_STATE typedef struct yy_buffer_state *YY_BUFFER_STATE; #endif #ifndef YY_TYPEDEF_YY_SIZE_T #define YY_TYPEDEF_YY_SIZE_T typedef size_t yy_size_t; #endif /* %if-not-reentrant */ extern yy_size_t yyleng; /* %endif */ /* %if-c-only */ /* %if-not-reentrant */ extern FILE *yyin, *yyout; /* %endif */ /* %endif */ #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 #define YY_LESS_LINENO(n) /* Return all but the first "n" matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ *yy_cp = (yy_hold_char); \ YY_RESTORE_YY_MORE_OFFSET \ (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) #define unput(c) yyunput( c, (yytext_ptr) ) #ifndef YY_STRUCT_YY_BUFFER_STATE #define YY_STRUCT_YY_BUFFER_STATE struct yy_buffer_state { /* %if-c-only */ FILE *yy_input_file; /* %endif */ /* %if-c++-only */ /* %endif */ char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ yy_size_t yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ yy_size_t yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ int yy_at_bol; int yy_bs_lineno; /**< The line count. */ int yy_bs_column; /**< The column count. */ /* Whether to try to fill the input buffer when we reach the * end of it. */ int yy_fill_buffer; int yy_buffer_status; #define YY_BUFFER_NEW 0 #define YY_BUFFER_NORMAL 1 /* When an EOF's been seen but there's still some text to process * then we mark the buffer as YY_EOF_PENDING, to indicate that we * shouldn't try reading from the input source any more. We might * still have a bunch of tokens to match, though, because of * possible backing-up. * * When we actually see the EOF, we change the status to "new" * (via yyrestart()), so that the user can continue scanning by * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 }; #endif /* !YY_STRUCT_YY_BUFFER_STATE */ /* %if-c-only Standard (non-C++) definition */ /* %not-for-header */ /* %if-not-reentrant */ /* Stack of input buffers. */ static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */ static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */ /* %endif */ /* %ok-for-header */ /* %endif */ /* We provide macros for accessing buffer states in case in the * future we want to put the buffer states in a more general * "scanner state". * * Returns the top of the stack, or NULL. */ #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \ ? (yy_buffer_stack)[(yy_buffer_stack_top)] \ : NULL) #define yy_current_buffer YY_CURRENT_BUFFER /* Same as previous macro, but useful when we know that the buffer stack is not * NULL or when we need an lvalue. For internal use only. */ #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)] /* %if-c-only Standard (non-C++) definition */ /* %if-not-reentrant */ /* %not-for-header */ /* yy_hold_char holds the character lost when yytext is formed. */ static char yy_hold_char; static yy_size_t yy_n_chars; /* number of characters read into yy_ch_buf */ yy_size_t yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = (char *) 0; static int yy_init = 0; /* whether we need to initialize */ static int yy_start = 0; /* start state number */ /* Flag which is used to allow yywrap()'s to do buffer switches * instead of setting up a fresh yyin. A bit of a hack ... */ static int yy_did_buffer_switch_on_eof; /* %ok-for-header */ /* %endif */ void yyrestart (FILE *input_file ); void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ); YY_BUFFER_STATE yy_create_buffer (FILE *file,int size ); void yy_delete_buffer (YY_BUFFER_STATE b ); void yy_flush_buffer (YY_BUFFER_STATE b ); void yypush_buffer_state (YY_BUFFER_STATE new_buffer ); void yypop_buffer_state (void ); static void yyensure_buffer_stack (void ); static void yy_load_buffer_state (void ); static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ); #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER ) YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size ); YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str ); YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,yy_size_t len ); /* %endif */ void *yyalloc (yy_size_t ); void *yyrealloc (void *,yy_size_t ); void yyfree (void * ); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! YY_CURRENT_BUFFER ){ \ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer(yyin,YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! YY_CURRENT_BUFFER ){\ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer(yyin,YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) /* %% [1.0] yytext/yyin/yyout/yy_state_type/yylineno etc. def's & init go here */ /* Begin user sect3 */ #define yywrap() 1 #define YY_SKIP_YYWRAP #define FLEX_DEBUG typedef unsigned char YY_CHAR; FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; typedef int yy_state_type; extern int yylineno; int yylineno = 1; extern char yytext[]; /* %% [1.5] DFA */ /* %if-c-only Standard (non-C++) definition */ static yy_state_type yy_get_previous_state (void ); static yy_state_type yy_try_NUL_trans (yy_state_type current_state ); static int yy_get_next_buffer (void ); static void yy_fatal_error (yyconst char msg[] ) __dead2; /* %endif */ /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ #define YY_DO_BEFORE_ACTION \ (yytext_ptr) = yy_bp; \ /* %% [2.0] code to fiddle yytext and yyleng for yymore() goes here \ */\ yyleng = (size_t) (yy_cp - yy_bp); \ (yy_hold_char) = *yy_cp; \ *yy_cp = '\0'; \ /* %% [3.0] code to copy yytext_ptr to yytext[] goes here, if %array \ */\ if ( yyleng >= YYLMAX ) \ YY_FATAL_ERROR( "token too large, exceeds YYLMAX" ); \ yy_flex_strncpy( yytext, (yytext_ptr), yyleng + 1 ); \ (yy_c_buf_p) = yy_cp; /* %% [4.0] data tables for the DFA and the user's section 1 definitions go here */ #define YY_NUM_RULES 88 #define YY_END_OF_BUFFER 89 /* This struct is not used in this scanner, but its presence is necessary. */ struct yy_trans_info { flex_int32_t yy_verify; flex_int32_t yy_nxt; }; static yyconst flex_int16_t yy_accept[19008] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 87, 86, 86, 87, 87, 87, 87, 79, 79, 79, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 86, 86, 87, 25, 25, 86, 87, 86, 87, 87, 87, 87, 87, 87, 38, 40, 87, 52, 87, 87, 87, 87, 62, 86, 86, 0, 0, 86, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 0, 85, 85, 0, 85, 85, 85, 85, 85, 79, 0, 79, 79, 79, 79, 0, 0, 77, 0, 0, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 0, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 0, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 0, 0, 0, 86, 0, 0, 0, 0, 77, 25, 25, 25, 25, 25, 0, 86, 0, 0, 0, 0, 0, 77, 86, 0, 0, 0, 0, 0, 0, 0, 0, 40, 40, 40, 0, 52, 52, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 78, 78, 0, 0, 0, 0, 85, 0, 85, 85, 0, 0, 0, 0, 0, 85, 85, 0, 85, 85, 85, 85, 0, 0, 0, 0, 77, 0, 85, 0, 85, 85, 0, 79, 77, 79, 79, 0, 0, 0, 0, 77, 77, 77, 77, 0, 0, 0, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 0, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 77, 77, 77, 77, 25, 0, 0, 0, 0, 0, 0, 0, 77, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 40, 0, 52, 85, 54, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 0, 0, 0, 0, 0, 0, 85, 85, 0, 78, 78, 85, 85, 85, 0, 0, 0, 0, 0, 0, 85, 85, 85, 85, 85, 85, 0, 0, 0, 85, 85, 0, 0, 0, 0, 0, 0, 77, 77, 77, 77, 0, 85, 85, 85, 0, 0, 0, 0, 79, 77, 79, 0, 0, 0, 77, 77, 0, 77, 0, 77, 77, 77, 0, 0, 0, 0, 85, 0, 85, 85, 0, 85, 0, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 0, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 19, 85, 0, 0, 0, 0, 0, 0, 0, 77, 77, 0, 77, 0, 77, 77, 77, 25, 0, 0, 0, 0, 0, 0, 77, 77, 0, 77, 0, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 40, 0, 52, 85, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 85, 0, 0, 78, 78, 78, 85, 85, 85, 0, 0, 0, 0, 0, 85, 85, 85, 85, 85, 85, 85, 0, 0, 0, 0, 85, 85, 0, 0, 0, 0, 0, 0, 77, 0, 0, 77, 77, 77, 0, 77, 0, 77, 77, 77, 85, 85, 0, 0, 0, 0, 85, 79, 0, 0, 0, 0, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 0, 85, 0, 85, 85, 0, 85, 0, 85, 85, 85, 85, 85, 0, 85, 85, 0, 85, 85, 0, 0, 85, 85, 85, 85, 85, 85, 85, 85, 0, 85, 85, 0, 85, 19, 19, 19, 19, 19, 19, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 40, 0, 52, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 0, 0, 0, 0, 0, 0, 78, 85, 0, 0, 0, 0, 0, 0, 85, 0, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 77, 77, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 85, 0, 85, 85, 79, 0, 0, 55, 55, 0, 57, 77, 77, 77, 77, 77, 77, 0, 77, 0, 77, 77, 77, 77, 77, 0, 0, 0, 0, 0, 0, 85, 0, 85, 85, 0, 85, 0, 85, 0, 85, 0, 0, 0, 85, 85, 0, 85, 85, 0, 0, 0, 0, 0, 0, 85, 85, 85, 0, 85, 0, 85, 85, 0, 85, 85, 0, 85, 19, 19, 19, 19, 19, 19, 19, 19, 19, 85, 0, 0, 0, 0, 0, 0, 55, 0, 57, 77, 77, 77, 77, 77, 77, 0, 77, 0, 77, 77, 77, 77, 77, 25, 0, 0, 0, 0, 0, 55, 0, 57, 0, 77, 77, 77, 77, 77, 77, 0, 77, 0, 77, 77, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 40, 0, 52, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 78, 75, 75, 75, 75, 0, 85, 85, 85, 5, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 77, 77, 77, 0, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 77, 0, 77, 77, 77, 77, 77, 0, 85, 79, 0, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 0, 85, 0, 0, 0, 85, 0, 0, 0, 85, 85, 0, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 5, 85, 85, 85, 0, 85, 85, 13, 13, 13, 13, 13, 13, 85, 19, 19, 19, 19, 19, 19, 19, 19, 19, 85, 0, 16, 16, 0, 0, 0, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 64, 64, 0, 0, 42, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 40, 0, 52, 0, 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 75, 75, 75, 0, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 77, 77, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 85, 79, 0, 0, 0, 77, 77, 77, 77, 77, 77, 0, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 0, 0, 85, 85, 0, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 0, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 0, 0, 0, 85, 0, 85, 0, 0, 85, 0, 0, 0, 0, 0, 13, 13, 0, 85, 19, 19, 19, 19, 19, 19, 5, 19, 19, 0, 0, 16, 0, 0, 0, 0, 0, 77, 77, 77, 77, 77, 77, 0, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 25, 0, 0, 0, 0, 0, 0, 0, 0, 77, 77, 77, 77, 77, 77, 0, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 64, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 40, 0, 52, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 77, 77, 77, 0, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 85, 79, 0, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 85, 0, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 85, 0, 0, 0, 0, 85, 78, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 85, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 5, 0, 16, 0, 0, 0, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 77, 77, 77, 25, 0, 0, 0, 0, 0, 0, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 77, 77, 77, 64, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 40, 0, 0, 52, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 77, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 77, 77, 77, 0, 0, 85, 85, 79, 0, 0, 0, 77, 77, 77, 77, 77, 77, 0, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 77, 0, 0, 0, 0, 0, 0, 30, 85, 0, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 5, 0, 0, 0, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 23, 0, 0, 0, 77, 77, 77, 77, 77, 77, 0, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 77, 25, 0, 0, 0, 0, 0, 0, 0, 0, 77, 77, 77, 77, 77, 77, 0, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 77, 64, 0, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 40, 0, 0, 52, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 0, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 85, 85, 79, 84, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 5, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 5, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 84, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 77, 77, 77, 0, 0, 25, 0, 0, 0, 0, 84, 0, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 77, 77, 77, 0, 0, 64, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 40, 40, 0, 0, 52, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 77, 77, 0, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 77, 77, 77, 77, 77, 77, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 77, 77, 77, 0, 0, 85, 79, 0, 0, 77, 77, 77, 77, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 0, 0, 0, 0, 0, 0, 0, 0, 48, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 77, 77, 77, 77, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 77, 77, 77, 77, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 64, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 40, 40, 40, 0, 0, 52, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 85, 0, 0, 0, 0, 77, 0, 0, 77, 0, 77, 77, 0, 0, 77, 77, 77, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 5, 0, 0, 85, 0, 79, 0, 0, 77, 77, 77, 77, 77, 77, 77, 0, 77, 77, 77, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 0, 0, 0, 5, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 77, 77, 77, 77, 77, 77, 77, 0, 77, 77, 77, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 77, 77, 77, 77, 77, 77, 77, 0, 77, 77, 77, 0, 0, 64, 0, 0, 42, 0, 0, 0, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 40, 40, 0, 0, 52, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 77, 77, 0, 77, 77, 77, 77, 77, 0, 0, 77, 77, 77, 77, 77, 0, 77, 77, 77, 77, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 0, 77, 77, 77, 0, 0, 0, 85, 0, 79, 0, 0, 77, 77, 77, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 76, 76, 76, 76, 0, 0, 0, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 77, 77, 77, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 76, 76, 76, 76, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 77, 77, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 76, 76, 76, 76, 64, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 40, 40, 0, 52, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 85, 0, 0, 0, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 85, 0, 0, 79, 0, 0, 77, 77, 77, 77, 77, 0, 77, 77, 77, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 4, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 77, 77, 77, 77, 77, 0, 77, 77, 77, 76, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 77, 77, 77, 77, 0, 77, 77, 77, 76, 64, 0, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 40, 40, 0, 52, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 85, 0, 0, 0, 0, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 83, 0, 0, 83, 0, 0, 79, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 64, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 40, 0, 52, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 85, 0, 77, 77, 77, 77, 77, 77, 0, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 0, 83, 83, 0, 0, 0, 85, 0, 83, 83, 79, 0, 0, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 77, 77, 77, 77, 77, 77, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 0, 77, 77, 77, 77, 77, 77, 64, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 40, 0, 52, 0, 0, 0, 54, 0, 56, 56, 56, 56, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 85, 85, 83, 0, 83, 79, 0, 0, 77, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 77, 77, 77, 77, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 77, 77, 77, 64, 0, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 40, 0, 52, 0, 0, 0, 54, 0, 56, 56, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 83, 83, 0, 83, 83, 0, 0, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 25, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 40, 0, 52, 0, 0, 0, 54, 0, 56, 56, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 0, 0, 0, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 17, 17, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 25, 0, 27, 27, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 40, 0, 52, 0, 0, 0, 54, 0, 56, 56, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 66, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 61, 0, 0, 25, 61, 27, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 40, 0, 52, 0, 0, 0, 54, 0, 56, 56, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 0, 0, 0, 0, 0, 0, 0, 0, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 16, 0, 0, 27, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 64, 0, 0, 42, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 0, 0, 0, 0, 0, 0, 54, 0, 56, 56, 56, 61, 0, 0, 0, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 0, 0, 0, 0, 0, 0, 0, 0, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 85, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 5, 19, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 16, 0, 0, 27, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 27, 27, 27, 27, 27, 0, 0, 64, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 0, 0, 0, 0, 0, 0, 0, 56, 56, 0, 0, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 0, 0, 0, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 0, 0, 0, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 82, 82, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 0, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 32, 32, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 16, 0, 61, 27, 27, 27, 0, 0, 0, 27, 0, 0, 0, 61, 27, 27, 27, 0, 0, 64, 0, 0, 42, 0, 0, 0, 0, 61, 0, 61, 0, 0, 0, 40, 0, 0, 0, 0, 0, 0, 0, 56, 56, 0, 0, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 0, 0, 0, 0, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 0, 0, 66, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 0, 81, 81, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 73, 0, 0, 21, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 16, 0, 27, 27, 27, 0, 0, 0, 27, 27, 27, 27, 27, 0, 0, 0, 27, 27, 27, 0, 0, 64, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 40, 0, 0, 0, 0, 0, 0, 0, 56, 56, 0, 0, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 0, 0, 0, 0, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 0, 0, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 16, 0, 27, 27, 0, 61, 27, 27, 27, 0, 0, 0, 27, 27, 27, 0, 0, 61, 0, 0, 42, 61, 0, 0, 0, 0, 0, 0, 0, 40, 0, 0, 0, 0, 0, 0, 0, 56, 56, 0, 61, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 0, 0, 0, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 0, 0, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 4, 19, 19, 0, 0, 0, 0, 0, 10, 0, 27, 27, 0, 27, 27, 27, 0, 0, 0, 27, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 0, 0, 0, 0, 0, 0, 0, 56, 56, 0, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 0, 0, 61, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 0, 0, 0, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 10, 0, 27, 27, 0, 27, 27, 27, 0, 0, 0, 27, 27, 27, 0, 0, 0, 0, 0, 61, 0, 0, 0, 0, 0, 40, 0, 0, 0, 0, 0, 0, 0, 56, 56, 0, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 0, 0, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 0, 0, 0, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 19, 19, 19, 19, 19, 19, 10, 0, 27, 27, 0, 27, 27, 27, 0, 0, 0, 27, 27, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 40, 0, 0, 0, 0, 0, 0, 58, 56, 56, 0, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 61, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 0, 0, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 51, 32, 0, 0, 0, 0, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 19, 19, 19, 19, 19, 19, 10, 0, 27, 27, 0, 27, 27, 27, 0, 0, 0, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 40, 40, 0, 0, 0, 0, 0, 0, 58, 58, 58, 58, 56, 0, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 0, 61, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 19, 19, 19, 19, 19, 10, 0, 27, 27, 0, 27, 27, 0, 0, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 49, 0, 0, 0, 0, 0, 58, 58, 56, 0, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 0, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 19, 19, 19, 19, 10, 0, 27, 0, 27, 27, 0, 0, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 40, 49, 49, 0, 0, 0, 0, 0, 58, 58, 56, 0, 68, 68, 68, 68, 68, 68, 68, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 0, 0, 43, 43, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 19, 10, 0, 27, 61, 27, 27, 0, 0, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 40, 49, 0, 0, 0, 0, 0, 58, 58, 56, 0, 68, 68, 68, 68, 68, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 66, 0, 0, 0, 0, 0, 0, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 19, 19, 10, 74, 27, 27, 27, 0, 74, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 40, 49, 0, 0, 0, 0, 0, 58, 58, 56, 0, 68, 68, 68, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 68, 68, 68, 68, 68, 68, 68, 68, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 61, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 10, 27, 27, 27, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 40, 49, 0, 0, 0, 0, 0, 58, 58, 56, 0, 68, 68, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 68, 68, 68, 68, 68, 68, 68, 66, 0, 0, 70, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 58, 0, 4, 0, 0, 0, 32, 0, 0, 0, 0, 39, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 10, 27, 27, 27, 0, 27, 61, 0, 0, 0, 0, 34, 0, 0, 40, 49, 0, 0, 0, 0, 61, 58, 58, 56, 0, 68, 68, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 68, 68, 68, 68, 68, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 10, 27, 27, 0, 27, 31, 31, 0, 0, 0, 0, 0, 0, 40, 49, 0, 0, 0, 0, 58, 58, 0, 68, 68, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 68, 68, 68, 68, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 10, 27, 27, 61, 27, 31, 0, 0, 0, 0, 0, 0, 40, 49, 0, 0, 0, 0, 58, 58, 0, 68, 68, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 68, 68, 68, 68, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 27, 27, 27, 31, 0, 0, 0, 0, 36, 0, 40, 49, 0, 0, 0, 0, 58, 58, 0, 68, 68, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 68, 68, 68, 68, 68, 61, 0, 0, 0, 0, 0, 0, 0, 15, 37, 0, 0, 0, 0, 0, 0, 58, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 27, 27, 31, 0, 34, 34, 0, 0, 40, 49, 0, 0, 0, 0, 58, 58, 0, 68, 68, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 68, 68, 68, 68, 68, 68, 0, 0, 61, 24, 0, 0, 0, 0, 0, 58, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 27, 27, 31, 0, 0, 0, 0, 0, 40, 49, 0, 0, 0, 61, 58, 58, 0, 68, 61, 69, 69, 69, 69, 69, 69, 69, 69, 69, 68, 68, 68, 68, 68, 0, 0, 0, 0, 35, 0, 0, 58, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 27, 31, 0, 0, 0, 0, 0, 40, 49, 0, 0, 0, 58, 58, 0, 61, 69, 69, 69, 69, 69, 69, 69, 68, 68, 68, 61, 0, 0, 0, 20, 0, 0, 58, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 31, 34, 0, 0, 0, 0, 40, 49, 0, 0, 0, 58, 56, 56, 56, 56, 56, 0, 69, 69, 69, 69, 69, 69, 69, 68, 61, 68, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 31, 0, 0, 0, 0, 0, 40, 49, 0, 0, 0, 58, 56, 56, 56, 60, 60, 69, 69, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 69, 69, 69, 68, 0, 0, 0, 58, 0, 0, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 40, 49, 0, 0, 0, 58, 56, 56, 56, 60, 69, 69, 69, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 69, 69, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 40, 49, 0, 0, 0, 58, 56, 56, 56, 60, 69, 69, 69, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 69, 69, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 34, 0, 40, 49, 0, 0, 0, 58, 56, 56, 56, 60, 69, 69, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 69, 69, 61, 0, 0, 58, 0, 0, 61, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 40, 49, 0, 0, 0, 58, 56, 56, 56, 60, 69, 61, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 69, 69, 69, 0, 0, 58, 0, 0, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 31, 0, 0, 0, 0, 40, 49, 0, 0, 0, 58, 56, 56, 60, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 69, 69, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 0, 0, 0, 56, 56, 60, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 69, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 31, 0, 34, 0, 0, 0, 34, 0, 0, 0, 49, 0, 0, 0, 56, 56, 60, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 69, 61, 0, 0, 0, 0, 0, 0, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 56, 60, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 31, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 56, 56, 60, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 56, 60, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 61, 0, 0, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 56, 60, 68, 68, 68, 68, 68, 68, 68, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 60, 68, 68, 68, 68, 68, 68, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 60, 68, 68, 68, 68, 68, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 72, 0, 56, 60, 68, 68, 68, 68, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 60, 68, 68, 68, 68, 0, 0, 0, 0, 13, 13, 13, 13, 13, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 60, 68, 68, 68, 68, 68, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 60, 68, 68, 68, 68, 68, 68, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 60, 68, 68, 68, 68, 68, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60, 68, 68, 68, 61, 63, 0, 0, 61, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 61, 0, 0, 14, 0, 0, 0, 0, 0, 0, 61, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 14, 0, 0, 0, 61, 0, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 0, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 34, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } ; static yyconst flex_int32_t yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 5, 1, 1, 1, 1, 1, 6, 7, 1, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 39, 45, 46, 47, 48, 39, 49, 39, 39, 50, 51, 52, 53, 52, 54, 52, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 64, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; static yyconst flex_int32_t yy_meta[80] = { 0, 1, 1, 2, 3, 1, 1, 1, 1, 4, 1, 1, 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; static yyconst flex_int32_t yy_base[22599] = { 0, 0, 0,72526,72521, 0, 0, 76, 77, 79, 81, 82, 83,72517,72504,72499,72498,72488,72486,72488,72486, 72438,72415,72401,72399,72398,72397,72394,72392,72391,72390, 72389,72387,72429,72406,72340,72339,72390,72389,72341,72339, 72384,72382,72382,72377,72367,72358,72351,72345, 0, 0, 0, 0,72348,72313, 86, 89, 84, 120, 199, 253, 93, 221, 320, 198, 330, 387, 299, 26, 307, 174, 363, 454, 35, 42, 187,72290,72273,72284, 186, 337, 284, 346, 468, 467, 345, 410, 533, 179,72271,72284, 324,72275,72281, 489, 534, 591, 409, 492, 501, 640, 497, 498, 562, 390, 511, 580, 526, 361, 385, 407, 72295,72249, 393, 500, 493, 405, 595, 613,72278, 342, 617, 432, 472, 708, 762, 617, 650, 662, 394, 392, 674, 675, 831, 362, 891, 945, 999,72280, 483, 1078, 708, 1132, 548, 1208, 1265,72267, 1332, 1392, 1433, 730, 627, 855, 913, 967, 1100, 1236, 1284, 1490, 1538,72265, 72221,72218,72228,72230,72214,72213,72219, 500,72231,72204, 72203, 570,72227,72188,72164,72171, 453,72203,72174, 44, 72157,72158,72188, 584,72183,72197,72153,72148,72131, 618, 679,72113, 680,72114,72130,72106, 616,72101,72108, 469, 72098,72114,72065, 506, 671, 703, 904, 907, 1240, 1596, 1645, 1694,72132, 624, 851, 877, 875, 1228, 1243, 1373, 1371, 1403, 1752, 1818, 1884, 1214, 666, 825, 1463, 871, 657, 926, 1569, 1059,72100, 619, 661, 878,72099, 665, 72059,72097, 957, 321, 958, 1091, 194, 961, 1952, 2031, 2085, 1364, 2139, 685, 2206, 1346, 2266, 1414, 743, 1514, 1607, 845, 2307,72093, 1222, 2367, 828, 826, 2421, 1090, 2475, 2528, 2581,72091, 2660, 1061, 2714, 2768, 2822, 2876, 2955, 3009, 3063, 1561, 1618, 1654, 3117, 3190, 926, 3269, 3345,72090, 3412, 3460, 953, 930, 3508, 1085, 3565, 1473, 72081, 3625,72087, 3679, 1667, 1718, 1200, 1761, 1774, 1793, 383, 1840, 1075, 3721, 1293, 1849, 1504, 3769,72086,72076, 72094,72038,72069,72014,71981,72043,72021,71967,72018,71953, 71975,71940,71953,71970,71926,71925,71912,71913,71923,71919, 71906,71887, 614,71892,71874, 1294,71850,71847,71860,71857, 71837,71843,71851,71883,71791,71803,71857,71790, 684, 1186, 1239, 1241, 3826, 1185, 3874, 1361, 3922, 1295, 1850, 1682, 886, 1374, 1558, 1388, 3979, 1572, 4044, 1227, 4109, 1448, 1851, 1806, 1260, 1389, 1352, 1914, 1375, 1062, 1467, 1660, 1566, 1616, 1275, 4174, 928, 1608, 1464, 1321, 1323, 1336, 71782,71819, 1063, 1465, 1813, 1508, 552, 612, 888, 1181, 1609, 1238, 1338, 1425, 1657, 1526, 4208,71784, 4287, 4341, 1743, 2031, 2053, 4395, 1631, 2066, 4462, 1632, 4510, 2092, 1680, 4570, 1679, 1505, 4611, 1633, 2219, 2220, 4659, 1373, 458, 1445, 1482, 4719, 4772, 1510, 4825, 4878, 346, 4931, 5010, 1441, 5064, 5117, 5170, 5223, 5276, 5330, 5384, 5438, 71781, 1693, 5517, 5570, 5620, 5657, 0, 1657, 2109, 1534, 5711,71786, 5787,71778, 5854, 5902, 5950, 1802, 2221,71768, 71767, 1750, 5998, 1803, 6046, 2247, 1828, 6103, 1829, 2273, 2274, 1854,71754,71723, 1789, 6163, 2329, 2338, 2367, 2389, 2284, 2443, 1796, 1568, 1843, 6205, 1899, 6253, 2348, 1686, 2292, 2456, 2483, 6301,71728,71719, 6361,71695, 2685,71684, 71688, 2743,71676, 2982,71680,71635,71641,71664,71634,71694, 71630,71613,71686,71642,71619,71645, 1714,71579,71586,71575, 71560, 1531,71562,71552,71598,71529, 6440,71584,71589,71582, 6515,71528, 1795, 1669, 1855, 1831, 1873, 2064, 2248, 6585, 1923, 6633, 2482, 1836, 2402, 2775, 2657, 1707, 2066, 1858, 2007, 2264, 2215, 2490, 6690, 1924, 6746, 2493, 2454, 2429, 2776, 2803, 2027, 1841, 1480, 2046, 2210, 1904,71552,71551, 1769, 6811, 1889, 2029, 1593, 2030, 1915, 1771, 2212,71557, 1387, 2504, 2097, 2508, 2098, 2275, 2276, 2086, 2383, 2211, 2366, 2400, 2403, 2407, 2269, 2460, 2225, 6845, 6924, 6968, 7005, 0, 2433, 2550, 7059, 7113,71548,71539, 7155, 2497, 7203, 2721, 2562, 7251, 2668, 3016, 3017, 2829, 7311, 2722, 7352, 2732, 7400, 2786, 2458, 2830, 3044, 3071, 2308, 1779, 689, 7460, 7513, 2484, 3139, 2250, 7566, 7619, 7698, 2455, 7752, 7805, 2494, 7858, 7911, 2777, 7964, 8018, 8072, 2824, 8125, 8179, 8233,71545,71531, 2519, 8312, 2825, 8365, 2955, 3161, 3355, 2634, 8419, 8495,71521, 8562, 8610,71496,71501, 8658, 2790, 2842, 3070,71486,71487, 2513, 8706, 2846, 3027, 8754, 2847, 8811, 3081, 3098, 2805, 8859, 2857, 8907, 3364, 2992, 3124, 3425, 3426,71509, 2667, 3484, 3532, 3367, 2387, 2532, 3587, 1888, 2646, 2749,71403, 3079, 2363, 8955, 2972, 3366, 9003, 3031, 3427, 3606, 3125, 3632, 3633, 3660, 9051, 71424,71415, 3800, 9108,71384, 3077,71384,71385, 3587,71372, 3827,71381,71434,71344,71402,71400, 9137,71327,71337, 9191, 71352,71339, 9261, 2069,71328,71327,71332,71370, 911,71387, 71293,71293, 2676,71279, 3080, 3791, 2649,71319, 9315, 2434, 9369, 9422, 2664,71279, 2436, 2540, 3008, 3045, 2750, 3138, 2990, 3480, 2953, 9472, 3033, 3687, 9520, 3376, 3734, 3735, 3522, 3697, 3736, 3837, 2783, 3502, 3520, 3607, 3524, 3416, 3661, 3693, 3099, 3832, 9577, 3377, 3840, 9633, 3442, 3845, 3850, 3885, 3889, 3890, 3950, 3432, 1835, 2641, 3537, 3623, 3875, 3431, 3851, 3429, 3636, 2044, 1278, 2539, 2737, 2954, 3462, 3024, 9693, 3014, 3789, 3130, 3634, 3067, 2197, 3132, 1573, 3526, 2640, 3159, 1687, 3542, 3316, 9747, 9826, 9880, 3988, 4001, 4010, 9922, 3701, 3901, 9970, 3702,10018, 3935, 3948, 3658,10066, 3749,10114, 3936, 3712, 3949, 4020, 4019, 10174,10215, 3751, 3946,10263, 3753, 4021, 4022, 3954, 4023, 4054, 4055,10323,10399, 3353,10461, 4082, 4136, 4364,10514, 10567, 3454, 3608,10646,10699,10752,10806,10860,10939, 4312, 10993,11047, 2708, 4184,11101,11171,11250,11301,71315,71273, 11380, 3907,11456, 4062, 3947, 4095, 1768, 3638, 3677, 4017, 3814,11504, 4096,11552, 4150, 4097,11609, 4098, 4475, 4124, 4122, 4322,11657, 4123, 4476,11705, 4149, 4477, 4523, 4349, 4533, 4551, 4578,11765,11819,11872,11926, 4053, 4287, 2719, 3609,71275,331800, 3862, 2806, 3912, 4354, 4481, 4580,11968, 4160,12016, 4534, 3977, 4597, 4624, 4626, 4584, 4586,12064, 71279,71270, 4748, 4648, 3507,12121, 2607, 3506, 1469, 2211, 3724, 2660,71302,12181, 3128, 3834, 3885, 4679, 2988, 3770, 4585, 2987,71300, 3610,12235, 3763,12289,12342, 4058,12383, 2707, 3328,12443, 4689,71225, 3532, 3367, 4643, 3327,12497, 12560, 4719, 3154, 2326,12613,12666, 2807,12719,12772, 3581, 3543, 4060, 3725,71263, 4321, 4285, 4303, 4482, 4741, 4751, 4752, 4787, 4806, 4840, 4859,12822, 4161,12870, 4791, 4073, 4674, 4832, 5007, 5023, 5009, 3842, 4518, 4480, 5079, 4113, 3818, 2804, 4805, 4322, 5043, 5080, 5116, 5131, 5151,12927, 4163,12983, 4842, 4474, 4886, 5178, 5231, 5186, 5237,71262, 2748, 3521,71261, 4812, 4994, 5132, 4783, 4891, 4785, 4663, 3913, 4286, 3932, 4059, 3893, 4467, 4519,13051,13105,13159, 4353, 4863, 5133, 4355, 4567, 4466,13180, 4498, 4569,13258, 4517,13312,13388,13416,13470, 3513, 4901, 4300, 4527, 4726, 4838,13512, 4637,13560, 5026, 4737,13608, 5029, 5284, 5273, 5090, 5189,13656, 5036, 5204,13704, 5082, 5338, 5327, 5242, 5295, 5524, 5381,13764, 5071, 5130, 5234, 5340,13805, 5084, 13853, 5391, 5096, 5392, 5525, 5567, 5238, 5287,13913,13972, 4340,14041, 5571, 508, 5633, 5680, 5798, 5045, 5019, 3872, 14094,14167,14220,14273,14327,14406,14460, 5807, 5820,14514, 14567,14643,71265,14722,71225,14795,71239, 4627, 3058, 4601, 14836, 5192, 5403,14884, 5248,14941, 5404, 5551, 5097,14989, 5298,15037, 5589, 5149, 5593, 5867, 5868, 5292, 5341, 5344, 5397,15085, 5303,15133, 5597, 5176, 5607, 5869, 5917, 5526, 5527, 5903,15193, 5972, 3953, 3321, 5903,15235, 5357, 5603, 15283, 5358, 6011, 6012, 6013, 5927, 6116, 6117,15331,15379, 71231,71222, 4660, 6074, 5673, 6179,15439, 3433,15487, 3124, 71254, 3979, 4753,15548, 5904, 4837, 5078, 5528, 4171, 4029, 71196, 2073, 3699,15618, 5074, 5393, 5182,15692,15745, 5944, 15798,15851, 4806, 3664,15904,15953, 4688,16016,16095, 3552, 4861, 4583, 4632,16156, 6017, 6093, 4866,16234, 6048, 5290, 5360, 4778,16287,16340, 5498, 6330, 4860, 5022,16393,16446, 5544, 5203,71222, 5394, 5904, 6035, 6097, 5557, 6144,16513, 5543, 6183,16561, 5882, 6218, 6219, 6061, 6220, 6267, 6268, 16609, 5907, 6112, 6220, 6177, 6224, 6271, 6272, 6139, 5761, 6450, 6477,16666, 5981, 6447,16722, 6025, 6448, 6473, 6316, 6459, 6476, 6537,16770,71221, 5523, 4478, 5129,71220, 5533, 5859, 6039, 6425, 6500, 6094, 6453, 6543, 6550, 6078, 6302, 4831, 5289, 5209, 3799, 6109, 5288, 6110, 5342,16838,16892, 16946,17000, 5863, 4990, 5941, 6107, 6552, 5205, 3955,17021, 17071,17116,17162,17207,17252,17297,17342,17388,17433,17478, 17548,17593,17638,17705, 4127,17783,17837, 4283,17891,17945, 6608, 6655,17987, 6187, 6484,18035, 6188,18083, 6535, 6557, 5939,18131, 6235,18179, 6673, 5963, 6574, 6722, 6665, 6014, 6015, 6222, 6704,18227, 6282,18275, 6705, 6195, 6715, 6759, 6761, 6269, 6708,18323, 6487, 6778,18371, 6490, 6931, 6774, 6718, 6932, 7040, 6776,18419,18479,18536, 7280, 6626, 4152, 6524, 6424, 3820, 2956, 5529, 6145, 7429, 7006, 5331, 7489, 5127,18609,18662, 6503, 6898, 6538, 6698, 5723, 5585,18737, 18810,18883,18937,18991, 5683, 7088, 6735,19045,19121,71222, 71213,71201, 5962, 6092, 6303, 6763, 6663,19188, 6563,19236, 6979, 6617,19293, 6777, 7120, 6981, 6798, 7021,19341, 6796, 7066,19389, 6800, 7121, 7169, 6958, 7067, 7170, 7218,19437, 6826, 7131,19485, 6921, 7318, 7319, 7338, 7180, 7367, 7521, 19533,19593,19646, 7228, 4100, 6480, 7094, 6933, 6968, 7320, 7252,19713, 7023,19761, 7375, 6470, 7415, 7705, 7535, 7321, 7174,19811, 7460, 7594, 7727,19859,71219,71209, 6421,19919, 7126,19988, 5873, 6561, 5236, 7713, 6679,71232,20048, 6935, 20102,20155, 5972, 6055, 7354,20208, 7322, 7524, 7765,71137, 71136, 7418,71135, 5278, 6970, 6498,20283,20336, 6270, 7834, 7493, 6547,20389, 6529,20442,20502, 5774,20562,20615, 3662, 20674,20737, 5075, 7529, 6500,20812, 5239, 6576, 4581, 6422, 6627, 7767, 7253, 6604,20865, 6699, 6750,20923, 7887, 7940, 7987,20976,21049,21102,21155, 6462, 5499, 7041, 6908, 7156, 7204, 7402, 7528, 7839, 8031, 7892,21206, 7024,21254, 7532, 7145, 7759, 7786, 8015, 8034, 7945,21304, 8094, 8125, 8147, 4892, 6646, 7089, 8311, 8327, 7093, 7129, 7943, 8347, 8580, 8581, 8582, 8755,21361, 7308,21417, 7769, 7193, 8079, 8160, 8334, 8629, 8630,21475, 8208, 8390, 8504, 5860, 5968, 8512, 6169, 7356, 8002, 6683, 7949, 7582, 7697, 7766, 7056, 8083, 6929, 7057, 6603, 6778, 5046,21526, 5671, 7060,21576,21630, 7455, 7353, 7492, 8085, 7361,21651,21701,21746,21791,21836, 21881,21926,21976,22021,22066,22112,22157,22202,22247,22316, 22361,22428,22495,22562,22629,22697,22764,22831,22898,22965, 23033,23100,23167,23237,23304,23371, 5366,23449, 6289,23503, 23557, 6821, 8521, 7217, 7268, 7761, 7401,23599, 7478,23647, 7813, 7563,23695, 7715, 8576, 8362, 8575, 7865,23743, 7716, 7866,23791, 7771, 8625, 8671, 8624, 7919, 8673, 8719,23839, 7823, 8037,23887, 7876, 8721, 8786, 8769, 8187, 8825, 8826, 23935, 8033, 8579, 8672, 8720,23983, 7929,24031, 8329, 7702, 8780, 8874, 8920, 8827, 8724,24081, 8930, 8977, 8986,24141, 24210, 9079, 9214, 6643, 6548, 6600, 6782, 6932, 7160, 7526, 6622, 7082, 6928, 7293, 7910, 7270, 7763, 7959, 7097, 7322, 7020, 7436, 9284, 7497,24284,24337, 6927, 6052, 5599, 7679, 6603, 7425, 7862, 8140, 5924, 6128,24390,24443,24496, 6687, 24558,24634,71109,71100, 7026, 7525,24701, 8080, 8330,24749, 8331,24806, 8577, 8781, 6783,24854, 8587,24902, 8882, 7391, 8782, 9016, 9017, 8378, 8379, 8829, 8860,24950, 8640,24998, 9018, 7524, 8785, 9144, 9145, 9146, 8677, 8756, 8831, 9147, 9052,25046, 8690,25094, 9224, 7734, 9065, 9322, 9323, 9218, 8879,25144, 9261, 9391, 9422,25204,25257, 9444, 7529, 7216, 9039,25324, 8734, 9228,25372, 8783, 9485, 9486, 9118, 9333, 9487, 9552,25420, 9604,25468, 7804, 9542,25516,71107,71098, 9101,25576, 8034,25645,25687, 7785, 7699, 7324, 7837, 8326, 71074, 8323,25755,25808, 8901,25861,25914, 8181, 7554, 7981, 7995, 9397, 2480, 6286, 7090,25967,71075,71063, 8264, 8053, 8086, 9220, 7495,26025,26075,26106,10348,26140,26213, 7548, 26266,26322,26401,26455,26508, 7655,26565, 7250, 8576, 8830, 26633, 7696, 9327, 7916, 9662,26690, 7790, 8024,26769, 8084, 7390,26823, 9696, 8123, 9849,10143,10292,26876,26929, 8982, 9514, 8674, 8746, 8123, 9137,27004,27077, 8346, 9205,27150, 8120, 7891, 9119, 8878, 8975, 8124, 9256,27226, 8885, 9403, 27274, 8887, 9887, 9888, 9376, 9455, 9936, 9937,27322,10423, 27372, 7855, 9693, 7677, 9295, 9316, 9889, 9893, 9138, 9445, 9972, 9942,27429, 9031, 9711,27485, 9033, 9985,10031, 9458, 9995,10079,10080,27533,10490,27591, 8012, 9826, 8177, 7950, 10375, 8466, 9174,10178,10649,10157, 9330, 9566, 9579, 9639, 9622,10217, 9652, 9701, 8138, 5763, 8140, 8898, 7890,27648, 71101, 8467, 9067,27698,27752, 5844, 8926, 9071, 9148, 6736, 27773,27818,27863,27908,27978,28023,28069,28114,28159,28204, 28280,28325,28370,28415,28460,28505,28573,28640,28707,28774, 28841,28908,28975,29042,10357, 9855,10057, 9290, 9452, 7814, 10131, 9999, 4751, 8649,29120, 8320,29162, 9236,10041,29210, 9456,29258,10042, 9459, 8622,29306, 9617,29354,10081, 8670, 9647,10182,10228, 9490, 9940,10230,10185,29402, 9709,29450, 10331, 8802,10128,10442,10320,10232,10083,10350,10426,10521, 10523,29498, 9877,29546,10406, 8850,10129,10653,10654,10525, 10657,29596,10514,10727,10752,29644, 9904,10468,29692, 9906, 10787,10668,10277,10469,11082,10936,29740,11016,29788, 8524, 10774,29848,29922,10807, 8202,11273, 8944, 8945, 8515, 8921, 8598, 8993, 9020, 9537, 9275, 8471, 8763, 8344, 8947, 9086, 29976,30029,71095,30102,11129, 9535, 8979, 9145,30155,30208, 9883,30261,30314,30367,30428,30481,30534, 9302,30595,30671, 71099,71090, 6808, 8136, 9366, 9368,10038, 9594,30738, 9950, 30786,10707, 9150,30843, 9935, 9581,10278,71095,30891, 9998, 10813,30939,10767, 9625,10946,71093,11469,11470,30987,10000, 10947,31035,10791, 9795,10966,71092,11471,11519,31083,31131, 10046,10958,31179,11054, 9838,11118,71055,11622,11623,31227, 31277, 8689,11250,31337,31390,31444,31498,11310, 9380, 8087, 11087,10085,10264,10952,10336,31540,10096,31588,11063, 9981, 11119,11624,11672,11135,10337,31636,11319,11328,11529, 9299, 11580,11734,11841,31684,31732,71054,71045,11895,31792, 9154, 31859,31913, 9491,31967, 9204, 8711,10443,71011,32030,32083, 10155,10398, 9449,32136,32189, 5461, 9260,10196,10236,10433, 9562,10412,11019, 9669,11020, 9534,10186, 9463,11249,32248, 12127,11085,32298,32329,32360,32394,32447,10079,11481, 9512, 9801,10268,10660,32522,10424,32595,12004,32668,32722,32798, 32877,32950,33003, 7540,33062,33116,10049, 8783,33189, 9258, 10383,11102,10751,71045,33258,33331,11546,11749,11558, 9695, 33389, 9933,12092,10118, 9510,10923,10747, 9802, 9825, 9570, 9984,12204,11927, 9861,12258,33443,33496,10138, 9075, 9425, 10515, 9965, 9937,10960,11086, 7363, 8474,33549,33602,33655, 10186,10527, 9217,33717,33771,11682,11996,12311,10267,12361, 10833,11720,12029,33840,10212,71021,71006,71017,33900,71004, 33973,10322, 9638,11752, 9257,10380,10643,12018,11554,11658, 12355,11706,34043,10643,34091,11284,10658,11826,12398,12150, 12356,11707,34141,11872,12181,12235,10704,34191,34232,34273, 34312,10522,11460, 9862,10715,12458,11050,11427,12019,11781, 11553,11971,12353,12096,34369,10671,34425,11942,10803,11954, 12450,12451,12357,12358,34483,12289,12519,12538,11083,34533, 34591,34649,34705, 9653,10282,10444,12589,10351,10938,12055, 11572,11751,11276,12110,11970,11277,12123,11475,12608,10035, 10629, 9381,34765,10943,10363,34816,11128,10785,34866,12389, 8623,34920,10379,11613, 1057,34985,35030,35075,35120,35165, 35210,35286,35331,35407,71065,71032,71038,70955,70972,70968, 70959,70947,70955,70956,10744, 8440,70952,70936,70967,10590, 70917,35452,35515,35560,35606,35651,35696,35741,35786,35855, 35922,35989,36056,36123,12537,11940,12590,12597,12643,12696, 36200,12748,12750,12355,12915,11098, 9624,36278,10920,11274, 11446,11626,11671,36320,11069,36368,12323,11062,36416,11749, 11447,12478,70939,36464,11486,12406,36512,11806,11467,12505, 70931,12621,12674,36560,11639,12461,36608,12031,11520,12727, 70930,12726,12835,36656,36704,11641,12739,36752,12114,11599, 12796,70929,12836,12837,36800,36850,11019,12892,11774,12453, 12567,12675,36898,11791,36946,12910,11647,12808,13032,12902, 12682,12454,36994,13005,13014,13080,10944,13181,13209,13257, 37042,37102,11887,11778,12070,12624,10988,11764,11725,11848, 13128,11888,13281,12251,11802,12133,10764,37156,37209,37262, 37315,37368,11137,13935,12014,13997,12037,37441,37494,11929, 12027,37547,37600,12326,37653,37706,37759,37834,37887,13534, 37940,37993,38046,38121,38197,70927,70918,12088,10024,38264, 11950,12942,38312,38369,12483,11696,12809,70925,38417,38465, 70878,70867,12597,11960,12679,12728,12786,12732,38513,38561, 70873,70861,12620,12056,12946,12929,12931,13046,13086,13118, 38609,38657,70868,70858,12673,12115,13212,13169,38707,13438, 13492,13582,13185,13214,13627,13610,38755,38803,70864,70824, 12832,12396,13675,13227,38851,13591,13726,13735,38899,38959, 39012,11332,39065,11444,13764,70826,10134,12753,39132,12149, 13059,39180,12833,12399,12954,70830,13621,13669,39228,39276, 11848,13786,13882,13841,39324,70829,70820,11883,13827,39381, 39447,12322,39519,10630,10171,13889,70784,12594,39587,39640, 39713,39766,10657,12427,39816,39885,39914,13415,39969,40039, 40104,40170,12455,11133,13998,14070,13170,12733,13146,12918, 12864,12975,12628,13117,14196,14110,12798,40228,40262,40315, 10373,11573,11326,12562,11064,11438,12252,13485, 8877,12028, 40368,40421,40474,12197,11835,13003,40536,40589,40642,40708, 13033,70804,40787,40840,13587,13934,13016,13981,13490,13635, 40915,70819,40988,11278,41061,41124,41191,41242,41313,41375, 12482,12627,12512,10302,13364,13999,41432,41487,13121,13821, 12862,10425,41545,14249,14429,12196,12529,12029,11795,11766, 12723,13172,12246,12265,11831,12324,12935,12748,13527,12759, 12423,12034,12403,12813,14483,41618,41671,70815,41744,14143, 12937,13204,12187,41797,41850,13089,41903,41956,42009,42070, 42123,42176,13275, 6906,13414,42237,42291,42370,42424,14167, 42478,12716,42545,13671,42605,14301,13112,14536,14654,13685, 42646,42706,13468, 7230,13638,13867,13949,11889,12460,13222, 13896, 9056,13143,42760,42814,42868,42930,12846,11949,12880, 12593,12955, 9824,13429,13411,42980,13156,13745,43028,13366, 13502,13868,70818,14048,14719,43076,43126,12192,14220,14912, 14242,12842,13923,14010,14721,13986,13014,13015,14737,14764, 43183,13632,14102,43239,13672,13524,13948,70816,14756,14811, 43287,43345,12263,14406,15162,15195,13198,13554,13599,13253, 13900,15382,14620,14809,14651,14838,14748,13101,13774,12301, 12650,13618,43405,43458,13872,13427,43508,13910,12956,13660, 43558,43611,12617,14805,13985,12731,43631,43676,43722,43790, 43835,43911,43956,12824,44032,13841,14026, 6196,14086,14149, 13886,70763,14080,14737,13000,14480,13652,13107,70760,14730, 14241,14244,44077,44144,44189,44234,44279,44324,44369,44436, 44503,44578,44645,44712,44779,44846,44913,44989,45056,45132, 70770,70728,70775,70723,70743,70738,70699,70686,70694,70696, 13010,13057,70692,70680,70746,12804,70700,45199,45266,45333, 45401,45468,13961,14136,14620,14028,14073,13873,45534,14112, 14664,45582,45630,14500,13697,14822,70724,45678,45726,70723, 70714,14619,13926,14759,14806,14854,14954,45774,45822,70721, 70712,14850,14095,14955,14958,14959,15002,15003,15005,45870, 45918,70686,70677,14878,14270,15006,15050,45968,15107,15116, 15218,15051,15052,15053,15248,46016,46064,70683,70672,14890, 14375,15249,15055,46112,15305,15314,15353,46160,46208,14185, 14956,46256,14919,14471,14898,70675,15392,15004,46304,46352, 13286,15362,15461,15550,46412,12920,13505,13776,13674,13221, 13469,14215,13958,13777,12354,14025,15572,14120,13485,15640, 13780,14499,46491,46544,14533,46597,46650,14646,46703,46756, 46809,13619,15668,14417,14466,15721,46871,46924,14655,14503, 14645,46977,47030,14659,14751,47083,47136,14801,47189,47242, 47295,47350,47403,15509,14848,47456,47509,14852,47562,47615, 47668,47723,47799,70672,70633,14005,14840,14856,15139,14900, 47866,47914,70638,47971,70637,70628,15031,14702,48019,70634, 48067,70633,70584,15079,14777,48115,70591,48163,70589,70579, 15126,14827,48211,48259,70586,48307,70584,70571,15246,14887, 48355,48405,13391,15594,48453,70577,48501,70576,70536,15250, 14889,48549,48597,13497,15618,14003,48657,48710,15692,14930, 15381,15238,15239,15644,15449,48752,48800,70543,70534,15325, 14934,15646,15397,48848,15745,15767,15798,48896,14275,15820, 15873,15926,48944,70541,70532,15497,14961,49004,15402,14432, 13896,49057,11043,15009,15153,70562,15369,49118,49171,15543, 15436,49240,14780,70561,13299,70558, 7948, 8047, 9354,13825, 13516,14802,15180,49306,49337,15426,15423,15224,15255,15421, 15661,15916,15505,15617,15774,15838,15919,15862,15866,15944, 15303,15864,15865,15920,16120,49371,49424,15025,49497,16094, 15503,14961,15129,49550,49603,15504,49656,49709,49762,49823, 49876,49929,15012,14083,15957,49990,50043,15567,50096,50159, 11483,15946,331800,50238,50291,12290,14622,13386,14879,15568, 15032,14221,14387,15935,14621,14835,50344,50397,50450,14423, 16096,50512,50588,50663,50736,50799,50858,14042,15454,15755, 7343,15613,50923,50976,15917,15930,16059,15029,51049,16157, 14494,16198,14496,14476,14136,15077,14701,14703,14708,15656, 16097,15383,14132,12459,15252,51128,51181,51234,51287,51340, 15694,16210,15130,16263,15465,51413,51466,15922,15145,51519, 51572,15964,51625,51678,51731,51806,51859,16471,51912,51965, 52018,12900,15042,52093,52147,52201,52255,70532,15967,52334, 52388,16286,52442,52495,16309,16340,16362,52537,15556,52585, 16130,15654,52633,15993,52681,16172,16183,52741,16131,16132, 52782,16175,16374,70525,16401,15835,15468,16409,16164,16235, 52842,52896,52950,16236,53003,53057,53111,53172,53225,53278, 53339,15948,15378,15645,16232,16339,16390,16425,16445,16459, 16533,16514,53389,53437,70529,70520,16377,15902,16581,16460, 53487,16488,16631,16688,53535,16375,53585,53626,53667,15863, 16491,16518,16724,16741,16153,16563,16773,16519,16725,16728, 16727,53715,53771,70496,70485,16396,16256,16854,16726,53829, 16697,16797,16892,53877,16622,53927,53985,54043,16274,16168, 16116,16395,16567,16629,16929,16801,16516,16927,16833,16444, 16297,14218,15173,16351,54111,54164,16403,16479,15756,54214, 16515,15240,16350,54264,54317,16559,16510,16600,16847,13897, 54337,54382,54427,54472,54517,54562,14648,54638,54714,13772, 14252,16595,15708,14467,16813, 4658,16792,16402,16568,16817, 15269,16937,16977,54759,54804,54849,54895,54940,54985,55052, 55119,55186,70458,16599,16598,55263,16904,55339,16761,16079, 16909,10090,16986,16801,16468,70472,16876,16984,16624,16718, 16562,16855,70470,16937,16919,16918,16980,17006,16987,16981, 17024,17041,17046,17055,15831,13363,16799,16800,16851,17036, 55405,55453,70487,55501,70484,70475,17034,16818,55549,70481, 55597,70480,70438,17048,16902,55645,70445,55693,70443,70433, 17055,16954,55741,55789,70440,55837,70438,70429,17077,16956, 55885,55935,15203,17145,55983,70434,56031,70433,70424,17095, 16986,56079,56127,15336,17191,17118,17146,17148,17163,56175, 56223,70431,70391,17138,17004,17194,17203,56271,17236,17281, 17326,56319,16926,17371,17417,17462,17507,56379,15849,17122, 17546,17556,17578,15971,17056,56433,56486,16569,16193,56539, 56592,56665,16570,16895,56718,56771,16690,56824,56877,56930, 56991,57044,57097,16992,17110,17229,17117,57158,57211,16737, 16901,17150,57264,57317,16858,16990,17185,57370,57423,16950, 17046,57476,57529,17090,57582,57654,57707,57760,57813,17094, 17622,17113,57866,57919,17189,17173,57972,58025,17198,58078, 58150,58203,58256,58332,70396,70386,15757,58399,70391,58447, 58504,70390,70377,58552,58600,70384,70375,17231,17079,17165, 17283,17284,58648,58696,70350,70339,17286,17328,17329,17331, 17373,58744,58792,70344,70335,17374,17389,58842,17667,17705, 17714,17420,17464,17422,58890,58938,70338,70329,17465,17467, 58986,17734,17780,17805,59034,17509,17510,17512,59082,59130, 70336,70327,17579,17580,59178,17834,17859,17891,59226,59286, 59359,17615,59412,59491,17913,17211,17656,59533,70301,59581, 70300,70291,17244,17212,59629,59677,15515,17967,18448,17727, 59725,70298,70287,18501,70289,17364,59785,13759,15503,59854, 16520,17255,17276, 0,59908,13103,59980,14475,10512,17321, 17196,70285,70249,16543,15284,15659,15758,18562,17345,60049, 17368,17640,17457,17366,17481,17612,17513,17643,17991,17502, 17583,17575,17770,60083,60136,60189,60242,60295,17238,60365, 17263,60415,17319,60475,60528,17388,17412,60581,60634,17420, 60687,60740,60793,60868,60921,18105,60974,61027,61080,17377, 17657,16686,61155,61208,61281,14947,17655,61360,61413,17988, 61486,18478,17627,16141,17468,17513,61539,61592,17667,61645, 61698,61751,61812,61865,61918,17582,16402,15813,61979,62038, 62105,62180,62243,62312,62380,17006,18134,17644,10698,62450, 62505,15714,17642,62558,17703,17768,17799,17429,15368,15848, 17566,17781,18558,17742,18631,17907,17436,17752,62627,62680, 17734,62733,62786,17857,62839,62892,62945,17673,18687,16906, 17827,19139,63007,63060,17911,17729,17828,63113,63166,17986, 17730,63219,63272,17995,63325,63378,63431,63486,63539,18201, 17997,63592,63645,17998,63698,63751,63804,17994,16487,63859, 63913,18000,63967,64021,17774,64100,64154,64208,18001,64261, 64304,64355, 0,15643,18058,16534,17305,70295,18137,64397, 64445,64493,70254,16855,64541,16920,18240,18242,70241,17841, 18004,18154,64589,16969,64637,18156,17980,18288,18290,18336, 18054,18055,64697,64751,64805,18051,64858,17895,64911,64965, 65019,18052,65072,65126,65180,65255,65308,65361,65415,65469, 65544,18098,14728,17474, 9152,17150,18103,18229,65594,70196, 65642,70194,70185,18076,17334,65690,65740,15774,18346,18852, 18407,14530,16302,18199,18688,18561,18247,18551,18343,65797, 70192,65853,70157,70138,18239,17379,65901,65959,16250,18662, 18759,18713,11885,18786,16298,13430,18364,18410,18413,331800, 18521,18522,18794,18294,18791,18819,18878,17955,18373,18026, 17279,16623,18122,66019,15078,18095,18494,15564,18028,18027, 18846,66072,19207,18168,18293,17587,66092,66168,66244,66289, 18083,16162,18167, 3385, 5357,13197, 0,14955, 7134,18097, 15986,18364,18119,18253,11732,10719,18161,66334,70129,66379, 66424,66469,66514,66581,66648,66715,66782,66849,66916,66983, 67059,67135,18307,18724,18784,17820,18591,18490,18835,18854, 70129,18864,18631,11285,18256,18913,19161,67202,18564,19223, 17808,17915,18338,19014,16284,67268,70107,67316,67364,70106, 70095,67412,67460,70098,70088,18578,18048,17248,18944,18896, 67508,67556,70051,70041,19140,19202,19204,19205,19251,67604, 67652,70008,69993,19306,19249,67702,19363,19372,19411,19308, 19309,19450,67750,67798,70000,69991,19451,19311,67846,19420, 19507,19516,67894,19454,19546,19548,67942,67990,69996,69987, 19549,19455,68038,19593,19616,19735,68086,68134,69992,68182, 69990,69948,18691,18072,68230,68278,16749,19744,19789,19115, 68328,68386,17960,19888,18191,19941,68462,19963,20131,16621, 68509,68562,18241,18141,18246,68615,68668,68721,68774,68827, 18284,18368,18248,68900,68953,18380,18417,69006,69059,18569, 69112,69165,69218,69293,69346,19833,69399,69452,69505,12180, 20177,18753,69943, 0,18680,18431,18322,69934, 0,18682, 18557,18344,69580,69633,18721,18769,18595,69933, 0,18755, 18818,69893, 0,18797,69889, 0,18903,69686,69739,18940, 18819,20010,18668,69885, 0,18945,18947,18687,69882, 0, 19135,18954,69880, 0,19231,69871, 0,19138,69792,69868, 69751,69739,18765,18420,19452,18489,69935,69983,69745,70040, 69740,69723,70088,69687,70136,69676,69629,19550,18505,70184, 69583,70232,69581,69536,70280,70328,69461,70376,69460,69451, 70424,70474,17917,19919,70522,69458,70570,69456,69447,70618, 70666,18489,20070,70714,69358,70762,69303,69293,70810,70858, 18607,20102,70918,70984,20230,71037,71091,71144,17782,19535, 19283,19964,19762,71211,71259,69226,69146,19965,19763,71307, 20155,20208,20252,71355,18751,20312,20365,20418,71403,69113, 69059,18826,18967,71463, 7457,19111,71536,18895,19361,69090, 19831,71599,16699,71652,18150,19208,19270,20467,19966,17850, 18867,18684, 8970,19522,19088,18338,19962,19779,19853,19961, 19286,19860,19225,19851,20492,20063,20591,20289,20030,20538, 71710,71763,19235,71816,71869,19292,71922,71975,72028,19185, 72087,19877,19233,20643,72140,72193,19612,19435,19272,72246, 72299,20032,19758,72352,72405,20102,72458,72511,72564,72619, 72672,20700,20103,72725,72778,20104,72831,72884,72937,20278, 18678,72992,73045,73119,73198,20315,73271,73324,73377,73430, 73483,20105,19760,19315,73554,19365,73605,73658,20106,19772, 73711,73764,20226,73817,73870,73923,73998,74051,74104,74157, 74210,18455, 5224,74285,74343,74396,74465,74538,74606,74680, 18620,19805,19380,19312,17554,74743,74796,17754,19409,17867, 18519,18841,18823,16738,20028,19524,18295,18621,14422,19849, 20759,19939,19006,20781,19609,74849,74902,20249,19855,74955, 75008,75081,20284,19923,75134,75187,20285,75240,75293,75346, 75407,75460,75513,19461,19457,20541,19505,75574,75627,20338, 19945,19782,75680,75733,20339,20039,19832,75786,75839,20373, 20052,75892,75945,20389,75998,76070,76123,76176,76229,20390, 20891,20159,76282,76335,20391,20212,76388,76441,20426,76494, 76566,76619,19002,18286,76672,76726,20460,20310,76780,76834, 19960,76913,76967,77021,20461,77074,20363,20462,77127,20615, 20674,20812,77169,77217,69063,77265,20302,77313,20515,69005, 19954,77361,20408,77409,20517,20240,20516,20930,20690,19986, 20416,77457,20527,20570,77505,20528,21002,20834,20581,20828, 21003,20862,77565,77619,77673,20463,77726,20432,20564,20006, 77779,77833,77887,20615,77940,20433,77993,78047,78101,20616, 78154,78208,78262,78317,78370,20617,78423,78477,78531,20636, 78584,78638,78692,78747,78800,20536,78853,19979,17037,20689, 19591,20732,20700,20938,20975,78912,78960,68961,68896,21030, 20989,79010,21071,21102,21124,79058,20061,79115,79163,79211, 16373,20171,20702,20818,20777,20845,21164,21166,20637,21044, 21182,21180,21272,21335,79259,79315,68900,68832,21273,21274, 79373,21330,21391,21439,79421,20847,79478,79543,79608,17324, 21659,20370,17976,20849,21033,21208,21170,20899,20932,20734, 20735,19093,20373,19822,18879,79676,16409,20220,19266,20733, 18195,20922,79729,20935,21065,19824,79749,79825,79870,20036, 79947,20925,21136,21237,16325,18869,19405,19355,68798,19450, 15159, 5575, 8739,18121,20289,79992,80060,80105,80173,80218, 80285,80352,80428,80504,80571,19543,21414,20780,15834,17539, 19291, 0,15718, 7280,19203,18969,20448,19223,20792,18972, 16915,21185,80638,68741,80705,80772,80839,80906,21034,15422, 20820,20826,20863,80972,81020,68723,81068,68721,68661,81116, 68627,81164,68624,68562,21224,20919,81212,68568,81260,68526, 68454,81308,81356,68459,81404,68458,68286,81452,81502,19018, 21497,81550,68292,81598,68248,68239,81646,81694,19127,21506, 81742,68194,81790,68142,68045,81838,81886,19491,21576,21124, 21269,21583,81934,81982,68051,67941,21587,21183,82030,21630, 21681,21730,82078,20247,21776,21821,21866,20059,82138,21910, 20246,20936,20339,21324,21956,82214,20441,82261,82314,20957, 20966,20473,82367,82420,20984,82473,82526,21001,82579,82632, 82685,21004,20573,82747,82800,21006,21065,20703,82853,82906, 21158,21250,82959,83012,21252,83065,83118,83171,83226,83279, 22005,21359,83332,83385,21360,83438,83491,83544,18699,21113, 67905, 0,21385,21253,20778,21702,21704,21747,21899,22035, 83588,21611,83641,83717,67820,67715,20544,83784,67722,21169, 67713,83841,67623, 82,21351,21683,21364,83889, 180, 403, 83937,21685,21778,21700,83985, 574, 720,84035,22095,22141, 22186,21795,21822,21823,84083, 814, 1619,84131,22231,22276, 22314,84179,21867,21868,21870,84227, 1715, 1831,84275,22323, 22345,22390,84323,21912,21913,21915,84371, 1918, 2081,84419, 22428,22437,22457,84467,84527,84590,22088,21448,84643,84722, 84776,22495,21008,21958,84817, 2229,84865, 2406, 2541,84913, 84961,19540,22504,22179,85009, 3069, 3128,85069,18512,85148, 9452,21295,21784,10822,19754, 3212,21350,21366,85207,20957, 21494,21727,85257,85288,20937,18341,21116,21379,21356,19307, 19879,19681,21197,21884,21545,21495,21960,21686,21961,22002, 21707,21728,21862,21657,22524,21705,22026,22564,22116,85322, 85375,21585,21327,85428,85481,85554,21589,21399,85607,85660, 21631,85713,85766,85819,85880,85933,85986,21147,21736,22207, 21781,86047,86100,21728,21438,21165,86153,86206,21737,21439, 21167,86259,86312,21782,21508,86365,86418,21949,86471,86543, 86596,86649,86702,21950,22591,21579,86755,86808,21962,21833, 86861,86914,21978,86967,87039,87092,22010,18588,22031,87145, 87202,87275,22008,87330,87383,22027,87436,87489,22038,87542, 87595,87648,21835,21189,22115,87708,22175,87759,87812,22048, 21880,21323,87865,87918,22050,21968,87971,88024,22090,88077, 88130,88183,88238,88291,22095,88344,88397,22097,88450,88503, 88556,21270,18809,88611,19110,88664,88736,88793,88846,88909, 21365,13779,21225,19605,88983,89036,20169,20264,20444,22632, 22641,22698,20638,89089,89142,22110,22032,21937,89195,89248, 89301,89354,89407,22135,22044,22041,89480,89533,22136,22108, 89586,89639,22139,89692,89745,89798,89873,89926,22707,89979, 90032,90085,12287,22727,22338, 3322, 0,22148,22112,22213, 3483, 0,22181,22141,22224,90160,90213,22201,22225,22233, 3610, 0,22203,22226, 3899, 0,21801, 4037, 0,22231, 90266,90319,22234,22244,22764,22254, 4178, 0,22248,22246, 22278, 4268, 0,22271,22258, 4994, 0,22316, 5130, 0, 22276,22062,21552,90372,90426,22281,22272,22318,90480,90534, 90613,90667,90721,22339,90774,22327,22340,22383,22341,90824, 90875, 0,19718,22793,21516,21637,22060,22362,90917,21754, 90965,22369,21932,91013,22298,22400,22367,22466,22467,91061, 22402,22534,91109,22404,22736,22542,22538,22601,22815,22609, 22396,22129,22363,22565,22591,91157,22408,91205,22651,22670, 22652,22817,22811,22765,22567,91265,91319,91373,22430,91426, 22452,22457,22432,22453,91479,91533,91587,22462,91640,22506, 22497,22557,91693,91747,91801,22563,91854,22519,91907,91961, 92015,22598,92068,92140,92194,92248,92320,22639,22586,92373, 92427,92481,22642,92534,22638,92587,92641,92695,22648,92748, 92820,92874,92928,93000,22653,93053,93106,20262,22653,22647, 22699,22844,93172, 5770,93220, 5969, 6105,93277,93327,20166, 22839,22866,21813,22666,22793,22798,22860,22870,22863,22723, 22865,22910,93384, 6325,93440, 6650, 6956,93497,93547,20181, 22905,22932,22660,20675,22967,21780,22758,22896,22956,22985, 22969,22907,22930,21979,22989,20223,20224,22236,20337,22929, 22434,20391,22467,22561,20032,22991,23025,22312,22784,22728, 93574,93619,22791,93695,93771,22629,22761,22859,12487,22951, 20481,22954,13353,20537,22872,93816,93884,93951,94018,94094, 94161,94238,20513,22851,22993,23003,19885,20396,20846,21612, 7039,23006,17800,17943,20980,21070,22946,22975,23039,22994, 23036,23007,22345,23106,22962,94304, 7864,21871, 7960,94352, 8142, 8288,23018,23108,23110,94400, 8356, 8571,94448,23053, 23117,23126,94496, 9207, 9381,94546,23167,23176,23196,23130, 23199,23214,94594, 9714, 9837,94642,23239,23248,23266,94690, 23197,23269,23284,94738, 9917,10005,94786,23309,23333,23371, 94834,23267,23336,23372,94882,10027,10265,94930,23400,23446, 23474,94978,95026,10369,95074,10533,10625,95122,95170,20766, 23525,23609,21031,95230,24059,24110,22450,24163,23189,21787, 23070,23067,23002,95309,95362,22914,23049,23102,95415,95468, 23079,23088,95521,95574,23106,23121,95627,95680,23136,95733, 95786,95839,95900,95953,96006,23171,96067,96120,23170,23248, 23246,96173,96226,23201,23279,23306,96279,96332,23203,23291, 96385,96438,23303,96491,96563,96616,96669,96722,23304,23669, 23315,96775,96828,23305,23327,96881,96934,23331,96987,97059, 97112,18608,23657,97165,97241,10755,10916,23266,21946,23373, 23134,97317,10996,11242,97365,11437,11502,97415,23579,23631, 23717,97463,11620,11709,97513,21421,23726,97561,11821,12123, 97609,21424,23765,97657,12200,12368,97705,21481,23774,97753, 12600,12607,97801,22512,23813,97861,97920,24186,23801,97973, 98027,98080,23823,22755,23393,23335,23400,23448,98121,12686, 12748,98169,23861,23870,23909,98217,98265,12889,12971,98325, 98404,98458,23918,23957,23967,23268,98537,23386,23538,98581, 98641,13514,20771,98714,14053,22703,14487,22872,20509,13581, 23600,23369,23446,20676,23397,23406,24236,24019,98769,20828, 23303,21100,13894,14144,23464,21631,16600,21368,24020,24021, 24235,24313,24366,24023,98803,98856,23663,23396,23394,98909, 98962,99015,99068,99121,23664,23507,23690,99194,99247,23981, 23561,99300,99353,23982,99406,99459,99512,99587,99640,24723, 99693,99746,99799,24100,24419,24157,13699, 0,23991,23613, 23691,13958, 0,23992,23997,23692,99874,99927,23993,24027, 23767,14011, 0,24029,24030,14081, 0,23834,14276, 0, 24079,99980,100033,24080,24042,24828,24077,14277, 0,24125, 24078,24128,14408, 0,24159,24093,14409, 0,23835,14709, 0,24161,23601,22536,20825,100086,24101,100143,16208,100200, 100255,100318,100371,24194,24184,100424,100477,100550,24229,24201, 100603,100656,24230,100709,100762,100815,100876,100929,100982,24242, 23715,24475,23907,24270,101043,101096,24243,24247,24271,101149, 101202,24265,24274,24293,101255,101308,24286,24276,101361,101414, 24321,101467,101539,101592,101645,101698,24338,24311,101751,101804, 24339,24364,101857,101910,24340,101963,102035,102088,24265,20774, 23095,20636,102141,102215,22717,102284,102341,17227,23271,17570, 102394,22493,21469,24520,23519,24643,102444,24652,24777,102491, 102544,24374,24379,24349,102597,102650,24391,102703,102756,24392, 102809,102862,102915,24417,24401,102977,103030,24427,24433,24402, 103083,103136,24445,24446,103189,103242,24447,103295,103348,103401, 103456,103509,24876,24454,103562,103615,24456,103668,103721,103774, 19129,23462,14710, 0,24477,24452,24483,24765,25185,25134, 25557,25608,103818,24925,20699,23042,103871,103925,24488,24470, 24523,103979,104033,104087,104141,24513,104194,24515,24514,24524, 24516,24720,104247,24925,24972,24981,104289,104337,14783,104385, 24661,104433,25011,14790,24712,104481,24662,104529,25012,24713, 25013,25059,25060,24752,24766,25344,25049,104577,24663,104625, 25023,24741,25108,25109,25157,25391,24780,104673,24665,25119, 104721,24666,25338,25337,25159,25211,25387,25433,104769,15033, 0,15143,24716, 0,24517,24821,24824,24789,24826,15196, 0,15258,24822, 0,25008,24823,24850,25009,104829,104883, 104937,24869,104990,25045,24870,24873,15375, 0,15425,24871, 0,25055,15551, 0,24127,15648,15816, 0,15889,24919, 0,24872,25010,25058,24874,15890, 0,15971,25014, 0, 25089,25060,24920,16126, 0,16306,25062, 0,25104,16360, 0,24945,16528,16529, 0,16630,25105, 0,24946,25110, 25153,22520,23377,24223,25133,24376,24781,25392,25440,25517, 105040,16845,17035,105090,25229,25490,25499,105138,24891,25340, 25343,25518,25555,25592,25614,25152,25590,25184,25609,25658, 25731,105195,17103,17409,105253,25777,25808,25830,105301,25161, 22752,25860,25200,25191,25573,25691,25690,25659,25966,25385, 25330,23602,23201,22839,23975,24892,20864,24893,20621,23734, 25411,25681,25601,24894,105340,105416,25886,105492,25459,23265, 24634,25357,23952,24314,25606,25627,25717,25550,105537,105612, 105679,105746,105822,105898,18692,18211,23275,23374,21183,22164, 22002,25675,18962,21490,24687,105965,106033,18438,25189,21012, 25217,25341,25426,106099,17424,17629,106147,17674,17699,106197, 25914,25936,25989,106245,17856,17955,106295,23567,26025,106343, 18627,18717,106391,23893,26053,106439,18779,18841,106487,23940, 26084,106535,18938,19331,106583,24064,26115,25437,25994,26151, 106631,19386,19426,106679,26140,26188,26213,106727,25432,106787, 26235,106863,26288,25946,26298,24213,26331,26041,24987,106910, 106963,25527,25336,25040,107016,107069,25528,25383,25088,107122, 107175,25533,25513,25534,107228,107281,25647,25649,107334,107387, 25700,107440,107493,107546,107621,107674,26533,107727,107780,107833, 19611, 0,25703,25694,25537,19712, 0,25747,25710,25563, 107908,107961,26077,25746,25605,19786, 0,26078,25812,19871, 0,25608,19921, 0,26079,108014,108067,26147,25842,26593, 25657,19982, 0,26158,25868,25954,19983, 0,26160,25869, 20108, 0,25742,20175, 0,26161,24527,26340,108120,108196, 20211,20240,108275,25556,25983,25768,25769,26109,26208,108319, 24100,26266,25784,26146,26293,108376,25977,26294,26329,108424, 25981,26295,26330,108472,26077,26410,26400,108520,108580,108648, 24446,26484,108727,108780,26437,108833,108912,108966,109020,109074, 109153,109207,26508,26078,26534,109257,20328,20335,109305,24335, 26610,109353,20376,20372,109413,109467,26655,26791,26845,25388, 26408,26409,109536,20355,109596,109675,109729,109802,26769,109856, 25167,109923,26420,109983,26898,26349,26951,26972,26462,110033, 110093,110147,26542,110201,110255,110308,110361,24756,26001,22903, 24693,110434,20445,21297,20510,26541,26617,22994,23405,26768, 26212,26822,26436,26810,26942,26598,26836,26454,26834,27403, 25008,24153,26440,22556,110489,21794,23027,25033,24155,26648, 27460,26839,27564,110543,27622,27777,110590,110643,26339,25984, 26056,110696,110749,26414,110802,110855,26439,110908,110961,111014, 26170,26057,111076,111129,26456,26281,26167,111182,111235,26457, 26554,111288,111341,26566,111394,111447,111500,111555,111608,27249, 26567,111661,111714,26568,111767,111820,111873,26644,26632,20568, 0,26804,26850,26534,27036,27039,27102,27040,27042,111925, 26910,26890,26160,25439,26892,111978,112051,112108,112171,112234, 112300,112353,26955,26866,26552,112406,112459,112512,112565,112618, 26964,26867,26553,112691,112744,26966,26919,112797,112850,26985, 112903,112956,113009,113084,113137,113190,113243,113296,27062,113369, 27310,26940,20569, 0,26996,26967,26660,20622, 0,27005, 26995,26813,113420,113473,27008,27007,26973,20640, 0,27012, 27031,20780, 0,27037,20911, 0,27030,113526,113579,27078, 27068,26994,20926, 0,27080,27081,27090,20944, 0,27083, 27087,21069, 0,27203,21103, 0,27089,22398,22658,26616, 24209,113632,113691,24822,113759,27088,25572,113814,23115,27245, 27350,25106,25964,26402,27267,27802,113890,113937,113990,27103, 27102,27246,114043,114096,27104,27105,114149,114202,27109,27108, 114255,114308,27243,114361,114414,114467,114528,114581,114634,27247, 114695,114748,27280,27270,27269,114801,114854,27282,27317,27293, 114907,114960,27283,27318,115013,115066,27371,115119,115191,115244, 115297,115350,27397,27507,27319,115403,115456,27428,27320,115509, 115562,27453,115615,115687,115740,22788,27495,23132,27282,115793, 115847,27454,27369,27346,115901,115955,116009,27501,116062,27370, 27502,27368,27385,27407,116115,116169,24353,27698,27113,27340, 27565,27418,116211,27548,116259,27605,27573,116307,27606,27812, 27749,27718,27631,116355,27632,27714,116403,27715,27826,27831, 27820,27717,27845,27848,116451,27720,27760,116499,27722,27849, 27876,27880,27890,27894,27893,116547,27419,27581,27909,27750, 116595,27786,116643,27933,25631,27935,27939,27961,27947,27778, 116693,27987,28009,28052,21120, 0,21161,27773, 0,27427, 27827,27409,27529,27464,27967,28024,23933,21591,27435,25736, 27625,28008,116750,21301,21444,116800,24621,28098,23045,23573, 27877,27922,28028,27925,28009,28013,28055,28057,28155,28131, 28088,28171,116857,21578,21649,116915,24661,28233,27462,25677, 28281,27596,28017,28103,27865,28128,28173,28175,27537,27975, 23444,27498,23714,27638,24174,27707,25424,27832,27986,28010, 27538,27850,27834,28149,28075,28174,28200,28153,25823,116972, 28083,117048,117124,28290,117190,28354,28403,28444,28493,28534, 117236,117303,117370,117437,117513,117589,27953,28161,26252,27226, 28208,28257,26364,28156,28253,28262,27939,117656,24247,25819, 26550,28258,28289,27287,28290,28294,117724,25116,28573,28306, 28317,28327,117772,28349,28357,28372,117820,28360,28402,28417, 117868,28362,28439,28441,117916,117964,21723,21735,118012,25819, 28582,22958,118072,28064,26785,28164,28108,28602,28482,28641, 28527,28650,25675,118151,118204,27895,27705,28125,118257,118310, 28115,27937,28181,118363,118416,28165,28009,28199,118469,118522, 28228,28111,118575,118628,28283,118681,118734,118787,118842,118895, 28672,28296,118948,119001,28307,119054,119107,119160,21849, 0, 28312,28215,28349,28523,28619,28686,28693,28709,119204,28710, 28736,28238,119257,119333,21934,21945,119412,119466,119510,119570, 119644,28774,28784,28803,28266,28713,119713,21959,28842,28595, 119770,119820,119873,119926,28328,120005,120059,28851,28870,28908, 28430,28921,120128,22048,120188,120241,120291,120341,25926,120420, 28922,28942,28975,25862,28677,28394,28404,28446,120496,120544, 22106,22171,120604,120683,120737,120810,28984,120864,28413,120931, 28716,120991,29004,28466,29044,29056,28507,121041,28543,121101, 26636,121155,22194,121234,121288,121341,22222,121394,121447,121520, 29071,29117,29148,121574,28468,28746,121641,28546,121698,28813, 28745,121758,28660,27240,121799,28556,28880,28947,121859,121913, 121955,23825,122015,122068,28352,122121,122174,122227,23495,23479, 24755,28469,122289,28331,24391,22248,28794,28635,25680,28193, 28642,29342,28572,28776,28876,28843,28943,28972,29077,28696, 28805,28742,28897,25930,28599,28949,28700,122355,27284,25820, 24283,28773,29873,29046,29009,29199,29106,29247,30005,122426, 122473,122526,28447,28426,28809,122579,122632,28494,28597,122685, 122738,28529,28654,122791,122844,28534,122897,122950,123003,123064, 123117,123170,28845,123231,123284,28576,28865,28877,123337,123390, 28605,28922,28912,123443,123496,28734,28932,123549,123602,28736, 123655,123727,123780,123833,123886,28937,29280,28939,123939,123992, 28998,28999,124045,124098,29004,124151,124223,124276,29064,29438, 29073,26049,26435,29045,124329,124386,29082,29129,26816,27600, 29131,28770,124461,29132,124534,124607,124664,124723,124789,124848, 124901,29007,29053,28944,124954,125007,29066,125060,125113,29086, 125166,125219,125272,29077,29181,125334,125387,29122,29157,29186, 125440,125493,29179,29205,125546,125599,29209,125652,125705,125758, 125813,125866,29218,125919,125972,29219,126025,126078,126131,29326, 29308,29307,22604, 0,29220,29223,29207,29586,29829,29903, 29957,30061,29377,26103,26227,25187,28071,126186,126244,26416, 126312,26136,126386,126440,22608,26224,26297,30071,30124,27005, 30177,29460,29309,27754,29298,126519,126572,29221,29224,29276, 126625,126678,29275,29350,29278,126731,126784,29318,29351,29279, 126837,126890,29319,29364,126943,126996,29320,127049,127102,127155, 127230,127283,29472,127336,127389,127442,22664, 0,29366,29365, 29349,22724, 0,29371,29367,29397,127517,127570,29400,29398, 29421,22860, 0,29410,29401,22927, 0,29466,22981, 0, 29411,127623,127676,29467,29493,29521,29474,23051, 0,29514, 29541,29517,23069, 0,29515,29542,23189, 0,29468,23191, 0,29554,29201,30230,28371,25735,127729,127783,29555,29556, 29519,127837,127891,127945,29557,127998,29559,29558,29543,29592, 29564,128039,128087,23244,128135,28932,128183,29609,23280,27038, 128231,29611,128279,29621,27597,29657,29658,29659,29664,29694, 29712,29742,128327,29622,128375,29707,29563,29753,29755,29801, 29887,29760,29791,29844,30045,29847,128423,29623,128471,29811, 29607,29883,29929,29930,30276,29863,128521,30029,30102,30155, 128569,29626,29890,128617,29627,30268,30269,29895,29983,30322, 30336,128665,30390,128713,26520,30208,23346,25383,24267,27361, 29634,30296,29347,30462,29693,128770,26524,30025,29758,30320, 30131,30330,30393,29800,30460,30461,30513,30497,30064,30515, 30349,128827,24482,28208,24695,30559,24989,29649,30246,30274, 29931,29937,30758,30044,30378,26613,26889,26781,26228,26926, 24152,27461,29733,30270,30350,26581,30066,29958,29932,29250, 30184,27499,128865,23373,30454,128941,129017,23547,24001,27467, 30699,29905,129084,129151,129226,129302,129378,30768,30680,129444, 30809,30867,30876,30915,30961,129512,25335,29731,129580,28980, 29415,29654,129628,28672,129688,30240,31255,30797,30835,31306, 29709,31413,30949,28191,129767,129820,29703,29751,29783,129873, 129926,29749,29799,29875,129979,130032,29800,29928,29957,130085, 130138,29801,29977,30068,130191,130244,30032,30031,130297,130350, 30242,130403,130475,130528,130581,130634,30264,31009,30271,130687, 130740,30348,30385,130793,130846,30384,130899,130971,131024,31817, 31071,131077,131153,23350,23400,30311,131232,131286,131339,131393, 29720,30409,131472,31059,31107,30698,30752,30905,131525,28350, 31992,131579,131632,131686,30505,30569,131765,31155,31203,31359, 31097,31145,131818,29180,131872,131925,131978,132032,132086,132133, 132180,132227,30971,26029,31403,132265,23452,23565,132325,23609, 132404,132458,132511,132584,31337,31466,31520,132638,30751,31356, 132705,31019,132762,31479,31193,132822,31240,29998,132863,31241, 31553,31554,132911,25503,26204,132971,133050,133104,133157,133210, 133263,30447,133316,133369,133422,133481,133518, 0,27555,31610, 133572,133626,23610,23660,133668,31242,133716,31555,31290,133773, 31291,31649,31650,31292,133833,31651,133874,31303,133922,31698, 30464,31371,31699,31745,133982,134036,134090,24507,134144,134197, 134270,134320,30473,30485,134380,134433,30555,134486,134539,134592, 134653,134706,134759,28098,27488,23695,28344,134820,26775,23763, 23841,30518,23911,27762,29879,31376,31577,31313,24405,30673, 30328,24064,30911,30533,134883,24151,24316,28743,24403,32059, 32112,31460,32165,31514,30833,31721,30674,31673,134936,134989, 30803,30526,30522,135042,135095,31034,30750,30676,135148,135201, 31428,31237,30677,135254,135307,31549,31238,135360,135413,31554, 135466,135519,135572,135647,135700,31755,135753,135806,135859,24397, 0,31556,31380,30805,24486, 0,31603,31382,30912,135934, 135987,31604,31396,30915,24614, 0,31605,31448,24615, 0, 30981,24699, 0,31645,136040,136093,31652,31550,32214,31007, 24804, 0,31693,31650,31008,24851, 0,31694,31679,24926, 0,31077,24944, 0,31695,31103,32273,31456,25018,31145, 31001,136146,136203,26514,26949,29126,29277,31700,29019,27347, 30118,30278,28334,31773,136260,136317,136374,26879,27604,28849, 136436,136493,136561,136636,136694,136747,31748,31766,31011,136800, 136853,31749,31782,136906,136959,31811,31783,137012,137065,31812, 137118,137171,137224,137285,137338,137391,31030,137452,137505,31813, 31784,31107,137558,137611,31817,31833,31126,137664,137717,31843, 31848,137770,137823,31860,137876,137948,138001,138054,138107,31861, 31862,138160,138213,31863,31865,138266,138319,31866,138372,138444, 138497,31824,32353,31946,28780,31150,25582,31097,138550,138603, 31098,138662,27674,138725,138779,29759,25168,31879,27751,32416, 138830,32469,31529,32375,31218,32491,31914,138877,138930,31867, 31903,31130,138983,139036,31897,31904,31174,139089,139142,31913, 31916,31176,139195,139248,31917,31922,139301,139354,31923,139407, 139460,139513,139568,139621,32307,31924,139674,139727,31926,139780, 139833,139886,25224, 0,31974,31930,31200,32246,32529,32520, 32543,32557,139930,32000,32617,30832,31348,31404,139983,140037, 31986,31958,31485,140091,140145,140199,31987,140252,31973,31988, 31606,32019,31608,31296,31401,32143,32006,140293,31663,140341, 32091,30883,140389,32036,31147,32224,25432,140437,32047,32144, 140485,32037,31720,32225,25515,32530,32479,140533,32101,32196, 140581,32090,31722,32316,25659,32627,32480,140629,140677,32197, 32256,140725,32274,31723,32317,25681,32637,32554,140773,140823, 29994,32447,32389,32390,32564,32591,140871,32223,140919,32631, 31795,32318,32676,32691,32633,32391,140967,32744,32763,32772, 28491,32809,32926,32972,141015,31602,30804,31513,30668,32649, 31245,32171,32410,32620,32423,32931,32945,33012,33013,33014, 33061,31247,33041,33098,32703,33158,30805,31246,30166,31427, 32536,32706,32404,32261,32681,32605,32027,32623,30167,31297, 29556,31872,31875,27199,32064,32405,29831,32532,30423,32117, 32677,32558,32735,32170,31531,141042,32262,25851,141118,141194, 30404,32242,141261,141328,141395,141471,141547,32347,26937,27466, 28825,32828,32733,25824,31823,32118,33138,33006,33165,33214, 33280,33190,33237,33307,29612,141625,141678,32328,32127,31849, 141731,141784,32378,32549,31953,25881, 0,32672,32576,31954, 25882, 0,32767,32713,32222,141837,141890,32768,32769,32277, 25953, 0,32770,32781,25967, 0,32864,26033, 0,32803, 141943,141996,32805,32806,33356,32333,26051, 0,32807,32808, 32355,26110, 0,32812,32858,26231, 0,32878,26247, 0, 32879,142049,33412,142103,142179,26341,26336,32301,142258,142312, 142385,142439,142518,142572,142614,32719,142674,32904,32825,32958, 142753,33331,33028,32884,32995,32465,33465,33390,142807,33525, 142860,142933,142987,143041,143082,32899,26414,33020,33090,33039, 143142,33086,32885,33016,32466,143195,143248,143324,143384,143438, 33443,28978,33168,143480,26403,26454,143540,143619,143673,143726, 143779,143832,143891,143928, 0,30129,33496,143982,144036,26572, 26646,144078,33038,144126,33290,33085,144183,33097,33556,33255, 33123,144243,33305,144284,33124,144332,33515,32652,33224,33557, 33610,27230,29717,144392,144471,144525,144578,144651,33578,33147, 144704,144758,144812,144885,144939,33631,33148,32898,144993,145047, 33210,145101,145155,145209,145270,145324,145378,145439,33679,33717, 33739,145481,33152,33523,145529,33265,145586,33691,33365,33044, 145634,33266,145682,33853,33045,33397,33854,33652,145742,145783, 33294,33855,145831,33513,33881,33908,33621,33907,33926,33927, 145891,145970,146024,146078,146151,146204,146257,146310,146363,33220, 26767,32941,32357,146436,146489,33276,33135,146542,146595,33331, 146648,146701,146754,146829,146882,146935,146988,147041,147116,32930, 26782,30425,147178,29877,26802,331800,33472,33638,30117,33268, 33239,33929,34016,33979,33681,26863,33928,30669,26834,33528, 33642,33529,30170,32935,147236,27917,34220,147286,34261,34301, 34343,34008,34400,34306,147333,147386,33673,33181,32531,147439, 147492,33674,33216,32583,147545,147598,33737,33352,32802,147651, 147704,33849,33593,147757,147810,33850,147863,147916,147969,148024, 148077,34066,33852,148130,148183,33856,148236,148289,148342,26896, 0,33921,33676,33102,34131,34457,34181,34523,34251,148394, 34016,148444,33913,33129,32551,33530,33693,148504,148561,29936, 148634,34561,27797,33927,30491,33357,33985,33823,148691,148748, 29084,33973,148805,148862,148919,148980,149037,29618,149094,31358, 33611,32937,32010,149155,149229,149301,149354,149407,33974,33851, 33861,149460,149513,33979,33936,33909,149566,149619,33980,33975, 33941,149672,149725,34011,34012,149778,149831,34041,149884,149937, 149990,150065,150118,150171,150224,150277,26915, 0,34059,34014, 33962,27024, 0,34060,34015,34062,150352,150405,34089,34087, 34064,27046, 0,34099,34100,27115, 0,34109,27120, 0, 34102,150458,150511,34108,34104,34086,27207, 0,34139,34137, 34088,27367, 0,34149,34140,27425, 0,34155,27526, 0, 34152,34303,150562,34359,31558,30112,28452,31692,32137,150613, 28257,150670,29511,150739,150793,34154,150835,34150,34158,32081, 33459,34210,32186,34613,34434,34622,34458,34658,150895,150948, 34190,34191,34267,151001,151054,34192,34227,34268,151107,151160, 34193,34229,34307,151213,151266,34231,34230,34309,151319,151372, 34271,34269,151425,151478,34275,151531,151603,151656,151709,151762, 34326,34505,34310,151815,151868,34337,34324,151921,151974,34368, 152027,152099,152152,34680,34555,32134,30365,152193,152241,27585, 152289,152337,32934,32734,27579,27588,152385,152433,27642,27636, 34402,33654,34358,34372,34562,34563,152481,152529,27700,27710, 34477,33858,34564,34444,34565,34627,34657,34694,152577,152625, 27736,27790,34499,34318,34681,34655,152675,34733,34765,34787, 34707,34708,34793,34787,152723,152771,27871,27864,34502,34362, 34847,34789,152819,34888,34920,34942,152867,152915,34454,34953, 152963,34532,34373,34668,27885,34956,34957,153011,153059,30237, 34979,34988,35014,33272,33605,34653,32485,35007,34189,34583, 33601,34586,34526,34881,34977,35016,35031,35045,35089,35047, 32863,35067,35087,35116,35125,34345,33077,30959,34401,34709, 34779,35136,35064,33984,35140,35032,34194,31965,29320,30519, 34429,34614,31442,34616,34648,34618,34878,33584,35144,34035, 34130,34876,34426,31582,153086,35241,153162,153238,31977,153305, 153381,153448,153524,35283,35296,35315,35361,35405,27958,32120, 27976,34853,32262,35415,35200,33345,35404,35481,35519,35308, 30649,153602,153655,34527,34448,34347,28055, 0,34939,34615, 34461,34862,35054,35088,35149,35197,153696,34992,153749,153802, 34764,153855,153931,28191,28253,28259,154010,154064,154117,154170, 154243,154297,154351,154405,28424,34986,154484,154537,32823,34680, 28449,154590,34873,35114,35144,34704,35009,154669,35544,35589, 35635,34503,30173,154723,154777,28495,28533,154831,28674,30769, 154872,154932,35680,33186,35199,154974,28544,28588,155034,155113, 155167,155220,155273,35043,155326,155379,155432,155493,155546,155599, 155660,35725,35770,35815,155702,34964,35143,155750,35011,155807, 35263,35216,35000,155855,35111,155903,35325,35043,35227,35429, 35327,155963,156004,35147,35370,156052,35253,35431,35446,35257, 35491,35554,35448,156112,156185,156247,156326,156379,156432,156485, 156538,35174,156599,34924,156659,156712,156765,156819,156872,156925, 156978,157031,35199,35855,35223,35181,157104,157158,157211,35254, 35278,157264,157318,157371,35315,157424,157478,157531,157584,157659, 157712,157765,35884,157818,157872,157925,157978,158053,158132,158186, 30756,35925,34623,34877,35317,35271,158228,35337,158276,35568, 35372,158333,35378,35599,35607,35434,35613,158381,35382,35657, 158429,35424,35702,35647,35490,35704,35735,35737,158489,35483, 35521,35544,35609,158530,35430,158578,35780,35508,35532,35792, 35825,35772,35640,158638,158717,158771,158824,158877,35515,158930, 158983,35542,159036,159089,159142,35328,35201,159204,159257,35587, 35377,35242,159310,159363,35629,35410,159416,159469,35674,159522, 159575,159628,159683,159736,35685,159789,159842,35723,159895,159948, 160001,160056,34677,34778,160125,35441,35668,35776,35484,35653, 35951,35812,35512,28623,35846,31970,28703,35875,35507,31193, 31027,32914,35791,34780,35873,35944,35641,35877,35884,35993, 36018,36058,36024,36085,160178,160231,35770,35546,35277,160284, 160337,35857,35555,35367,160390,160443,35887,35571,35398,160496, 160549,35891,35676,35594,160602,160655,35923,35727,160708,160761, 35924,160814,160886,160939,160992,161045,35945,36067,35752,161098, 161151,35946,35783,161204,161257,35951,161310,161382,161435,36125, 36154,35853,31604,35152,161488,161545,32033,161602,161659,161716, 32089,35958,161777,33030,35853,35660,161831,35922,161888,161945, 32450,35987,33301,35890,162002,162059,33209,35988,162116,162173, 162230,33424,162305,162362,36134,36200,33504,162419,162476,162533, 33553,35718,28942,35986,162608,162665,35942,162724,162777,35989, 35907,35986,162830,162883,36013,36020,36041,162936,162989,36075, 36024,36065,163042,163095,36079,36066,163148,163201,36080,163254, 163307,163360,163415,163468,36136,163521,163574,36137,163627,163680, 163733,28868, 0,36146,36081,36127,36220,37083,36840,37137, 37190,36214,36174,36176,36188,32463,32190,33937,32817,32701, 163788,35820,163862,31818,163930,163984,36147,36096,164026,29000, 36133,32860,33733,36275,36234,36309,37231,35333,37284,36378, 164086,164139,36152,36165,36202,164192,164245,36200,36167,36231, 29065, 0,36201,36216,36240,29141, 0,36244,36235,36315, 164298,164351,36270,36268,36316,29160, 0,36281,36288,29256, 0,35567,29274, 0,36284,164404,164457,36318,36317,36390, 36344,29321, 0,36327,36329,36410,29323, 0,36330,36331, 29416, 0,35703,29417, 0,36333,164510,37337,33292,34678, 35456,35901,36429,36418,164552,164600,29470,164648,29473,29512, 36427,35806,164696,29540,164744,29571,29605,36428,36381,164792, 29660,164840,29661,29748,36430,36382,164888,164936,29802,164984, 29835,29902,36431,36432,165032,165082,31347,36486,165130,29926, 165178,29987,30025,36479,36455,165226,165274,31965,36534,36071, 36561,36580,36562,165322,165370,30047,30040,36480,36476,36627, 36611,165418,36543,36678,36687,165466,32504,37390,37417,37463, 30099,36478,32665,36552,36676,30118,34419,36724,36900,35987, 37084,36772,36819,36820,37422,37528,36719,36918,37171,37526, 37436,36573,33384,33935,36577,36206,36600,37013,36966,37509, 37111,36720,36717,36621,34918,34760,34377,30169,35083,30242, 36817,35546,37043,35744,36744,37238,35969,36531,37138,34569, 165493,36929,165569,165645,165721,165788,165855,165931,166007,35322, 30675,35094,31349,31840,33512,37241,37622,37294,36812,37675, 30536,30260,36563,36794,35406,166085,166138,36337,36332,36653, 166191,166244,36384,166297,166370,166446,30280,30326,32966,36571, 166525,166578,36569,166631,166684,166737,166799,166853,166907,36615, 166960,167014,167068,30352,30423,36618,167147,36703,167200,36730, 36767,36863,36680,36701,37733,37784,37318,31429,167279,35957, 167352,167405,167478,167540,37023,33113,36889,167582,30449,30534, 167642,167721,167774,167827,36718,36716,167880,167933,36720,167986, 168039,168092,168167,168220,168273,168326,168379,37804,168454,168508, 33401,37368,36814,36815,36816,36864,168550,36881,168598,36960, 36913,168655,36959,36961,37056,37009,37067,168703,36971,37109, 168751,36972,37110,37608,37182,37174,37815,37756,168811,37326, 37393,37504,37451,168852,37007,168900,37400,36862,37502,37921, 37856,37563,37503,168960,169013,169082,169135,36761,169188,169241, 36860,169294,169347,169400,36896,38022,36917,36895,169462,169515, 36962,169568,169622,169675,36967,30586,37162,169728,169781,37050, 169834,169887,169940,37536,38071,37062,170002,170056,170110,170163, 37063,30721,37505,37574,37064,170216,170270,170323,37090,30774, 37507,37642,170376,170430,170483,37144,30829,37612,170536,170589, 170642,170697,170750,170803,170856,38286,37160,170909,170963,171016, 37147,30934,37751,171069,171122,171175,171230,171284,37706,37909, 171326,171374,30910,171422,37124,171479,37841,30977,36985,171527, 37128,171575,37842,37217,37661,37948,38344,37557,37609,37843, 37611,171623,37179,171671,37854,37365,37860,38383,38384,37949, 37663,171719,37269,37947,171767,37270,38432,38478,37966,37967, 38480,38526,171815,171875,171929,171982,172035,37498,37383,172088, 172141,172214,37553,37431,172267,172320,37581,172373,172426,172479, 172540,172593,172646,37194,172707,172760,37708,37432,37196,172813, 172866,37777,37644,37223,172919,172972,37837,37891,173025,173078, 37977,173131,173203,173256,173309,173362,37994,37944,173415,173468, 37995,37946,173521,173574,37996,173627,173699,173752,173805,35189, 37216,37758,31049,38284,37666,37452,38025,38215,38988,36620, 31070,38073,33675,31109,36647,36477,33604,36057,37291,34984, 34227,38345,39355,38406,38549,39400,38059,39472,38645,173878, 173931,37997,38020,37485,173984,174037,38066,38072,37564,31197, 0,38067,38076,37643,31199, 0,38073,38077,37712,174090, 174143,38082,38080,37822,31271, 0,38208,38180,31410, 0, 37821,31430, 0,38209,174196,174249,38210,38211,38583,37823, 31486, 0,38213,38308,37928,31551, 0,38279,38311,31631, 0,37927,31646, 0,38280,174302,39544,38437,36839,37722, 174362,174419,33555,38324,35162,174476,174533,35008,38325,174590, 174647,174704,35102,36098,38323,174754,38358,37558,37929,34235, 174808,174865,174922,35426,38327,36391,38336,37560,37983,174979, 175036,36195,38379,36572,38413,175093,175150,36968,38423,175207, 175264,175321,37332,37106,175378,175435,37334,38679,38426,37428, 37591,175492,175549,37388,38427,175606,175663,175720,37637,37673, 34441,35680,37739,175777,175834,34845,175887,175940,38428,38429, 38079,175993,176046,38430,38461,38198,176099,176152,38433,38475, 38219,176205,176258,38476,38477,38285,176311,176364,38479,38478, 176417,176470,38512,176523,176595,176648,176701,176754,38521,38604, 176807,176860,38522,38605,176913,176966,38576,177019,177091,177144, 38485,38791,38650,34722,38276,37704,38521,35643,177197,33458, 177256,36996,177309,177363,38577,38606,38307,37259,38713,38697, 37709,38928,38190,39034,39410,39616,38765,38813,39500,177417, 177470,38578,38608,38309,31709, 0,38618,38704,38346,38823, 38871,38853,39133,39152,177511,38826,177564,177617,38373,38377, 35039,177658,31778,177706,177754,31780,31773,177802,177850,31827, 31963,38527,38551,38901,39199,38902,177898,177946,32071,32065, 39200,39230,39231,39295,39277,177994,178042,32124,32169,39296, 39326,178092,38735,38959,39162,39327,39411,39443,178140,178188, 32178,32184,39546,39385,178236,39253,39587,39640,178284,39386, 39651,39445,178332,178380,32193,32345,39655,39387,178428,39713, 39735,39766,178476,178524,32354,178572,32356,32406,38622,38620, 178620,178668,33416,39788,39826,39522,32462,33938,37850,38340, 39316,39318,39817,39794,39822,39498,39675,39791,39844,39887, 38723,39708,39819,39907,39889,37994,37996,37629,38469,38032, 39848,39545,39861,39547,39793,38768,39845,38520,38598,38726, 38815,36384,39357,38845,38891,39358,39010,32550,39401,39181, 39548,39892,38842,34723,178695,36791,178771,178847,178892,38673, 33055,34013,38649,32814,36710,39405,38933,37812,37380,38891, 38867,34077,178968,179035,179102,179178,179254,179330,39844,38731, 35234,36483,34495,39946,39979,39988,40010,40049,39191,179401, 40001,38380,40058,34931,32609,38174,179454,179507,38674,38763, 39226,179560,179614,179667,179720,179796,32629,32677,39241,37048, 179875,38852,179928,38815,38811,179981,180034,38860,180087,180140, 180193,180254,180315,180369,180448,38975,180524,39032,38976,39241, 180584,180637,180691,180744,180813,180866,40080,39242,39917,180923, 32689,32730,180983,181036,38862,38911,39227,181089,181142,38865, 39128,181195,181248,38962,181301,181354,181407,181462,181515,181568, 181621,39189,181674,181727,181780,181835,181889,40114,40123,181931, 39147,39674,181979,39210,182036,39855,39290,39837,182084,39490, 182132,40019,40133,39686,40134,40135,39915,40016,40017,40174, 182180,39561,182228,40132,40137,39934,40190,40138,40080,40081, 182276,39563,40136,182324,39564,40191,40142,40067,40153,40192, 40193,182372,182432,182485,182558,182611,39190,39130,182664,182717, 182790,39286,39410,182843,182896,39468,182949,183002,183055,183116, 183169,183222,39273,39317,183283,183356,183409,183463,183516,39297, 33073,39940,183569,39941,183642,183695,39588,39661,183748,183801, 39589,183854,183907,183960,184021,39361,184082,184155,184208,184262, 184315,39439,33144,40008,40007,39479,184368,184422,184475,39666, 33218,40254,40225,39795,184528,184582,184635,39949,33286,40268, 40252,184688,184741,39591,184794,184866,184919,184972,185025,39826, 185078,185131,39844,40499,39665,185184,185238,185291,40004,33287, 40271,40253,185344,185397,40053,185450,185522,185575,185628,185682, 33743,40315,38724,38819,40188,39021,185724,39685,185772,40187, 39926,185829,39930,40349,40376,40140,40281,185877,40027,40282, 185925,40157,40429,40443,40375,40296,40517,40471,185973,40215, 40332,186021,40217,40544,40597,40394,40334,40794,40611,186069, 40377,40381,40430,40487,186117,40285,186165,40335,40242,40543, 40795,40639,40500,40383,186215,40664,40862,40881,186275,186329, 186382,40076,39717,40005,186435,186488,186541,186594,186647,40170, 39829,40077,186720,186773,40321,40194,186826,186879,40322,186932, 186985,187038,187113,187166,187219,187272,187325,33279, 0,40323, 40272,40082,33351, 0,40371,40384,40083,187400,187453,40377, 40428,40087,33409, 0,40424,40431,33459, 0,40248,33460, 0,40425,187506,187559,40458,40539,40231,33462, 0,40538, 40542,40232,33537, 0,40547,40543,33539, 0,40408,33591, 0,40570,187612,40433,39432,37113,40551,39408,36532,40598, 41086,187683,37705,33567,40625,39609,33703,40652,39550,38616, 40435,39473,39641,39945,41149,40622,40941,41216,41261,40967, 41013,41042,187730,187783,40593,40552,40503,33835, 0,40626, 40658,40545,40926,41003,40928,41002,40999,187833,40130,187886, 187939,37512,40519,40654,36999,37956,187992,188049,37765,40660, 38732,40661,40643,188106,188163,188236,37851,40667,38825,40671, 188293,188350,37906,40768,188407,188464,188521,188582,188639,38523, 188696,39647,40646,40796,40799,37762,36393,40856,40800,188757, 188814,38677,40789,39733,40790,40772,40798,38050,188871,188928, 39250,40821,39823,40832,40777,40855,188985,189042,40172,40874, 39947,40885,189099,189156,40372,40875,189213,189285,189342,40375, 40355,40876,189399,189456,40540,40899,40824,41270,40904,40905, 39482,189513,189570,40596,40941,40844,40947,189627,189684,40880, 41006,189741,189813,189870,40943,40923,40979,36579,40877,41014, 189927,189983,41015,36767,190034,190087,41015,41051,40969,190140, 190193,41045,41052,41016,33887, 0,41079,41069,41089,33890, 0,41082,41081,41093,190246,190299,41086,41098,41113,34024, 0,41108,41114,34085, 0,41127,34101, 0,41142,190352, 190405,41143,41115,41153,34166, 0,41144,41149,41157,34197, 0,41175,41165,34270, 0,41194,34319, 0,41210,41263, 190456,41187,40319,38673,41150,38187,40472,190507,37246,41173, 41206,190565,190619,41212,41182,41244,190661,38188,38916,41287, 41323,40669,41335,41334,41397,41433,190721,190774,41281,41269, 41263,190827,190880,41282,190933,41288,37885,40798,41291,41336, 190994,191042,34320,191090,34366,34375,191138,34481,191186,34554, 34648,41337,41290,191234,34766,191282,34781,34860,191330,191378, 34938,191426,34954,34950,191474,191524,36295,41455,191572,35178, 191620,35249,35333,191668,191716,36449,41487,191764,35447,191812, 35494,35510,191860,191908,38271,41509,41338,41401,41356,191956, 192004,35589,35654,41514,41340,192052,41586,41595,41618,192100, 37311,41640,41713,41766,36020,37384,41391,41529,41361,41527, 41613,41560,41773,41849,41864,41937,41686,41650,41706,41759, 41829,41972,41617,41935,41990,41988,37755,41126,40321,39332, 41860,41556,41682,41685,41865,41443,41806,40225,41106,40593, 40640,41411,41358,41658,41809,41701,41550,41709,41558,41360, 41333,192127,39807,41809, 0,192203,192253,192298,192344,192389, 192434,192479,192524,192570,192615,192660,192730,192775,192820,192896, 41504,41449,41231,41684,40398,41802,41809,41879,41217,38722, 40932,35800,41810,41933,41884,192972,193046,193113,193189,193265, 193332,39838,41105,38276,35803,41664,38432,41428,41172,41857, 41506,38573,41508,41706,37310,193408,193484,41985,41486,38864, 36212,41386,42102,41757,42199,42145,42260,42086,193555,39007, 193608,193661,193714,193767,193843,35920,35913,41993,41754,193922, 193975,41529,41674,41786,194028,194081,41552,41856,194134,194187, 41673,194240,194293,194346,194421,194474,194527,194602,194656,194735, 194788,35925,35968,194841,194894,194967,42176,40456,41995,195028, 36131,36261,195088,195141,41800,41906,41863,195194,195247,41807, 41907,41970,195300,195353,41915,41990,195406,195459,41916,195512, 195584,195637,195690,195743,195796,195849,41959,42009,195902,195955, 42016,196008,196080,196133,196186,196240,41058,42370,42020,42033, 42035,42046,196282,41878,196330,42104,42092,196387,42093,42196, 42393,42131,42218,196435,42094,42387,196483,42096,42558,42421, 42213,42388,42559,42560,196531,42210,42389,196579,42244,42612, 42613,42245,42390,42661,42703,196627,42202,42250,42434,42435, 196675,42392,196723,42432,42407,42586,42713,42714,42620,42440, 196773,42782,42814,42836,196833,196886,196960,197013,42436,42079, 41983,197066,197119,197172,197225,197278,42554,42114,42044,197351, 197404,42560,42127,197457,197510,42561,197563,197616,197669,197744, 197797,42894,197850,197903,197956,37529,198031,198084,198137,198210, 198263,198317,198370,42566,36307,42611,42641,198423,198476,198529, 42592,198602,198655,42607,42179,42639,198708,198761,42655,42430, 198814,198867,42656,198920,198973,199026,199101,199154,199207,39129, 199282,199335,36334, 0,42665,36361,42715,42716,42667, 0, 36339, 0,42694,36413,42860,42750,42695,199389,199443,199496, 42746,36512,42896,42751,42747,42777,36600,42914,42842,42788, 36644,42945,42854,36725,42936,199549,199602,42709,42431,199655, 199708,42712,42660,43003,42855, 0,36702, 0,42856,36740, 42941,42858,42857,42859,36793,42942,42877,42874,36934,42957, 42895,36937,43026,199749,199797,37052,199845,42669,199902,42937, 37047,41906,199950,42947,199998,42963,41968,42950,43089,43090, 43030,43047,43189,43157,200046,43052,200094,43053,42406,43091, 43215,43104,43202,43158,43173,43186,43258,43242,200142,43054, 200190,43141,42744,43152,43252,43335,43305,43244,200240,43367, 43405,43427,200288,43055,43197,200336,43057,43439,43565,43208, 43300,43566,43608,200384,43633,200432,41385,43487,200492,200545, 200598,42938,42876,42897,200651,200704,42951,200757,200810,42996, 200863,200916,200969,43085,43000,201031,201084,43043,43090,43024, 201137,201190,43092,43138,201243,201296,43139,201349,201402,201455, 201510,201563,43196,201616,201669,43198,201722,201775,201828,37197, 0,43248,43253,43069,43277,43320,43437,43438,43319,42915, 201883,41633,40851,43175,42135,43527,42107,42138,43306,43337, 43404,43590,43141,37203,43290,37254,37325,42249,42251,39729, 42139,42403,43567,43662,43698,43568,43715,43791,43819,43756, 201937,201990,43254,43285,43218,202043,202096,43361,40860,202149, 43572,43229,41630,202222,202279,41997,43362,42108,43297,42593, 43364,41508,202336,202393,42621,202450,202507,202564,42622,43459, 42157,43567,42680,43450,202637,202694,42741,43460,42205,43568, 202751,202808,42779,43632,202865,202922,202979,42781,203054,203111, 43801,43864,42379,203168,203225,203282,42961,43042,42776,43065, 39142,43465,43908,43919,37335, 0,43049,43655,42714,43615, 43539,43491,43367,39481,37554, 0,43122,43658,42899,43630, 43598,43627,43407,203357,203414,43304,43660,43221,43645,43599, 43700,37603, 0,43447,43662,43469,43701,37670, 0,43689, 43448,37672, 0,43507,43691,43631,43614,43506,203471,203528, 43671,43705,43677,43722,43698,43942,43732,43546,40204,37803, 0,43693,43729,43715,43735,43738,43784,37907, 0,43716, 43754,43764,43747,37908, 0,43797,43799,37978, 0,43821, 43814,43812,43813,43827,43817,43360,43859,203585,43988, 0, 203641,44034,43086,43840,203675,203728,43859,43819,43857,37980, 0,43862,43860,43902,43916,43995,44035,44037,44041,43918, 203781,43945,44061,40552,43869,41916,41041,43836,203835,39891, 41388,41681,203888,203942,43881,43914,43935,203984,37981,42346, 44067,44145,44112,42992,44155,40312,38027,43607,44183,204044, 204097,43943,43946,43970,204150,204204,204257,38031,42619,204298, 38085,39008,38078,204346,38196,38189,44005,44071,44101,204394, 38380,38450,204442,44009,44161,44176,204490,38528,38571,204540, 44263,44308,44353,44056,44175,44203,204588,38581,38667,204636, 44398,44436,44445,204684,44097,44209,44235,204732,38676,38801, 204780,44465,44503,44512,204828,44099,44263,44236,204876,38810, 38855,204924,44532,44578,44587,204972,205020,38961,205068,38965, 38959,205116,205164,41461,44607,44346,40913,43978,43959,43943, 44230,44434,44314,44109,44237,44401,44403,44610,44607,44132, 44181,44612,44341,44583,44657,44663,44063,43966,43985,44111, 44638,44655,44550,44609,44386,44228,44040,42188,44201,44082, 44083,44296,43987,44152,44500,44269,44439,44438,44298,44661, 42755,205221,44702,205298,205343,205393,205438,205483,205528,205573, 205618,205668,205713,205758,205804,205849,205894,205939,206008,206053, 206129,40965,41148,44630,44297,44058,44337,43976,44025,44140, 44364,44275,44499,41275,44661,44673,206205,206280,206347,44741, 206423,206490,206557,206624,206692,206759,206826,206893,206960,207028, 207095,207162,207232,207299,207366,207442,44280,44711,44317,44370, 44437,44183,44629,44739,44430,44603,44508,44044,44149,44431, 44680,44674,207518,207594,43746,39354,44787,44762,44809,41782, 39023,44785,44847,44856,44537,44878,44470,207672,207725,44159, 44261,44744,207778,207831,44438,44199,44136,207884,207937,44506, 44302,44290,207990,208043,44526,44392,208096,208149,44527,208202, 208255,208308,208363,208416,44601,208469,208522,208575,208630,208684, 208737,208811,208885,44523,39026,40574,39183,208964,209017,44610, 44545,44645,39251, 0,44639,44743,44716,209070,209123,44701, 44768,44781,39381, 0,44736,44777,39417, 0,44782,39432, 0,44770,209176,209229,39480, 0,44802,44804,44846,39594, 0,44808,44819,39595, 0,44853,39659, 0,44847,209270, 44864,44875,209318,44876,209375,44897,44893,44576,209423,44914, 209471,44915,44703,44916,44921,44926,44929,44937,44945,44960, 209519,44939,209567,44944,44758,44982,44983,44943,44980,44954, 45002,45003,45004,45018,209615,44956,209663,44998,44818,45032, 45028,45036,45049,45038,209713,45085,45132,45141,209761,45051, 45062,209809,45063,45152,45103,45073,45095,45154,45156,209857, 45204,209905,41629,45228,209965,210018,210072,210125,44870,44892, 44850,210178,210231,44880,210284,210337,44981,210390,210443,210496, 44906,45078,210558,210611,44984,44999,45083,210664,210717,45052, 45080,210770,210823,45090,210876,210929,210982,211037,211090,45273, 45092,211143,211196,45102,211249,211302,211355,41755,211410,211463, 45135,211516,211569,211622,211684,211757,211811,211864,45139,39740, 45166,45167,45171,211917,211970,45148,212023,212076,212129,212191, 212244,45155,45153,45176,212297,212350,45197,45199,45223,212403, 212456,45200,45222,212509,212562,45226,212615,212668,212721,212776, 212829,45230,212882,212935,212988,44041,213043,213096,39716, 0, 45231,39756,45266,45268,45270,45284,45298,45297,45317,45342, 213150,39732,39775,39774,39868,45364,45343,44318,45013,45282, 45231,213191,45292,213239,45337,44880,213296,45327,45080,45300, 39847,213344,45302,45340,213392,45329,45326,45384,39945,45386, 45405,213440,45401,45403,213488,45341,45362,45406,40059,45416, 45427,213536,213584,45411,45435,213632,45402,45370,45459,40081, 45461,45471,213680,213730,42565,45497,45433,45448,45553,45485, 213778,45431,213826,45472,45432,45521,45547,45549,45601,45502, 213874,45652,45661,45700,43256,45946,46381,46513,213922,213982, 214035,214088,45397,45272,45369,214141,214194,45462,45301,214247, 214300,45471,45362,214353,214406,45491,214459,214512,214565,214626, 214679,214732,45555,214793,214846,45504,45457,45557,214899,214952, 45541,45545,45602,215005,215058,45543,45548,215111,215164,45581, 215217,215289,215342,215395,215448,45588,45579,215501,215554,45591, 45592,215607,215660,45597,215713,215785,215838,43360,45181,40146, 45688,45698,44965,45623,45763,46573,45810,40245,331800,45720, 40435,40454,44966,40970,45669,40499,45906,46834,46052,45859, 46626,45197,45618,45746,45811,215891,215944,45733,45724,45700, 215997,216051,216104,216171,45745,43459,45717,216224,216281,45113, 45736,45169,45769,45740,45701,44325,41065,216338,216395,45251, 45773,45201,216452,216509,45422,45820,216566,216623,216680,45782, 45440,45772,45787,45702,44667,216742,216799,45784,45829,45469, 45788,45836,45723,216856,216913,45830,45831,45510,45865,216970, 217027,45840,45833,217084,217141,217198,45842,45737,217255,217312, 45846,45990,45878,45880,45838,217369,217426,45847,45916,217483, 217540,217597,45888,45929,45887,43363,45599,45915,45600,45934, 40521, 0,45985,45983,45989,46013,45882,45942,45986,43834, 46684,46737,46852,46905,46958,47011,47064,47170,47223,217643, 49038,46087,44722,46078,217700,217770,44365,40571,217807,217860, 45984,46015,45966,217913,217967,218021,46054,46024,45962,43910, 45000,45938,46053,40801,46027,44808,218094,218148,46073,46074, 46012,45058,46118,46114,46005,46785,47112,46170,47319,47372, 46197,218195,46266,46219,47425,42895,40788,218248,218301,218354, 46070,46084,46127,46128,218395,40857,40914,218443,41241,41234, 218493,46182,46230,46241,218541,41327,41324,218591,43152,46278, 218639,41390,41384,218687,45264,46288,218735,41434,41441,218783, 46070,46326,218831,41506,41628,218879,46134,46335,46353,46472, 46354,218927,41637,41700,218975,46544,46597,46650,219023,46201, 45619,46470,46506,46649,46682,46709,46685,46819,46824,47044, 46866,46886,46939,46992,47490,46471,47151,46851,47116,47221, 47046,45813,46503,46202,46323,46686,46835,46991,46808,46663, 44730,46473,45960,46081,46298,46879,46689,46792,46504,46595, 46717,46903,46937,46486,219079,46965,219155,219200,219245,219290, 219335,219405,219450,219496,219541,219586,219631,219707,219752,219797, 219842,219887,219932,46518,46569,46632,46570,46101,46268,41832, 46100,46521,46684,46961,46522,46675,46624,46728,46897,220009, 220076,220150,220225,220302,220369,220436,220503,220570,220637,220704, 220771,220838,47253,47108,47014,47038,47110,46729,47174,47012, 43874,220914,46849,47141,47171,47486,46760,47090,47221,47143, 47424,41820,47302,47263,45069,47248,47536,47839,220990,221066, 46074,46759,47485,47637,47366,221137,47247,43481,47386,47692, 47435,46345,41938,221190,47205,46872,221243,221296,46597,46349, 46934,221349,221402,46651,46800,46936,221455,221508,46961,46977, 46962,221561,221614,47034,47146,221667,221720,47087,221773,221845, 221898,221951,222004,47191,47178,222057,222110,47249,222163,222235, 222288,222341,222394,222448,46938,222502,222555,47334,47258,46989, 222597,47263,47039,47200,47463,47505,222638,47400,222686,47570, 46346,222743,47387,46664,47588,42037,222791,47411,47582,222839, 47494,46960,47623,42111,47984,47880,222887,47453,47808,222935, 47496,47307,47809,42178,47985,47986,222983,223031,47537,47810, 223079,47546,47308,47811,42240,48034,48080,223127,223177,46188, 47668,47578,47625,47806,47804,223225,47559,223273,47814,47310, 47928,48082,48128,47886,47885,223321,47938,48138,48185,46029, 48383,48626,48679,223369,223429,223482,223535,47518,47447,47394, 223588,223641,47568,47448,223694,223747,47805,47500,223800,223853, 47815,223906,223959,224012,224073,224126,224179,47522,224240,224293, 47816,47578,47604,224346,224399,47874,47606,47800,224452,224505, 47875,47674,224558,224611,47876,224664,224736,224789,224842,224895, 47931,48233,47675,224948,225001,47980,47909,225054,225107,47986, 225160,225232,225285,43304,225338,225391,225464,47962,47987,47981, 225517,225570,48025,225623,225676,225729,225790,225843,225896,225957, 226010,226064,226117,47821,42266,48305,48063,47887,226170,226223, 48028,47982,226276,226329,48029,226382,226435,226488,226549,226610, 226663,48032,48030,47888,226716,226769,48035,48031,47933,226822, 226875,48076,48077,47935,226928,226981,48078,48079,227034,227087, 48081,227140,227212,227265,227318,227371,48083,48254,227424,227477, 48131,227530,227602,227655,227708,227761,227802,227850,42257,227898, 227955,48109,48105,42250,42344,228003,228051,42435,42531,48157, 48127,48021,48087,48278,48309,228099,228147,42540,42600,48178, 48129,48326,48357,48373,48424,48425,48502,228195,228243,42609, 42618,48179,48130,48473,48521,228293,48531,48571,48580,48598, 48599,48725,48753,228341,228389,42693,42756,48227,48175,48726, 48754,228437,48778,48822,48831,228485,228533,48242,48282,228581, 48272,48176,48322,42780,48419,48418,228629,228677,46753,48870, 48973,48932,228737,228791,228844,48228,48256,47938,228897,228950, 48268,48270,48229,229003,229056,48316,48318,48230,229109,229162, 48320,48352,229215,229268,48353,229321,229374,229427,229502,229555, 229608,229661,229714,42962, 0,48413,48404,48304,42979, 0, 48414,48416,48376,229789,229842,48420,48451,48379,43025, 0, 48452,48459,43071, 0,48468,43124, 0,48461,229895,229948, 48464,48463,48426,43140, 0,48467,48465,48524,43200, 0, 48500,48498,43203, 0,48593,43306, 0,48649,47332,46847, 46953,47401,48673,48589,48867,49083,49020,49196,47627,43449, 47600,48890,43393,46832,44982,46718,49147,49265,49221,49400, 49526,49298,229998,49329,49101,49579,48819,47145,230051,230104, 230157,230210,48344,48863,230263,230320,47073,48712,47093,48595, 47177,48716,48234,45697,48723,230377,230434,47528,48713,47280, 48609,47983,230491,230548,47599,48714,47515,48749,230605,230662, 47634,48863,230719,230776,230833,230894,230951,47635,231008,47516, 48512,48775,48325,46033,231069,231126,48511,48894,47932,48892, 48513,48776,48621,231183,231240,48638,48905,48676,48939,48795, 48796,231297,231354,48674,48907,48908,48940,231411,231468,48873, 48985,231525,231597,231654,48952,48909,48911,231711,231768,48953, 48988,49010,49465,48955,48938,49018,231825,231882,48954,49011, 49012,48956,231939,231996,49022,49015,232053,232125,232182,49024, 49013,49048,47777,48772,48841,232239,232296,49172,43458,49102, 232354,232411,48861,49124,49187,232451,232504,49041,49108,48798, 49181,232557,232611,49297,49170,49123,49197,47459,47012,49216, 48769,47773,232664,232718,49102,49109,48870,232760,49222,49185, 49358,49223,49952,49625,49678,49372,232813,232866,232919,49118, 47363,44130,49224,49236,44911,49225,49403,232962,47451,49446, 45043,49243,49404,233010,45247,49330,49405,233058,47294,49439, 49437,233106,47665,49462,49477,233154,233202,43504,43554,233250, 48195,49550,44502,43769,49237,49294,49585,49582,49584,49723, 49743,49799,49857,49910,49271,49671,49725,49749,49955,49802, 43824,49256,49011,43917,49589,49666,49423,50005,49267,48520, 49269,47932,49300,49037,49303,49548,49369,49495,49667,49503, 49720,49302,49356,233277,49576,233353,233428,233473,233518,233563, 233608,233653,233729,233774,233819,233882,233927,233973,234018,234063, 234108,234153,45878,49693,49739,44008,44057,44104,44174,44188, 44377,48240,44421,44472,44528,44548,49797,234229,234296,234370, 234446,234515,234582,234649,234716,234783,49810,49842,49967,49860, 50020,49921,234860,50071,50073,50062,50425,45384,50212,49613, 49469,49683,49344,49667,48643,49170,49429,49454,49686,49974, 49475,49797,49848,49749,50018,234936,235012,46295,49553,49366, 50534,50320,50044,49119,45318,49632,235090,49888,49852,235143, 235196,49372,49770,48994,44640, 0,49640,49779,49017,44654, 0,49825,49867,49722,235249,235302,49879,49880,49797,44803, 0,49913,49932,44913, 0,49861,44986, 0,49942,45064, 0,49956,49979,49914,45168, 0,49974,49981,45184, 0, 49917,45250, 0,49991,235355,49669,235396,49195,50124,235444, 235501,50004,48177,50246,45412,235549,235597,45475,45489,50050, 49350,50052,50109,50252,50353,235645,235693,45550,45647,50098, 49409,50354,50111,50254,50355,50357,50406,235741,235789,45696, 45735,50219,49455,50407,50358,235839,50291,50450,50512,50359, 50360,50408,50410,235887,235935,45869,45956,50481,49721,50477, 50411,235983,50556,50565,50588,236031,236079,49282,50258,236127, 50589,50029,50470,46031,50613,50616,236175,236223,49666,50638, 50705,50666,49818,236283,236336,49997,50053,49958,236389,236442, 50077,50115,50058,236495,236548,50125,50244,50248,236601,236654, 50292,50344,236707,236760,50293,236813,236866,236919,236994,237047, 50761,237100,237153,237206,46082, 0,50294,50345,50253,46131, 0,50295,50378,50297,237281,237334,50398,50450,50409,46223, 0,50456,50460,46281, 0,50080,46348, 0,50458,237387, 237440,50468,50513,50824,50562,46361, 0,50525,50515,50615, 46364, 0,50530,50588,46482, 0,50602,46483, 0,50595, 50412,237493,237546,237599,237652,237705,50596,50880,50608,50616, 237778,237831,50665,50667,237884,237937,50674,237990,238043,238096, 238171,238224,51381,238277,238330,238383,238458,238511,238565,238618, 50617,46578,50728,50706,50632,238671,238724,50754,50688,50704, 238777,238830,50755,50726,238883,238936,50756,238989,239042,239095, 239170,239223,239276,239351,239404,50757,50727,50723,46554, 0, 50780,50773,50725,46606, 0,50783,50789,50767,239457,239510, 50799,50790,50768,46652, 0,50817,50828,46705, 0,50803, 46760, 0,50818,46766, 0,50819,50847,50769,46767, 0, 50842,50849,46815, 0,50859,46834, 0,50875,49677,239563, 49834,50474,50884,50523,239604,239652,46885,239709,47014,47007, 50892,50056,239757,47018,239805,47070,47066,50907,50400,239853, 47089,239901,47143,47219,50908,50735,239949,239997,47230,240045, 47284,47290,50909,50815,240093,240143,50730,50945,240191,47370, 240239,47388,47382,50910,50856,240287,240335,50853,50976,51001, 51002,51003,51004,240383,240431,47444,47452,50980,50919,51137, 51008,240479,51181,51203,51234,240527,49482,51256,51309,51435, 240587,240640,50878,50879,50982,240693,240746,50984,50991,51014, 240799,240852,51010,51004,51134,240905,240958,51120,51005,241011, 241064,51131,241117,241170,241223,241278,241331,51132,241384,241437, 51135,241490,241543,241596,47547, 0,51136,51102,51141,50700, 51324,51266,51320,51375,51251,51114,50564,51012,51178,51143, 48226,51327,51408,51495,51548,49878,51423,47508,50609,47775, 51191,51500,51604,51180,51756,51654,51707,51605,241648,241701, 241754,51138,51283,51249,241807,241864,49084,51341,49561,51278, 51321,51330,50493,48867,51327,51328,241921,241978,49729,51347, 49753,51342,51326,51400,51162,242035,242092,50299,51374,50480, 51376,51402,51403,242149,242206,50633,51447,50891,51404,242263, 242320,50664,51450,242377,242434,242491,50702,242566,242623,52043, 51782,50893,242680,242737,242794,50874,51473,51197,49020,51429, 47603, 0,51198,51468,51115,51456,51474,51477,51304,50082, 47619, 0,51200,51511,51272,51509,51478,51531,51340,242869, 242926,51215,51521,51360,51527,51510,51564,47669, 0,51377, 51522,51525,51546,47688, 0,51558,51416,47689, 0,51526, 51573,51528,51576,51430,242983,243040,51574,51626,51578,51588, 51632,52060,51652,51433,50943,47776, 0,51631,51679,51582, 51669,51633,51689,47881, 0,51681,51715,51636,51705,47934, 0,51717,51684,48044, 0,51685,51739,51756,51635,51575, 51732,51733,51662,50990,51719,51888,49562,51732,243097,243168, 51753,51788,51789,51891,243202,51924,51782,51303,51760,51142, 51730,51790,49973,51791,243256,243310,51807,51751,51823,243352, 48061,51820,51915,51946,51987,49263,48132,51945,52116,51997, 51858,52069,48133,243412,51770,243455,51429,51999,51917,243503, 51803,51892,52153,52180,52181,52333,52182,52369,52441,52350, 52162,52421,52474,52509,52423,52477,52710,51822,52106,52586, 52033,51922,51817,51907,51923,51821,51835,52031,52034,52343, 52004,52107,52104,51948,52159,52054,52179,243561,243606,243651, 243697,243765,243810,243886,243931,243976,244043,244088,244133,244178, 244223,244268,244335,51872,48678,52099,48272,52111,49720,51973, 51822,52461,49573,50635,52164,244411,244479,244546,244622,244689, 244764,244831,244898,244965,245032,245099,245175,245242,245309,245376, 245443,245511,245578,52150,52176,52309,48283,49739,52319,52509, 48344,48343,48331,48421,48516,48562,51221,48509,48566,48575, 48626,52130,245654,245730,52608,49835,49970,52373,52811,52643, 53301,52865,52418,51928,52387,51913,245808,245861,52204,51957, 52135,48659, 0,52209,52207,52191,52476,52346,52315,52329, 52330,52504,52539,245902,245950,48724,246007,48777,48785,52427, 52368,246055,48847,246103,49014,49056,52481,52370,246151,49125, 246199,49127,49165,52502,52424,246247,246295,49232,246343,49288, 49354,52503,52426,246391,246441,52104,52655,246489,49424,246537, 49443,49497,52550,52551,246585,246633,52141,52741,52682,52683, 52905,52783,246681,246729,49552,49667,52552,52553,52906,52699, 246777,52763,52842,52950,246825,52183,52972,53136,53194,246885, 246938,52545,52211,52340,246991,247044,52601,52433,52677,247097, 247150,52602,52442,52679,247203,247256,52781,52549,247309,247362, 52877,247415,247468,247521,247576,247629,53412,52900,247682,247735, 52904,247788,247841,247894,49863, 0,52907,52678,52680,53001, 53038,53092,53223,53287,247938,52931,53361,247991,248044,52909, 248097,248150,52987,248203,248256,248309,52694,53563,52331,52804, 248371,248424,53003,52745,52805,248477,248530,53004,52848,248583, 248636,53005,248689,248742,248795,248850,248903,53460,53007,248956, 249009,53009,249062,249115,249168,249223,249276,249329,53010,52886, 52883,249382,249435,53014,52902,52887,249488,249541,53016,53047, 249594,249647,53041,249700,249753,249806,249861,249914,53059,249967, 250020,250073,250128,250181,53061,53063,52888,49916, 0,53064, 53065,52990,53242,52463,250222,250270,250318,250375,49919,53070, 250423,250471,50006,50055,52575,52988,52785,53137,53236,250519, 250567,50122,50120,53238,53126,53234,53365,53288,250615,250663, 50222,50217,53367,53338,250713,53509,53518,53594,53366,53627, 53536,250761,250809,50226,50290,53628,53438,250857,53607,53650, 53676,250905,53537,53721,53704,250953,251001,50331,50380,53735, 53718,251049,53696,53793,53802,251097,251145,50410,251193,50465, 50521,53068,52961,251241,251289,52659,53851,53905,53689,251349, 251402,53095,53066,53045,251455,251508,53132,53102,53071,251561, 251614,53138,53215,53212,251667,251720,53232,53267,53214,251773, 251826,53291,53268,251879,251932,53297,251985,252057,252110,252163, 252216,53320,53357,252269,252322,53387,53470,252375,252428,53406, 252481,252553,252606,52688,52109,52787,50626,53764,52020,53277, 52801,53379,53820,53949,52332,53614,50593,52510,52531,52802, 53973,53747,54007,52818,53261,54005,54065,54032,53290,54087, 53351,252659,53380,53601,252712,252769,52024,53453,52656,53532, 53405,53217,52843,53111,252826,252883,52706,53454,52916,53534, 53455,53329,52845,252940,252997,52952,53601,53139,53546,53456, 53408,253054,253111,53092,53622,53691,53713,253168,253225,53153, 53729,253282,253339,253396,53730,53734,253453,253510,53766,54344, 53844,53736,53796,253567,253624,53812,53845,253681,253738,253795, 53846,53850,53259,53188,53407,53457,50786, 0,53848,53920, 53854,53875,53871,53458,53330,53559,54145,54185,54315,54371, 54355,54413,54412,54468,54486,253841,54466,53946,53531,54547, 53894,253898,53893,253957,254028,52965,53897,53974,53978,254068, 54039,52146,53167,53948,53926,53895,53264,53169,53528,254122, 254176,53943,53944,53669,53760,54119,53996,53600,54286,54592, 54080,254223,54074,53091,54144,54635,54112,254276,52200,52385, 54098,54140,54006,54279,54263,54352,54623,54397,54453,54038, 54387,54473,54656,54670,54660,54726,53951,54179,54177,54624, 54121,53693,54033,53983,54034,54010,54146,54462,54126,54205, 53871,54143,54280,54191,53621,254327,254346,254391,254436,254481, 254526,254571,254616,254661,254706,254751,254797,254842,254887,254963, 50781,53617,54040,53996,50796,54169,53817,54206,53941,255039, 255106,255182,255249,255316,255383,50771,54321,54324,255460,54347, 54490,54430,54520,54535,54607,54670,54671,54715,52710,53992, 54144,54307,52555,54320,51224,54145,54143,54537,50895,51080, 54349,255536,255612,52992,54108,54122,54321,53940,54788,54749, 54826,53381,54411,54501,54440,54637,54499,255690,255743,54403, 54253,53695,54037,255784,50873,255832,255889,50876,50934,255937, 255985,51023,51191,54601,53619,54274,54824,54776,256033,256081, 51202,51260,54828,54753,54793,54843,54851,256129,256177,51359, 51449,54864,54865,256227,54924,54969,55014,54880,54888,54896, 256275,256323,51507,51548,54927,54942,256371,55052,55061,55081, 256419,54944,54971,54987,256467,256515,51560,51605,55016,55081, 256563,55119,55128,55148,256611,256659,51615,256707,51617,51658, 54669,54432,256755,256803,53757,55186,55195,55208,256863,256916, 54414,54486,53950,256969,257022,54444,54530,54528,257075,257128, 54481,54548,54551,257181,257234,54594,54557,54614,257287,257340, 54596,54636,257393,257446,54652,257499,257571,257624,257677,257730, 54655,55217,54637,257783,257836,54722,54732,257889,257942,54782, 257995,258067,258120,55264,258173,258226,54788,54739,258279,258332, 258405,54827,54745,258458,258511,54838,258564,258617,258670,258731, 258784,258837,54795,54275,258898,258951,54860,54783,54891,259004, 259057,54872,54865,54903,259110,259163,54922,54884,259216,259269, 54931,259322,259394,259447,259500,259553,54967,55273,54918,259606, 259659,54969,54982,259712,259765,54986,259818,259890,259943,259996, 260049,260102,55012,54996,55054,260155,260208,55014,55008,55083, 260261,260314,55017,55076,55084,260367,260420,55055,55077,260473, 260526,55081,260579,260651,260704,260757,260810,55121,55142,260863, 260916,55143,260969,261041,261094,261147,261200,55146,55144,55123, 54414,54979,54646,261241,261289,51686,261346,51688,51730,261394, 51752,261442,51816,51810,55218,54869,261490,51820,261538,51868, 51862,261586,261634,51955,261682,52003,52069,261730,261780,54333, 55292,261828,52136,261876,52318,52369,261924,261972,55070,55339, 262020,52501,262068,52551,52599,262116,262164,55135,55348,55235, 55295,55297,262212,262260,52608,52683,55366,55310,262308,55427, 55436,55475,262356,54276,56462,56515,56568,262416,262469,55148, 55150,55188,262522,262575,55222,55215,55267,52744, 0,55266, 55221,55317,52757, 0,55286,55287,55343,262628,262681,55299, 55309,55346,52844, 0,55342,55345,52846, 0,55349,52860, 0,55347,262734,262787,55353,55362,55379,52861, 0,55360, 55363,55383,52903, 0,55468,55364,52951, 0,55400,52969, 0,55469,54169,54361,52966,331800,55538,54668,54633,54718, 55520,56694,56747,55729,53958,55184,52999,54755,53241,53043, 56800,56853,55586,262837,55634,55473,55635,56906,55873,262890, 53093,55470,262943,263000,54095,55499,54690,55370,55496,55401, 54727,54482,55447,263057,263114,54266,55508,55094,55509,55515, 55474,54867,54608,263171,263228,55348,55510,55165,55511,55517, 55544,54924,263285,263342,55521,55548,55523,55555,55562,55593, 263399,263456,55567,55595,55560,55596,263513,263570,55569,55605, 263627,263699,263756,55615,55608,55611,263813,263870,55617,55643, 55621,55763,55653,55657,55524,263927,263984,55622,55660,55658, 55688,264041,264098,55663,55661,264155,264227,264284,55665,55667, 55705,54905,55711,55096,55662,55708,264338,55913,264395,55778, 264468,264523,55665,55734,55791,55955,54278,55783,54724,55751, 55761,55735,55397,55757,54548,55759,264566,264620,55799,55800, 55786,264662,55809,55826,56615,56348,55946,55466,55220,55827, 53319,55005,56003,56355,55904,56097,56618,56050,56099,56146, 55953,56573,56909,56195,53170,57013,57043,56147,56290,55952, 55803,55828,55846,53186,55805,55905,56051,56240,56021,56242, 56439,56098,56591,55848,55870,264720,264796,264841,56015,56061, 264886,264931,56157,264976,265021,265066,265111,56433,265177,56203, 56302,57066,57122,56539,265254,265321,265388,265455,265522,265590, 265657,265724,265791,265858,265926,265993,266060,266130,266197,266264, 266340,266407,266474,266541,266608,266675,266742,266809,266876,55859, 56600,55862,55910,54902,266952,55849,53203,54370,53396,55822, 53354,54786,53448,55365,55045,267028,267104,55902,55942,57180, 56395,57233,56487,55242,56032,56576,56080,267182,267235,55946, 55836,56101,55948,56093,56094,56191,267276,267324,53556,267381, 53646,53684,267429,53750,267477,53751,53816,56237,56095,267525, 53827,267573,53828,53866,267621,267669,53927,267717,53941,53997, 267765,267815,55958,56718,267863,54081,267911,54176,54240,267959, 268007,55999,56771,268055,54252,268103,54265,54293,268151,268199, 56003,56824,56273,56940,56321,268247,268295,54401,54442,56941, 56338,268343,56877,57097,57158,268391,56263,57293,57346,57399, 268451,268504,56030,56028,56150,268557,268610,56173,56171,56197, 54509, 0,56221,56220,56244,54572, 0,56235,56269,56341, 268663,268716,56317,56270,56460,54615, 0,56385,56386,54670, 0,56624,54706, 0,56388,268769,268822,56390,56434,58421, 56495,54822, 0,56391,56477,56576,54823, 0,56489,56487, 54886, 0,56625,54951, 0,56541,268875,268929,268982,56542, 56583,56607,269035,269088,269141,269194,269247,56584,56606,56635, 269320,269373,56666,56656,269426,269479,56668,269532,269585,269638, 269713,269766,58526,269819,269872,269925,54960,55075, 0,56718, 56719,56677,55141, 0,56720,56772,56798,270000,270053,56721, 56824,56851,55245, 0,56774,56825,55316, 0,56918,55470, 0,56878,270106,270159,56879,56919,58574,56957,55473, 0, 56880,56938,56975,55564, 0,56943,56944,55565, 0,57007, 55612, 0,57063,270212,270265,270318,57097,56961,57124,55644, 0,57115,57116,57125,55689, 0,57118,57117,57198,270371, 270424,57192,57201,57199,55690, 0,57195,57202,55706, 0, 57226,55707, 0,57245,55712, 0,57248,57254,57252,55738, 0,57264,57291,55758, 0,57325,55760, 0,57266,270477, 270530,57267,57307,57276,270571,55803,56646,55796,270628,55809, 55876,57351,57432,57404,270676,55903,55896,270724,57433,57436, 57475,270772,55906,55944,270822,57500,57529,57551,57438,57591, 57489,270870,55959,56033,270918,57623,57632,57654,270966,57581, 57592,57595,271014,56077,56070,271062,57676,57707,57729,271110, 57596,57769,57759,271158,56091,56089,271206,57813,57835,57866, 271254,271302,56124,271350,56133,56126,271398,271446,56249,57888, 57948,271506,271559,57301,57308,57329,56174, 0,57362,57360, 57380,56489,57410,57001,57054,57352,56198,56241,57157,57558, 56666,57409,56178,57458,57597,58005,56437,57717,56281,56402, 56951,57298,58478,58179,57988,57925,57452,56277,56540,57439, 271612,271669,56618,57373,56745,57361,57430,57465,56633,56344, 57548,56605,271726,271783,56885,57673,56958,57466,57628,57593, 56920,57549,57723,56315, 0,57008,57741,56960,57760,57745, 57751,57062,57550,56327, 0,57122,57768,57012,57761,57747, 57840,57139,271840,271897,57160,57770,57196,57817,57908,57893, 56328, 0,57177,57773,57215,57870,56342, 0,57928,57424, 56392, 0,57442,57779,57271,57926,57231,271954,272011,57493, 57921,57324,57978,57958,58622,57907,57320,57946,56436, 0, 57510,57982,57462,57981,57979,57964,56439, 0,57545,58006, 57635,58016,56440, 0,58012,57546,56493, 0,57671,58028, 57654,57983,57670,58017,58011,58033,58034,56496,272068,58820, 272125,58038,57878,272196,58034,58077,58187,58134,58064,56899, 57829,58060,58084,58104,57153,58065,57006,57667,57824,272231, 272285,58085,58067,58105,272327,56546,57719,58131,58341,58129, 59335,58350,58409,57720,58082,58085,58182,58183,58441,58650, 58746,58667,59784,59823,58101,58185,58862,58958,59933,58479, 58494,58098,57775,57898,57722,56572,56827,58091,58338,58215, 58213,58339,58543,58106,58618,58522,58619,58495,57994,58230, 272385,272404,272480,272525,272570,272616,272684,272729,272797,272842, 57818,58155,58056,58680,272909,272976,273043,273110,273177,273244, 273311,273378,59267,58316,58881,58673,58427,57348,59211,58635, 56743,273454,273530,273597,273664,58777,58866,273731,273798,58960, 273865,273932,273999,274066,58969,59115,274132,59014,59063,59104, 59155,59200,274209,274285,58480,58099,59817,57842,58698,59054, 58661,58562,274351,56673,58523,56667,274408,56724,56717,59035, 59246,59227,274456,56727,56770,274504,59036,59297,59299,274552, 56780,56822,274602,59209,59381,59513,59301,59312,59534,274650, 56831,56825,274698,59559,59603,59612,274746,59490,59647,59630, 274794,56834,56881,274842,59699,59708,59747,274890,59535,59649, 59863,274938,56917,56929,274986,59756,59908,59955,275034,275082, 56991,275130,56993,57039,275178,275226,57665,59980,60005,275286, 275339,58206,58151,58423,57060, 0,58215,58647,58442,58793, 59792,58794,58892,59536,275380,58422,275433,275486,275539,275592, 58568,58694,58443,275645,275698,58663,275751,275804,58708,275857, 275910,275963,58742,58482,276025,276078,58750,58743,58546,276131, 276184,58898,58789,276237,276290,58900,276343,276396,276449,276504, 276557,60027,58904,276610,276663,58905,276716,276769,276822,57061, 0,58985,58790,58572,58436,59766,59791,59789,60023,276866, 59155,276919,276972,59225,58803,58595,57064, 0,59234,58888, 58596,59508,58145,59243,58747,277022,57161,57167,277070,57176, 57220,277120,60083,60105,60136,277168,57232,57242,277218,57969, 60158,277266,57306,57315,277314,58054,60189,277362,57378,57470, 277410,58318,60211,277458,57495,57523,277506,58357,60242,59864, 59865,59867,277554,57544,57591,277602,60264,60295,60317,277650, 277710,277763,59270,58983,58644,57917,57881,59198,57882,57862, 58640,60336,60045,60387,58686,58884,59507, 0,59123,57669, 60363,60437,60504,60818,60557,60597,57825,277816,277873,58865, 59318,58757,58984,59124,58690,58098,58573,58667,58523,57710, 0,58996,59325,59009,59031,59247,58813,58312,58575,60305, 60388,60438,60338,60615,60456,60490,60596,60633,277918,60649, 59650,59244,277975,278034,278091,59494,59696,278148,59816,278203, 59381,59631,60393,60434,59232,58455,59671,59812,60020,58520, 59669,59745,59790,278240,278294,59866,59316,58863,59369,59648, 59370,58834,59072,58688,60716,60550,60844,58190,59632,59911, 60648,60693,60047,60721,60820,60821,59944,60953,60779,60847, 58415,60950,60774,60390,60003,59868,58306,59807,58208,57811, 60340,59906,60359,60321,60356,60436,60078,60457,58836,60767, 60025,278346,278391,278436,278481,278549,278625,59943,59896,278694, 278761,278828,278895,278962,60898,60383,60951,61004,61038,61056, 279039,61057,61075,61086,61183,59735,279115,279191,279258,279325, 279392,60565,61011,60985,61061,61121,60067,59974,59274,59273, 60614,279469,58709,60112,61250,60976,58856,60459,60777,60165, 58857,59634,60751,60146,279544,57832,57876,279592,57904,57932, 279642,61208,61259,61360,279690,58153,58204,279740,58944,61382, 279788,58354,58416,279836,59135,61413,279884,58503,58561,279932, 59158,61435,279980,58597,58609,280028,59161,61454,60595,60882, 60753,280076,58621,58662,280124,61463,61486,61508,280172,280232, 280285,59927,59986,58962,280338,280391,60102,280444,280497,60155, 60193,59007,280550,280603,60261,60205,280656,280709,60328,60246, 280762,280815,60486,280868,280921,280974,281035,281088,281141,59532, 281202,281255,60565,60347,59577,281308,281361,60636,60369,59578, 281414,281467,60640,60385,281520,281573,60689,281626,281698,281751, 281804,281857,60691,61943,60465,281910,281963,60777,60485,282016, 282069,60870,282122,282194,282247,282300,282353,60872,60519,59579, 60592,60593,60617,60646,60819,60670,282396,59184,61539,60671, 60984,60773,282453,60720,61008,60775,282501,60754,61039,60880, 282549,60879,61065,61007,282597,282654,58715,58709,282702,59232, 61561,282762,282815,60881,60529,59580,60325,60002,59856,59621, 61011,61092,61621,61674,61727,282865,61013,58763,61165,59788, 58751,61598,61117,61776,61841,62065,59904,282918,282975,59984, 60921,60064,60922,61036,59937,60046,59315,60413,60337,60809, 60902,283032,283105,283162,60100,61034,60104,283219,61041,283290, 61109,61167,61733,61877,59983,61169,61171,61184,59765,59841, 60564,58812,283332,283386,61110,61105,60835,283428,60147,62001, 61376,62128,61571,60866,61170,61572,61679,61844,61989,61932, 61990,61678,61880,62025,61714,61138,61765,61875,61124,61042, 61426,61515,60386,58855,59718,61963,62050,61848,61624,61730, 61626,62067,61899,61549,283486,283505,283562,283638,283683,61181, 60116,283750,283825,283892,283959,284026,284093,284160,284236,284303, 284379,58902,58863,58981,58980,59003,59046,59041,59032,59089, 59234,61554,60225,59289,59311,59395,61178,59353,284446,284513, 284580,284648,284715,61129,61184,61615,284791,284866,284933,285000, 285067,285135,285211,60182,59499,61650,61870,60239,61028,60148, 62064,62100,60688,61680,61677,61777,62033,61766,61881,62116, 285279,60523,62150,61767,62092,62118,285336,61901,62186,62175, 285384,61943,62189,62179,285432,61974,62190,62191,285480,285537, 59380,59485,285585,61231,62243,285645,285698,61778,61215,61779, 285751,285805,285858,285911,61813,61417,61946,285964,286017,61814, 61634,61947,286070,286123,61815,61635,61969,286176,286229,61857, 61690,286282,286335,61871,286388,286441,286494,286569,286622,62269, 286675,286728,286781,59556, 0,61996,61699,62005,59557, 0, 62019,61867,62023,286856,286909,62048,61970,62071,59575, 0, 62066,62068,59576, 0,62168,59628, 0,62192,286962,287015, 62193,62170,62337,62169,59673, 0,62198,62213,62172,59675, 0,62209,62251,59719, 0,62243,59721, 0,62244,287068, 287121,62263,62264,62207,287164,62120,62274,62272,287221,60004, 60202,62271,59717,62295,62298,62407,59768,331800,62307,59956, 62273,62534,62430,62583,62481,62326,287281,287338,60206,62296, 60262,62302,62314,62341,60260,60414,62318,60437,62044,62319, 59775,287395,287468,287525,287582,287641,62379,287696,61370,62363, 62414,62573,62315,62394,62365,62392,62367,60079,62342,60973, 60925,60414,287730,287784,62381,62339,62390,287826,59864,60683, 62969,60630,60795,61931,62557,62436,62622,62626,62661,62381, 62537,62659,62696,61093,62694,62714,62449,60561,60831,60477, 62408,61220,62503,62603,62641,62404,62540,62433,62636,62638, 62485,61527,287883,287928,288004,288080,288147,288214,288281,59876, 62763,62699,288358,62717,288434,62421,61149,62612,61360,62726, 62622,62453,59896,62531,62696,62090,62568,62445,62004,59910, 62668,61396,62477,62744,62770,62773,62805,62869,62816,62826, 63037,288510,288577,288644,288711,288787,288854,61358,61560,62478, 62707,62509,60614,62512,60985,62835,62344,61700,60098,288922, 62639,62798,62820,288979,289039,289092,289145,289198,289251,62497, 62550,62589,289304,289357,62629,62566,62672,289410,289463,62684, 62723,62693,289516,289569,62737,62739,289622,289675,62792,289728, 289781,289834,289889,289942,64287,62793,289995,290048,62845,290101, 290154,290207,60191, 0,62846,62777,62830,290252,60209,60202, 60248,60320,63195,62910,62166,61850,62876,62930,63142,63039, 62925,62807,62950,64331,61625,290312,290371,290428,290485,61467, 290542,290599,62851,290665,62954,63002,63072,64351,62907,63036, 62908,62415,62872,62988,62976,290699,290753,62873,62896,62929, 62977,63079,63026,63030,63241,63135,62901,61775,61410,63075, 63200,63306,63286,61374,63357,63359,63198,63130,63229,63287, 63111,63238,63290,63253,62502,62634,63069,63338,62989,63201, 63235,63248,63150,62719,63306,290777,290853,290929,290996,291063, 291130,291197,291264,291331,291398,291474,291550,63277,63404,63405, 63118,63303,63332,63406,63434,60332,63459,63412,62968,63359, 63514,63569,291617,63121,63550,61457,63244,63455,291684,291751, 291826,291893,291969,292045,63382,63437,62943,63449,63397,63464, 63498,63523,292123,292176,63061,292229,292282,63073,62981,62991, 292335,292388,63168,63306,63022,292441,292494,63200,63352,63103, 292547,292600,63256,63394,63282,292653,292706,63391,63496,292759, 292812,63490,292865,292937,292990,293043,293096,63505,64419,63543, 293149,293202,63523,63545,293255,293308,63573,293361,293433,293486, 63311,61500,61088,63608,63524,63443,62293,63334,63674,63727, 60738,293539,293612,293669,61542,63598,61506,293726,62819,293798, 62692,63679,63604,63682,63525,63764,63574,63339,63624,63390, 62737,293832,293886,63604,63637,63474,293928,62990,61695,62941, 63678,63714,63766,63767,63839,63841,63522,63761,63762,63765, 61900,63519,60878,63541,63626,63733,63730,63835,63785,63627, 63845,63677,63892,61646,293955,294031,294098,294165,294241,294317, 294384,62791,63877,63715,61649,62107,61883, 0,61180,61450, 62080,62225,63825,62659,63668,63114,61835,63882,294451,60332, 294518,294585,294652,294719,294786,294853,294920,294996,295072,63919, 60819,62206,63164,63629,60377,63911,63844,60382,295150,295203, 295256,63757,63752,63605,295309,295362,63788,63810,63633,60418, 0,63825,63862,63655,60517, 0,63869,63917,63768,295415, 295468,63871,63930,63789,60531, 0,63924,63948,60674, 0, 63898,60757, 0,63968,295521,295574,63969,63970,64467,63818, 60876, 0,63971,63973,63847,60976, 0,63974,63975,61048, 0,63922,61081, 0,63980,63787,63895,63978,63044,63324, 64237,64116,64076,63818,62292,62327,295627,63838,295700,295757, 295816,295871,64110,63924,64139,64167,64085,64628,64192,64109, 64111,63980,64080,64113,64115,61791,295937,295991,63987,64108, 64163,296033,61100,64134,62782,64138,64324,64766,64786,64275, 64465,64242,61224,64513,64706,64164,64137,63165,64187,62453, 64160,64243,64170,64386,64277,64391,64240,64292,64295,64151, 296060,296136,296203,296270,296346,296413,296490,63117,64409,64628, 64663,62510,64106,64225,62565,61397,64269,63383,63919,61980, 62964,64338,64580,64782,64682,64736,64466,296557,296633,296700, 296776,63543,61536,63554,62054,64542,64318,296854,296907,296960, 64301,64198,64199,61595, 0,64302,64359,64220,62879,64535, 64300,64543,64439,297001,63263,64561,64626,64437,63520,65205, 64388,64308,63786,297054,297111,297168,297236,297291,63468,64581, 64639,64874,65196,64678,64712,64461,64638,64460,64463,297354, 297408,64413,64490,64537,64510,64595,64591,64533,64464,64500, 64767,64892,64946,64838,61699,64509,64927,64710,64764,64582, 64602,64505,64257,64546,64784,64761,64870,64839,64788,64981, 64630,297429,297505,297580,297647,297714,297790,297866,64060,64383, 64613,64616,64343,63653,64619,64792,64079,64126,64666,297933, 298001,298068,298135,298211,298287,64734,64654,64699,64962,64804, 298365,298418,64550,64597,64819,64887,64890,64790,64702,65048, 65236,64845,298471,64809,298525,298599,298655,64864,64944,65271, 64978,65085,64998,64925,64898,65058,64840,64923,298714,298768, 64864,64598,64899,298810,64907,62002,64707,65053,65107,65071, 65142,64910,64975,65082,65017,64508,64607,64908,64966,64457, 65156,64948,65109,65084,65231,65138,64973,298837,298913,298980, 299047,299114,299190,299266,65049,65000,64287,65154,65097,64535, 64724,65157,65231,65158,65162,299333,299400,299467,299543,299619, 65110,65113,64918,65267,65212,299697,299750,65256,64914,65081, 65209,65211,64168,65265,65004,65083,299803,299857,64762,299911, 299968,300024,65238,65287,65320,65324,65374,65322,65294,65414, 65161,65140,65269,300092,300146,65258,65154,65271,300188,62148, 64967,65321,65342,65377,65450,65252,65468,65478,65428,65315, 62162,63061,64818,65163,65375,65451,65474,65453,65360,65455, 65268,300215,300291,300359,300426,300501,300577,300653,65521,65544, 300719,65618,65667,65714,65765,65819,300787,300861,300928,301004, 301080,65828,62245,65494,65345,65548,65520,65495,65543,65550, 62341,62435,65210,65583,65498,65195,301158,301212,65539,301266, 301323,301393,65270,65570,65856,65691,65892,65571,65572,65932, 65356,65584,64369,301467,301521,65259,65311,65457,65384,65829, 65730,65323,65588,65857,65934,65587,65872,65692,65786,65430, 65560,65636,65413,65684,65732,65661,65710,65709,65734,65472, 301572,301649,301716,301783,301850,301926,302002,65637,65098,65054, 63660,65989,65285,302077,302144,65990,302220,302296,65506,65473, 65826,65731,65790,65920,64970,65770,65964,302374,65367,302428, 302486,302543,65759,65961,66058,66031,66084,66029,65895,65546, 66124,65846,65609,65830,302577,302631,65423,65362,65663,302673, 65963,62587,66112,66171,65475,66028,66151,66032,65753,65754, 65659,65962,66070,66052,66080,65978,66148,66018,65828,302729, 302805,302872,302948,303015,303091,66174,66245,66254,66274,66318, 303158,303232,303307,303384,303460,65867,66059,66033,66035,65871, 66081,303538,65921,303592,303650,303721,65678,66144,66162,66247, 66149,66194,65870,66178,65979,66024,303755,303809,66076,66079, 66103,303851,62775,65613,66215,66309,64696,66202,66336,66274, 66169,66057,66167,66180,66221,66275,66319,66337,66358,66207, 303878,303945,304012,304088,304164,66235,66157,66257,304231,304305, 304381,304457,66218,66323,66360,62897,66321,66339,66266,304535, 304607,66456,66015,66217,66347,66373,66365,66133,66382,66245, 66308,304680,304734,66385,66400,66396,66186,66401,66405,66371, 66484,64748,66444,66446,66463,65928,66387,66354,65758,66426, 66458,66459,66448,66368,66491,66500,66508,66516,62958,304777, 304844,304920,304996,305072,66496,66446,305139,305206,305282,66320, 66489,66526,66560,66499,305360,305419,66504,66570,66561,66546, 66549,66520,66565,65657,66529,305476,305530,66425,66522,66578, 305572,66433,66598,65768,66613,66605,66576,66553,66571,66572, 66579,66620,66618,66629,66622,66607,66633,66642,63012,64861, 305628,305695,305771,305847,305914,66592,65212,66593,65845,66613, 66478,66626,66632,66634,66628,66635,66207,66629,66000,305990, 306066,66669,306133,66649,66682,66685,66644,306211,66698,66705, 66695,66727,66729,66646,66700,66704,66708,66709,66706,306284, 306338,66648,66712,66744,306380,63098,66710,66711,66754,66776, 66768,63230,66713,66716,66381,66752,66770,66798,66801,66802, 66804,66809,65905,306437,306504,66878,306580,306647,306714,306781, 306849,306916,306983,307050,307117,307185,307252,307319,307389,307456, 307523,307599,66758,66792,66748,66761,66811,66804,66842,66816, 66798,66854,66859,66741,66770,66861,66878,66877,307675,307751, 66898,66792,66880,66799,307829,66869,66938,66951,66926,65965, 66917,66919,66927,66935,307902,307956,66725,66934,66849,66485, 66969,66975,66778,66672,66942,67003,66943,66812,66992,66888, 66970,66977,67000,67009,67014,66876,67015,67024,66982,307999, 308073,308148,308225,308292,308359,308426,308493,308560,308627,308694, 308761,67022,67006,67023,66957,67021,64842,67031,67034,66692, 308837,67088,67046,67057,67101,65338,67003,67112,67095,67115, 63387,67133,67131,63864,67122,67161,67162,308913,308989,67115, 67144,67151,67106,309067,67049,67219,67203,67108,67056,67100, 67185,67093,309124,309178,66930,67007,67004,309220,66993,67169, 67222,67382,67208,67176,67214,67197,66780,67228,67288,67215, 67231,67414,67234,67305,67306,309269,309343,309419,309488,309555, 309622,309689,309756,67499,67192,67635,67289,67336,67433,309833, 67384,67481,67528,68295,67176,67248,67254,66972,67296,67250, 67302,67257,66821,67298,67342,67350,67595,67343,67392,67393, 67351,67440,309909,309985,67415,67431,67550,67112,66273,67480, 67576,67501,67270,67319,67594,67307,310063,310117,67223,67125, 67211,310159,63416,67354,66129,67672,67653,67479,67786,67452, 67233,67575,67720,67595,67769,67597,67817,67643,67377,310208, 310275,310351,310418,310493,310560,310627,310694,310761,310828,310904, 310971,311038,311105,311172,311240,311307,67341,67484,67535,63466, 67067,67674,67722,63703,63922,64147,64223,64330,64435,67401, 64426,64522,64625,64656,67582,311383,311459,67725,67693,67335, 64921,67474,67866,67547,67285,67605,67715,311537,311591,67614, 67553,67456,67658,67666,67754,67744,67662,67818,67914,67667, 67790,64969,67791,67836,67960,67598,67800,67838,67840,67515, 311643,311710,311777,311844,65275,67933,67867,311921,67914,68173, 68261,68296,67962,67963,68302,68429,68486,67669,67360,67718, 67722,67312,67724,67765,67772,67625,68010,67811,66903,67767, 311997,312073,67432,67933,67886,67936,68468,67525,67961,68006, 67981,68032,312151,312205,67809,67601,67890,312247,67980,67982, 68057,67858,68297,68105,68490,68106,68153,68056,68154,68104, 68349,68080,68200,68125,68201,68040,68250,67499,68175,68444, 68496,68154,68203,68202,68539,68467,68573,68251,65400,68546, 68250,68592,67089,67804,65387,66431,67720,67888,65508,67818, 67820,67819,66615,67926,66829,68298,68176,67574,68578,68030, 68466,68174,68102,312307,312361,67904,67855,68058,312403,65571, 68522,68543,68197,68629,68677,68678,68838,68679,68467,68717, 68571,68461,65568,68269,68523,68577,68700,68683,67665,68177, 68744,68652,68732,65568,68292,68751,68714,65662,68802,68758, 68803,68812,67864,67952,68785,68294,68474,68299,68304,67865, 65804,65820,68631,68538,68004,68843,68569,68624,68333,68433, 312463,312517,67950,67859,68525,67814,68198,68342,68732,68674, 67913,68684,68785,68914,68909,68876,68783,68703,68854,68545, 68807,68910,68750,67948,68807,68464,68930,68937,65877,68840, 68972,68884,68983,69036,68991,67949,68053,68006,68958,68628, 68781,67572,69071,68886,68934,68992,68933,69013,312571,312625, 68095,68094,68787,312667,68938,68655,68009,69015,69199,69073, 69122,69123,69178,69146,69179,69227,68734,69019,69038,69045, 68967,68969,68150,69259,69204,69099,69270,69233,69323,68003, 68099,67958,68532,68205,69098,69145,68932,69234,69250,69121, 69177,69198,69176,312727,312781,68141,68145,69104,312823,66082, 69231,69378,69044,69306,69516,69409,69307,69514,69410,69302, 68855,69258,69257,69404,69431,69127,69224,66227,69392,69445, 69480,68583,69482,66860,69186,68790,69020,69247,69141,68101, 69305,69385,69433,69512,69432,312883,312937,68189,68240,69278, 68351,69075,69354,69256,69536,69415,69556,69561,69667,69593, 69408,69587,68623,69542,69434,69436,69562,69609,68091,69617, 69663,69620,69716,68662,69413,69538,69317,69591,68344,69647, 69491,69462,69586,312991,313045,68192,68906,69497,313087,69589, 69614,66536,69872,69699,69954,69748,69952,69700,69666,69722, 69517,69697,69724,69010,69971,69838,69842,69710,68428,69911, 68818,69725,69537,69750,70041,69592,69616,313147,313201,68291, 69016,69538,313243,66543,69719,69876,69870,70042,70029,70464, 69953,70055,69868,70001,69744,69975,69973,69857,70079,70062, 70108,68974,68976,69977,68916,70080,70176,70130,70031,313303, 313357,69306,69120,69548,69125,69173,69359,69618,70178,70899, 70931,70155,71476,70104,70941,70201,70078,70126,70202,70234, 69619,70319,69840,70256,68911,68813,69585,70081,70045,70195, 313411,313465,69346,69639,69979,313507,70281,70347,70395,70442, 70443,70154,70298,70223,70492,70494,70444,69844,313555,69968, 70226,66692,70059,70318,70177,70248,66997,68190,68241,69216, 70175,313622,67025,70224,70588,70927,70542,70589,70346,70590, 70225,70222,70540,70322,68524,70705,70348,69892,70640,68248, 69253,70417,70370,70247,69702,70156,70341,70516,70685,71477, 70878,71547,70683,70493,70541,70366,70635,70638,70418,70734, 313670,70735,70722,69893,70615,69360,70781,70637,70707,313737, 70782,70829,70828,71230,70830,70960,71006,70634,70894,70468, 70564,70612,70831,70968,71015,69903,70903,68346,70804,70657, 70849,313785,67265,70953,71231,71277,71278,71279,71323,71327, 70877,70945,70998,67424,71068,71022,67406,67477,67522,71374, 70706,70200,70753,71423,71549,71421,71444,71422,71324,70971, 70946,70999,71184,71280,71375,70898,71052,71472,71500,71665, 71613,71607,71326,70272,71346,71397,71489,71443,71498,71505, 71608,71609,71666,71675,71719,71053,71487,71632,71298,71491, 71661,71720,71721,71744,71724,71777,71523,71515,71633,71689, 71725,71797,71850,71825,71903,71826,71829,71830,71772,71501, 71466,71497,71879,71931,71935,71936,71882,71612,71832,71778, 71796,71984,71956,71989,72009,71821,71987,72010,72061,72041, 72062,72052,71880,72036,71875,72121,72090,72149,72054,71775, 72008,72174,72150,72065,71961,72080,72154,72207,72227,71927, 72104,72202,72256,72203,71604,72105,72280,72309,72257,72125, 72261,72363,72386,72312,72033,72361,72419,72439,72155,72362, 72415,72467,71768,72472,72574,72366,72281,72492,72524,72522, 72468,72520,72414,72706,72578,72525,72630,72632,72653,72682, 72812,72471,72686,72735,72577,72739,72788,72633,72947,72787, 72681,72789,72844,72791,72845,72865,72893,72898,72918,72792, 72951,73002,72310,73003,73026,73054,331800,313845,313850,313855, 313860,313865,313870,313875,313880,313885,313890,313895,313900,313905, 313910,313915,313920,313925,313930,313935,313940,313945,313950,313955, 313960,313965,313970,313975,313980,313985,313990,313995,314000,314005, 314010,314015,314020,314025,314030,314035,314040,314045,314050,314055, 314060,314065,314070,314075,314080,314085,314090,314095,314100,314105, 314110,314115,314120,314125,314130,314135,314140,314145,314150,314155, 314160,314165,314170,314175,314180,314185,314190,314195,314200,314205, 314210,314215,314220,314225,314230,314235,314240,314245,314250,314255, 314260,314265,314270,314275,314280,314285,314290,314295,314300,314305, 314310,314315,314320,314325,314330,314335,314340,314345,314350,314355, 314360,314365,314370,314375,314380,314385,314390,314395,314400,314405, 314410,314415,314420,314425,314430,314435,314440,314445,314450,314455, 314460,314465,314470,314475,314480,314485,314490,314495,314500,314505, 314510,314515,314520,314525,314530,314535,314540,314545,314550,314555, 314560,314565,314570,314575,314580,314585,314590,314595,314600,314605, 314610,314615,314620,314625,314630,314635,314640,314645,314650,314655, 314660,314665,314670,314675,314680,314685,314690,314695,314700,314705, 314710,314715,314720,314725,314730,314735,314740,314745,314750,314755, 314760,314765,314770,314775,314780,314785,314790,314795,314800,314805, 314810,314815,314820,314825,314830,314835,314840,314845,314850,314855, 314860,314865,314870,314875,314880,314885,314890,314895,314900,314905, 314910,314915,314920,314925,314930,314935,314940,314945,314950,314955, 314960,314965,314970,314975,314980,314985,314990,314995,315000,315005, 315010,315015,315020,315025,315030,315035,315040,315045,315050,315055, 315060,315065,315070,315075,315080,315085,315090,315095,315100,315105, 315110,315115,315120,315125,315130,315135,315140,315145,315150,315155, 315160,315165,315170,315175,315180,315185,315190,315195,315200,315205, 315210,315215,315220,315225,315230,315235,315240,315245,315250,315255, 315260,315265,315270,315275,315280,315285,315290,315295,315300,315305, 315310,315315,315320,315325,315330,315335,315340,315345,315350,315355, 315360,315365,315370,315375,315380,315385,315390,315395,315400,315405, 315410,315415,315420,315425,315430,315435,315440,315445,315450,315455, 315460,315465,315470,315475,315480,315485,315490,315495,315500,315505, 315510,315515,315520,315525,315530,315535,315540,315545,315550,315555, 315560,315565,315570,315575,315580,315585,315590,315595,315600,315605, 315610,315615,315620,315625,315630,315635,315640,315645,315650,315655, 315660,315665,315670,315675,315680,315685,315690,315695,315700,315705, 315710,315715,315720,315725,315730,315735,315740,315745,315750,315755, 315760,315765,315770,315775,315780,315785,315790,315795,315800,315805, 315810,315815,315820,315825,315830,315835,315840,315845,315850,315855, 315860,315865,315870,315875,315880,315885,315890,315895,315900,315905, 315910,315915,315920,315925,315930,315935,315940,315945,315950,315955, 315960,315965,315970,315975,315980,315985,315990,315995,316000,316005, 316010,316015,316020,316025,316030,316035,316040,316045,316050,316055, 316060,316065,316070,316075,316080,316085,316090,316095,316100,316105, 316110,316115,316120,316125,316130,316135,316140,316145,316150,316155, 316160,316165,316170,316175,316180,316185,316190,316195,316200,316205, 316210,316215,316220,316225,316230,316235,316240,316245,316250,316255, 316260,316265,316270,316275,316280,316285,316290,316295,316300,316305, 316310,316315,316320,316325,316330,316335,316340,316345,316350,316355, 316360,316365,316370,316375,316380,316385,316390,316395,316400,316405, 316410,316415,316420,316425,316430,316435,316440,316445,316450,316455, 316460,316465,316470,316475,316480,316485,316490,316495,316500,316505, 316510,316515,316520,316525,316530,316535,316540,316545,316550,316555, 316560,316565,316570,316575,316580,316585,316590,316595,316600,316605, 316610,316615,316620,316625,316630,316635,316640,316645,316650,316655, 316660,316665,316670,316675,316680,316685,316690,316695,316700,316705, 316710,316715,316720,316725,316730,316735,316740,316745,316750,316755, 316760,316765,316770,316775,316780,316785,316790,316795,316800,316805, 316810,316815,316820,316825,316830,316835,316840,316845,316850,316855, 316860,316865,316870,316875,316880,316885,316890,316895,316900,316905, 316910,316915,316920,316925,316930,316935,316940,316945,316950,316955, 316960,316965,316970,316975,316980,316985,316990,316995,317000,317005, 317010,317015,317020,317025,317030,317035,317040,317045,317050,317055, 317060,317065,317070,317075,317080,317085,317090,317095,317100,317105, 317110,317115,317120,317125,317130,317135,317140,317145,317150,317155, 317160,317165,317170,317175,317180,317185,317190,317195,317200,317205, 317210,317215,317220,317225,317230,317235,317240,317245,317250,317255, 317260,317265,317270,317275,317280,317285,317290,317295,317300,317305, 317310,317315,317320,317325,317330,317335,317340,317345,317350,317355, 317360,317365,317370,317375,317380,317385,317390,317395,317400,317405, 317410,317415,317420,317425,317430,317435,317440,317445,317450,317455, 317460,317465,317470,317475,317480,317485,317490,317495,317500,317505, 317510,317515,317520,317525,317530,317535,317540,317545,317550,317555, 317560,317565,317570,317575,317580,317585,317590,317595,317600,317605, 317610,317615,317620,317625,317630,317635,317640,317645,317650,317655, 317660,317665,317670,317675,317680,317685,317690,317695,317700,317705, 317710,317715,317720,317725,317730,317735,317740,317745,317750,317755, 317760,317765,317770,317775,317780,317785,317790,317795,317800,317805, 317810,317815,317820,317825,317830,317835,317840,317845,317850,317855, 317860,317865,317870,317875,317880,317885,317890,317895,317900,317905, 317910,317915,317920,317925,317930,317935,317940,317945,317950,317955, 317960,317965,317970,317975,317980,317985,317990,317995,318000,318005, 318010,318015,318020,318025,318030,318035,318040,318045,318050,318055, 318060,318065,318070,318075,318080,318085,318090,318095,318100,318105, 318110,318115,318120,318125,318130,318135,318140,318145,318150,318155, 318160,318165,318170,318175,318180,318185,318190,318195,318200,318205, 318210,318215,318220,318225,318230,318235,318240,318245,318250,318255, 318260,318265,318270,318275,318280,318285,318290,318295,318300,318305, 318310,318315,318320,318325,318330,318335,318340,318345,318350,318355, 318360,318365,318370,318375,318380,318385,318390,318395,318400,318405, 318410,318415,318420,318425,318430,318435,318440,318445,318450,318455, 318460,318465,318470,318475,318480,318485,318490,318495,318500,318505, 318510,318515,318520,318525,318530,318535,318540,318545,318550,318555, 318560,318565,318570,318575,318580,318585,318590,318595,318600,318605, 318610,318615,318620,318625,318630,318635,318640,318645,318650,318655, 318660,318665,318670,318675,318680,318685,318690,318695,318700,318705, 318710,318715,318720,318725,318730,318735,318740,318745,318750,318755, 318760,318765,318770,318775,318780,318785,318790,318795,318800,318805, 318810,318815,318820,318825,318830,318835,318840,318845,318850,318855, 318860,318865,318870,318875,318880,318885,318890,318895,318900,318905, 318910,318915,318920,318925,318930,318935,318940,318945,318950,318955, 318960,318965,318970,318975,318980,318985,318990,318995,319000,319005, 319010,319015,319020,319025,319030,319035,319040,319045,319050,319055, 319060,319065,319070,319075,319080,319085,319090,319095,319100,319105, 319110,319115,319120,319125,319130,319135,319140,319145,319150,319155, 319160,319165,319170,319175,319180,319185,319190,319195,319200,319205, 319210,319215,319220,319225,319230,319235,319240,319245,319250,319255, 319260,319265,319270,319275,319280,319285,319290,319295,319300,319305, 319310,319315,319320,319325,319330,319335,319340,319345,319350,319355, 319360,319365,319370,319375,319380,319385,319390,319395,319400,319405, 319410,319415,319420,319425,319430,319435,319440,319445,319450,319455, 319460,319465,319470,319475,319480,319485,319490,319495,319500,319505, 319510,319515,319520,319525,319530,319535,319540,319545,319550,319555, 319560,319565,319570,319575,319580,319585,319590,319595,319600,319605, 319610,319615,319620,319625,319630,319635,319640,319645,319650,319655, 319660,319665,319670,319675,319680,319685,319690,319695,319700,319705, 319710,319715,319720,319725,319730,319735,319740,319745,319750,319755, 319760,319765,319770,319775,319780,319785,319790,319795,319800,319805, 319810,319815,319820,319825,319830,319835,319840,319845,319850,319855, 319860,319865,319870,319875,319880,319885,319890,319895,319900,319905, 319910,319915,319920,319925,319930,319935,319940,319945,319950,319955, 319960,319965,319970,319975,319980,319985,319990,319995,320000,320005, 320010,320015,320020,320025,320030,320035,320040,320045,320050,320055, 320060,320065,320070,320075,320080,320085,320090,320095,320100,320105, 320110,320115,320120,320125,320130,320135,320140,320145,320150,320155, 320160,320165,320170,320175,320180,320185,320190,320195,320200,320205, 320210,320215,320220,320225,320230,320235,320240,320245,320250,320255, 320260,320265,320270,320275,320280,320285,320290,320295,320300,320305, 320310,320315,320320,320325,320330,320335,320340,320345,320350,320355, 320360,320365,320370,320375,320380,320385,320390,320395,320400,320405, 320410,320415,320420,320425,320430,320435,320440,320445,320450,320455, 320460,320465,320470,320475,320480,320485,320490,320495,320500,320505, 320510,320515,320520,320525,320530,320535,320540,320545,320550,320555, 320560,320565,320570,320575,320580,320585,320590,320595,320600,320605, 320610,320615,320620,320625,320630,320635,320640,320645,320650,320655, 320660,320665,320670,320675,320680,320685,320690,320695,320700,320705, 320710,320715,320720,320725,320730,320735,320740,320745,320750,320755, 320760,320765,320770,320775,320780,320785,320790,320795,320800,320805, 320810,320815,320820,320825,320830,320835,320840,320845,320850,320855, 320860,320865,320870,320875,320880,320885,320890,320895,320900,320905, 320910,320915,320920,320925,320930,320935,320940,320945,320950,320955, 320960,320965,320970,320975,320980,320985,320990,320995,321000,321005, 321010,321015,321020,321025,321030,321035,321040,321045,321050,321055, 321060,321065,321070,321075,321080,321085,321090,321095,321100,321105, 321110,321115,321120,321125,321130,321135,321140,321145,321150,321155, 321160,321165,321170,321175,321180,321185,321190,321195,321200,321205, 321210,321215,321220,321225,321230,321235,321240,321245,321250,321255, 321260,321265,321270,321275,321280,321285,321290,321295,321300,321305, 321310,321315,321320,321325,321330,321335,321340,321345,321350,321355, 321360,321365,321370,321375,321380,321385,321390,321395,321400,321405, 321410,321415,321420,321425,321430,321435,321440,321445,321450,321455, 321460,321465,321470,321475,321480,321485,321490,321495,321500,321505, 321510,321515,321520,321525,321530,321535,321540,321545,321550,321555, 321560,321565,321570,321575,321580,321585,321590,321595,321600,321605, 321610,321615,321620,321625,321630,321635,321640,321645,321650,321655, 321660,321665,321670,321675,321680,321685,321690,321695,321700,321705, 321710,321715,321720,321725,321730,321735,321740,321745,321750,321755, 321760,321765,321770,321775,321780,321785,321790,321795,321800,321805, 321810,321815,321820,321825,321830,321835,321840,321845,321850,321855, 321860,321865,321870,321875,321880,321885,321890,321895,321900,321905, 321910,321915,321920,321925,321930,321935,321940,321945,321950,321955, 321960,321965,321970,321975,321980,321985,321990,321995,322000,322005, 322010,322015,322020,322025,322030,322035,322040,322045,322050,322055, 322060,322065,322070,322075,322080,322085,322090,322095,322100,322105, 322110,322115,322120,322125,322130,322135,322140,322145,322150,322155, 322160,322165,322170,322175,322180,322185,322190,322195,322200,322205, 322210,322215,322220,322225,322230,322235,322240,322245,322250,322255, 322260,322265,322270,322275,322280,322285,322290,322295,322300,322305, 322310,322315,322320,322325,322330,322335,322340,322345,322350,322355, 322360,322365,322370,322375,322380,322385,322390,322395,322400,322405, 322410,322415,322420,322425,322430,322435,322440,322445,322450,322455, 322460,322465,322470,322475,322480,322485,322490,322495,322500,322505, 322510,322515,322520,322525,322530,322535,322540,322545,322550,322555, 322560,322565,322570,322575,322580,322585,322590,322595,322600,322605, 322610,322615,322620,322625,322630,322635,322640,322645,322650,322655, 322660,322665,322670,322675,322680,322685,322690,322695,322700,322705, 322710,322715,322720,322725,322730,322735,322740,322745,322750,322755, 322760,322765,322770,322775,322780,322785,322790,322795,322800,322805, 322810,322815,322820,322825,322830,322835,322840,322845,322850,322855, 322860,322865,322870,322875,322880,322885,322890,322895,322900,322905, 322910,322915,322920,322925,322930,322935,322940,322945,322950,322955, 322960,322965,322970,322975,322980,322985,322990,322995,323000,323005, 323010,323015,323020,323025,323030,323035,323040,323045,323050,323055, 323060,323065,323070,323075,323080,323085,323090,323095,323100,323105, 323110,323115,323120,323125,323130,323135,323140,323145,323150,323155, 323160,323165,323170,323175,323180,323185,323190,323195,323200,323205, 323210,323215,323220,323225,323230,323235,323240,323245,323250,323255, 323260,323265,323270,323275,323280,323285,323290,323295,323300,323305, 323310,323315,323320,323325,323330,323335,323340,323345,323350,323355, 323360,323365,323370,323375,323380,323385,323390,323395,323400,323405, 323410,323415,323420,323425,323430,323435,323440,323445,323450,323455, 323460,323465,323470,323475,323480,323485,323490,323495,323500,323505, 323510,323515,323520,323525,323530,323535,323540,323545,323550,323555, 323560,323565,323570,323575,323580,323585,323590,323595,323600,323605, 323610,323615,323620,323625,323630,323635,323640,323645,323650,323655, 323660,323665,323670,323675,323680,323685,323690,323695,323700,323705, 323710,323715,323720,323725,323730,323735,323740,323745,323750,323755, 323760,323765,323770,323775,323780,323785,323790,323795,323800,323805, 323810,323815,323820,323825,323830,323835,323840,323845,323850,323855, 323860,323865,323870,323875,323880,323885,323890,323895,323900,323905, 323910,323915,323920,323925,323930,323935,323940,323945,323950,323955, 323960,323965,323970,323975,323980,323985,323990,323995,324000,324005, 324010,324015,324020,324025,324030,324035,324040,324045,324050,324055, 324060,324065,324070,324075,324080,324085,324090,324095,324100,324105, 324110,324115,324120,324125,324130,324135,324140,324145,324150,324155, 324160,324165,324170,324175,324180,324185,324190,324195,324200,324205, 324210,324214,324219,324224,324229,324234,324239,324244,324249,324254, 324259,324264,324269,324274,324279,324284,324289,324294,324299,324304, 324309,324314,324319,324324,324329,324334,324339,324344,324349,324354, 324359,324364,324369,324374,324379,324384,324389,324394,324399,324404, 324409,324414,324419,324424,324429,324434,324439,324444,324449,324454, 324459,324464,324469,324474,324479,324484,324489,324494,324499,324504, 324509,324514,324519,324524,324529,324534,324539,324544,324549,324554, 324559,324564,324569,324574,324579,324584,324589,324594,324599,324604, 324609,324614,324619,324624,324629,324634,324639,324644,324649,324654, 324659,324664,324669,324674,324679,324684,324689,324694,324699,324704, 324709,324714,324719,324724,324729,324734,324739,324744,324749,324754, 324759,324764,324769,324774,324779,324784,324789,324794,324799,324804, 324809,324814,324819,324824,324829,324834,324839,324844,324849,324854, 324859,324864,324869,324874,324879,324884,324889,324894,324899,324904, 324909,324914,324919,324924,324929,324934,324939,324944,324949,324954, 324959,324964,324969,324974,324979,324984,324989,324994,324999,325004, 325009,325014,325019,325024,325029,325034,325039,325044,325049,325054, 325059,325064,325069,325074,325079,325084,325089,325094,325099,325104, 325109,325114,325119,325124,325129,325134,325139,325144,325149,325154, 325159,325164,325169,325174,325179,325184,325189,325194,325199,325204, 325209,325214,325219,325224,325229,325234,325239,325244,325249,325254, 325259,325264,325269,325274,325279,325284,325289,325294,325299,325304, 325309,325314,325319,325324,325329,325334,325339,325344,325349,325354, 325359,325364,325369,325374,325379,325384,325389,325394,325399,325404, 325409,325414,325419,325424,325429,325434,325439,325444,325449,325454, 325459,325464,325469,325474,325479,325484,325489,325494,325499,325504, 325509,325514,325519,325524,325529,325534,325539,325544,325549,325554, 325559,325564,325569,325574,325579,325584,325589,325594,325599,325604, 325609,325614,325619,325624,325629,325634,325639,325644,325649,325654, 325659,325664,325669,325674,325679,325684,325689,325694,325699,325704, 325709,325714,325719,325724,325729,325734,325739,325744,325749,325754, 325759,325764,325769,325774,325779,325784,325789,325794,325799,325804, 325809,325814,325819,325824,325829,325834,325839,325844,325849,325854, 325859,325864,325869,325874,325879,325884,325889,325894,325899,325904, 325909,325914,325919,325924,325929,325934,325939,325944,325949,325954, 325959,325964,325969,325974,325979,325984,325989,325994,325999,326004, 326009,326014,326019,326024,326029,326034,326039,326044,326049,326054, 326059,326064,326069,326074,326079,326084,326089,326094,326099,326104, 326109,326114,326119,326124,326129,326134,326139,326144,326149,326154, 326159,326164,326169,326174,326179,326184,326189,326194,326199,326204, 326209,326214,326219,326224,326229,326234,326239,326244,326249,326254, 326259,326264,326269,326274,326279,326284,326289,326294,326299,326304, 326309,326314,326319,326324,326329,326334,326339,326344,326349,326354, 326359,326364,326369,326374,326379,326384,326389,326394,326399,326404, 326409,326414,326419,326424,326429,326434,326439,326444,326449,326454, 326459,326464,326469,326474,326479,326484,326489,326494,326499,326504, 326509,326514,326519,326524,326529,326534,326539,326544,326549,326554, 326559,326564,326569,326574,326579,326584,326589,326594,326599,326604, 326609,326614,326619,326624,326629,326634,326639,326644,326649,326654, 326659,326664,326669,326674,326679,326684,326689,326694,326699,326704, 326709,326714,326719,326724,326729,326734,326739,326744,326749,326754, 326759,326764,326769,326774,326779,326784,326789,326794,326799,326804, 326809,326814,326819,326824,326829,326834,326839,326844,326849,326854, 326859,326864,326869,326874,326879,326884,326889,326894,326899,326904, 326909,326914,326919,326924,326929,326934,326939,326944,326949,326954, 326959,326964,326969,326974,326979,326984,326989,326994,326999,327004, 327009,327014,327019,327024,327029,327034,327039,327044,327049,327054, 327059,327064,327069,327074,327079,327084,327089,327094,327099,327104, 327109,327114,327119,327124,327129,327134,327139,327144,327149,327154, 327159,327164,327169,327174,327179,327184,327189,327194,327199,327204, 327209,327214,327219,327224,327229,327234,327239,327244,327249,327254, 327259,327264,327269,327274,327279,327284,327289,327294,327299,327304, 327309,327314,327319,327324,327329,327334,327339,327344,327349,327354, 327359,327364,327369,327374,327379,327384,327389,327394,327399,327404, 327409,327414,327419,327424,327429,327434,327439,327444,327449,327454, 327459,327464,327469,327474,327479,327484,327489,327494,327499,327504, 327509,327514,327519,327524,327529,327534,327539,327544,327549,327554, 327559,327564,327569,327574,327579,327584,327589,327594,327599,327604, 327609,327614,327619,327624,327629,327634,327639,327644,327649,327654, 327659,327664,327669,327674,327679,327684,327689,327694,327699,327704, 327709,327714,327719,327724,327729,327734,327739,327744,327749,327754, 327759,327764,327769,327774,327779,327784,327789,327794,327799,327804, 327809,327814,327819,327824,327829,327834,327839,327844,327849,327854, 327859,327864,327869,327874,327879,327884,327889,327894,327899,327904, 327909,327914,327919,327924,327929,327934,327939,327944,327949,327954, 327959,327964,327969,327974,327979,327984,327989,327994,327999,328004, 328009,328014,328019,328024,328029,328034,328039,328044,328049,328054, 328059,328064,328069,328074,328079,328084,328089,328094,328099,328104, 328109,328114,328119,328124,328129,328134,328139,328144,328149,328154, 328159,328164,328169,328174,328179,328184,328189,328194,328199,328204, 328209,328214,328219,328224,328229,328234,328239,328244,328249,328254, 328259,328264,328269,328274,328279,328284,328289,328294,328299,328304, 328309,328314,328319,328324,328329,328334,328339,328344,328349,328354, 328359,328364,328369,328374,328379,328384,328389,328394,328399,328404, 328409,328414,328419,328424,328429,328434,328439,328444,328449,328454, 328459,328464,328469,328474,328479,328484,328489,328494,328499,328504, 328509,328514,328519,328524,328529,328534,328539,328544,328549,328554, 328559,328564,328569,328574,328579,328584,328589,328594,328599,328604, 328609,328614,328619,328624,328629,328634,328639,328644,328649,328654, 328659,328664,328669,328674,328679,328684,328689,328694,328699,328704, 328709,328714,328719,328724,328729,328734,328739,328744,328749,328754, 328759,328764,328769,328774,328779,328784,328789,328794,328799,328804, 328809,328814,328819,328824,328829,328834,328839,328844,328849,328854, 328859,328864,328869,328874,328879,328884,328889,328894,328899,328904, 328909,328914,328919,328924,328929,328934,328939,328944,328949,328954, 328959,328964,328969,328974,328979,328984,328989,328994,328999,329004, 329009,329014,329019,329024,329029,329034,329039,329044,329049,329054, 329059,329064,329069,329074,329079,329084,329089,329094,329099,329104, 329109,329114,329119,329124,329129,329134,329139,329144,329149,329154, 329159,329164,329169,329174,329179,329184,329189,329194,329199,329204, 329209,329214,329219,329224,329229,329234,329239,329244,329249,329254, 329259,329264,329269,329274,329279,329284,329289,329294,329299,329304, 329309,329314,329319,329324,329329,329334,329339,329344,329349,329354, 329359,329364,329369,329374,329379,329384,329389,329394,329399,329404, 329409,329414,329419,329424,329429,329434,329439,329444,329449,329454, 329459,329464,329469,329474,329479,329484,329489,329494,329499,329504, 329509,329514,329519,329524,329529,329534,329539,329544,329549,329554, 329559,329564,329569,329574,329579,329584,329589,329594,329599,329604, 329609,329614,329619,329624,329629,329634,329639,329644,329649,329654, 329659,329664,329669,329674,329679,329684,329689,329694,329699,329704, 329709,329714,329719,329724,329729,329734,329739,329744,329749,329754, 329759,329764,329769,329774,329779,329784,329789,329794,329799,329804, 329809,329814,329819,329824,329829,329834,329839,329844,329849,329854, 329859,329864,329869,329874,329879,329884,329889,329894,329899,329904, 329909,329914,329919,329924,329929,329934,329939,329944,329949,329954, 329959,329964,329969,329974,329979,329984,329989,329994,329999,330004, 330009,330014,330019,330024,330029,330034,330039,330044,330049,330054, 330059,330064,330069,330074,330079,330084,330089,330094,330099,330104, 330109,330114,330119,330124,330129,330134,330139,330144,330149,330154, 330159,330164,330169,330174,330179,330184,330189,330194,330199,330204, 330209,330214,330219,330224,330229,330234,330239,330244,330249,330254, 330259,330264,330269,330274,330279,330284,330289,330294,330299,330304, 330309,330314,330319,330324,330329,330334,330339,330344,330349,330354, 330359,330364,330369,330374,330379,330384,330389,330394,330399,330404, 330409,330414,330419,330424,330429,330434,330439,330444,330449,330454, 330459,330464,330469,330474,330479,330484,330489,330494,330499,330504, 330509,330514,330519,330524,330529,330534,330539,330544,330549,330554, 330559,330564,330569,330574,330579,330584,330589,330594,330599,330604, 330609,330614,330619,330624,330629,330634,330639,330644,330649,330654, 330659,330664,330669,330674,330679,330684,330689,330694,330699,330704, 330709,330714,330719,330724,330729,330734,330739,330744,330749,330754, 330759,330764,330769,330774,330779,330784,330789,330794,330799,330804, 330809,330814,330819,330824,330829,330834,330839,330844,330849,330854, 330859,330864,330869,330874,330879,330884,330889,330894,330899,330904, 330909,330914,330919,330924,330929,330934,330939,330944,330949,330954, 330959,330964,330969,330974,330979,330984,330989,330994,330999,331004, 331009,331014,331019,331024,331029,331034,331039,331044,331049,331054, 331059,331064,331069,331074,331079,331084,331089,331094,331099,331104, 331109,331114,331119,331124,331129,331134,331139,331144,331149,331154, 331159,331164,331169,331174,331179,331184,331189,331194,331199,331204, 331209,331214,331219,331224,331229,331234,331239,331244,331249,331254, 331259,331264,331269,331274,331279,331284,331289,331294,331299,331304, 331309,331314,331319,331324,331329,331334,331339,331344,331349,331354, 331359,331364,331369,331374,331379,331384,331389,331394,331399,331404, 331409,331414,331419,331424,331429,331434,331439,331444,331449,331454, 331459,331464,331469,331474,331479,331484,331489,331494,331499,331504, 331509,331514,331519,331524,331529,331534,331539,331544,331549,331554, 331559,331564,331569,331574,331579,331584,331589,331594,331599,331604, 331609,331614,331619,331624,331629,331634,331639,331644,331649,331654, 331659,331664,331669,331674,331679,331684,331689,331694,331699,331704, 331709,331714,331719,331724,331729,331734,331739,331744,331749,331754, 331759,331764,331769,331774,331779,331784,331789,331794 } ; static yyconst flex_int16_t yy_def[22599] = { 0, 19007, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,19007,19008,19008,19007,19008,19007,19009,19007, 60, 60, 60,19008,19008, 60, 66, 66, 66, 66, 66, 66, 72, 72, 72, 72, 72, 72, 72, 72, 72,19008, 60, 60, 60, 60, 60, 87, 87, 87, 87, 87, 87,19008,19010,19010,19011,19012,19013,19013, 19008,19008,19008,19008,19008,19008,19008,19008,19014,19008, 19015, 87,19008,19008,19008,19008,19008,19008,19008,19008, 19008,19007,19008,19016,19007, 125, 125, 125,19008,19008, 125, 125, 125, 133,19017,19009,19007, 136,19008,19018, 137,19007, 142,19008, 142, 145, 145,19019, 142, 142, 144, 142, 142, 142, 142,19008,19008,19008,19008, 159, 147, 147, 147, 145, 147, 147, 145, 147, 147, 145, 145,19008, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147,19008, 142, 149, 142, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149,19008,19008,19010,19010,19010,19010,19010, 19010,19010,19011,19011,19012,19012,19012,19013,19013,19013, 19013,19013,19013,19013,19013,19008,19008,19008,19008,19008, 19020,19008,19008,19008,19021,19021,19021,19008,19022,19022, 149,19023,19024,19008,19008,19008,19008,19008,19007,19025, 19026, 249,19007, 253,19008, 253,19027, 253, 255, 253, 253, 253,19008,19008, 253,19026, 266, 266,19028,19008, 19029,19029,19007, 273,19030,19008,19031,19032,19033,19007, 19033,19034,19030, 283, 283, 283,19032,19007, 288,19007, 288, 291, 291, 288, 290,19008,19008, 297,19008, 297, 291,19031, 293,19034, 280, 288, 299, 288, 288,19008, 19008,19008,19008, 299, 314, 314, 314,19008, 318, 318, 293, 293, 291, 293, 293, 291, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293,19008, 294, 294, 288, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294,19008,19008, 19035,19035,19035,19035,19035,19035,19035, 367, 367, 367, 19036,19037,19037,19037,19037,19037,19037,19037,19037, 379, 379, 379,19008,19008,19008,19008,19008,19038,19038,19038, 19008,19008,19008,19008,19008,19008,19039,19039,19008,19040, 294,19041,19041,19042,19042,19042,19008,19008,19008,19008, 19008,19008,19008,19008,19008,19008,19007, 417,19043,19043, 420, 420, 420,19007, 424, 424,19008, 427,19008, 427, 424,19044, 424, 429, 429, 435, 435, 435, 424, 439, 439, 439,19008,19045,19045,19008,19046,19046, 448,19007, 19047,19008,19048,19048,19049,19049,19050,19050,19051,19007, 460, 458,19052,19052, 450,19047, 466, 466, 466, 456, 19007, 471, 471, 473, 473, 471, 454, 477, 477, 473, 475,19008,19008, 483, 483, 483, 485, 485, 488, 488, 488, 483, 475, 475, 464,19051, 496, 496, 496, 471, 488, 471,19008,19008,19053, 488, 506,19008, 506, 508, 506, 506, 506, 508, 514, 514,19007, 475, 517, 475, 475, 517, 475, 517, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475,19008, 476, 476, 476, 476, 476, 476, 476, 476, 476,19054, 476, 476, 476, 19055, 476,19008,19008,19056,19056,19056,19056,19057,19056, 560,19056, 560, 562, 560, 560, 560,19058,19059,19059, 19059,19059,19059,19060,19059, 575,19059, 575, 577, 575, 575, 575,19008,19008,19008,19008,19061,19061,19062,19063, 19008,19008,19008,19008,19008,19064,19064,19008,19065, 476, 19066,19067,19067,19067,19067,19008,19008,19008,19008,19008, 19008,19008,19008,19008,19008,19008,19008,19007,19068, 618, 19068, 621, 621, 621,19069,19069, 626, 626,19008, 629, 629, 629, 631, 631, 634, 634, 634, 629,19070, 634, 634, 641,19008, 641, 643, 641, 641, 641, 626, 626, 626,19071,19071, 653,19008,19008,19072,19007,19073,19008, 19074,19074, 662,19075,19075, 665,19076,19076,19077, 668, 19078,19078,19007, 673, 673, 668,19077, 677,19073, 679, 679, 679, 665,19007, 684, 685, 685, 684, 685, 687, 662, 691, 691, 691, 687, 687,19008,19008, 698, 698, 698, 701,19008, 701, 698, 703, 703, 707,19008, 707, 709, 707, 707, 707, 687, 677, 672, 672, 672, 672, 668, 684,19008,19008,19079,19080,19079,19008, 707, 729, 729, 729, 732, 732, 732, 729, 732, 729, 729,19008, 740, 740,19008, 665, 687, 665, 687, 687, 665, 687, 665, 687, 687, 687, 687, 687,19081, 687, 687,19081, 687, 687,19082,19008, 688, 688, 688, 688, 668, 688, 688, 688, 760, 688, 677, 760, 668,19083,19084,19083, 19085,19085, 782, 688,19008,19008,19086,19086,19086,19086, 19087,19087,19086,19086, 794, 794, 794, 797, 797, 797, 794, 797, 794, 794,19088,19089,19089,19089,19089,19089, 19090,19090,19089,19090,19089, 815, 815, 815, 818, 818, 818, 815, 818, 815, 815,19008,19008,19008,19008,19091, 19091,19092,19092,19093,19093,19008,19008,19008,19094,19094, 19008,19095,19096,19097,19098,19098,19098,19008,19008,19008, 19008,19008,19008,19008,19008,19008,19008,19007,19099,19099, 860, 860, 860,19008, 864, 864, 864, 867,19008, 867, 864, 869, 869, 873,19008, 873, 875, 873, 873, 873, 19100, 873, 882, 882, 882, 885, 885, 885, 882, 885, 882, 882,19101,19101,19008,19102,19008,19008,19008,19103, 19007,19008,19008,19104,19105,19106,19107,19007,19108, 901, 19109,19109, 912, 912,19105,19007,19106, 916, 918, 918, 19007, 921,19008, 921, 923, 921,19008,19008,19008,19008, 19008,19008, 932, 932, 932, 934, 934, 937, 937, 937, 932, 937, 937, 943, 943, 943, 946, 946, 946, 943, 946, 943, 943,19110,19111,19107,19108, 957, 916,19008, 19008,19008,19007,19112,19008,19008,19008,19008,19008, 943, 970,19008, 970, 972, 970, 970, 970,19008,19008,19008, 980, 980,19008,19008, 915, 918, 915, 986, 986, 915, 986, 915, 986,19110, 986, 994, 994, 915, 986, 986, 915, 986, 986,19113,19114,19113,19115,19115,19008, 916, 1010, 1010,19116, 957, 994, 1010, 1010, 915, 1010,19111, 19117, 957,19118,19118,19119,19119,19118,19120,19120, 1029, 1029, 1010,19008,19121,19122,19122,19122,19122,19122,19123, 19122,19122,19122,19122,19122,19122, 1046,19122, 1046, 1048, 1046, 1046, 1046,19122,19122,19124,19125,19125,19126,19125, 19125,19125,19127,19125,19127,19125,19125,19125,19125,19125, 1070,19125, 1070, 1072, 1070, 1070, 1070,19125,19125,19128, 19008,19008,19129,19130,19131,19132,19132,19132,19133,19133, 19008,19008,19008,19134,19134,19008,19135,19136,19137,19137, 19138,19139,19139,19139,19008,19008,19140,19008,19008,19141, 19008,19007, 1112,19142,19142, 1115, 1115,19008,19008,19008, 19008,19008, 1122, 1122, 1122, 1124, 1124, 1127, 1127, 1127, 1122, 1127, 1127, 1133, 1133, 1133, 1136, 1136, 1136, 1133, 1136, 1133, 1133,19143,19008,19008,19008,19008, 1133, 1149, 19008, 1149, 1151, 1149, 1149, 1149,19008,19008,19144,19144, 19008,19145,19008,19008,19008,19008,19008,19008,19008,19008, 19146,19147,19148,19149,19007,19150,19150, 1177, 1177,19148, 19007, 1181, 1182,19146, 1182,19147, 1186, 1186, 1186,19008, 19008, 1191, 1191, 1191, 1194,19008, 1194, 1191, 1196, 1196, 1200,19008, 1200, 1202, 1200, 1200, 1200,19008,19008,19008, 19008, 1200, 1212,19008, 1212, 1214, 1212, 1212, 1212,19008, 19008, 1180,19151, 1181,19008,19008,19152, 1212, 1228, 1228, 1228, 1231, 1231, 1231, 1228, 1231, 1228, 1228,19008,19008, 1240, 1240,19008,19008,19008,19008,19153, 1180, 1182, 1249, 1180, 1249, 1180,19154, 1180, 1249, 1180, 1180, 1180, 1249, 1249, 1180, 1249,19153,19155,19155,19155,19156,19156,19155, 19157,19157, 1272,19008,19158, 1181, 1276,19007,19151, 1276, 1276, 1180, 1276,19159,19008,19008, 1180,19160,19008, 1180, 1279,19161,19162,19162, 1294,19161,19161,19161,19163,19163, 1276,19008,19164,19164,19165,19165,19165,19165,19166,19165, 1310, 1310, 1310, 1313, 1313, 1313, 1310, 1313, 1310, 1310, 19165,19167,19168,19168,19169,19169,19169,19169,19168,19168, 19170,19170,19168, 1333, 1333, 1333, 1336, 1336, 1336, 1333, 1336, 1333, 1333,19168,19171,19171,19008,19008,19172,19172, 19173,19174,19174,19174,19174,19175,19175,19175,19176,19176, 19008,19008,19008,19177,19177,19008,19178,19008,19179,19179, 19180,19180, 1372,19181,19182,19182,19182,19008,19008,19183, 19183,19183,19183,19183,19183,19183,19183,19183,19183,19183, 19183,19183,19183,19184,19008,19185,19185,19008,19186,19186, 1400, 1400,19008, 1403, 1403, 1403, 1406,19008, 1406, 1403, 1408, 1408, 1412,19008, 1412, 1414, 1412, 1412, 1412,19008, 19008,19008,19008, 1412, 1424,19008, 1424, 1426, 1424, 1424, 1424,19008,19008, 1424, 1434, 1434, 1434, 1437, 1437, 1437, 1434, 1437, 1434, 1434,19008,19187,19187,19008,19008,19008, 19008,19008,19008,19008,19008,19008,19008,19008,19008,19008, 19008,19188,19188, 1463, 1463, 1463, 1463, 1463, 1463,19189, 19189,19190,19191,19191, 1474, 1474,19008,19007, 1478, 1479, 1479, 1463,19008,19008,19008,19008,19008,19008, 1488, 1488, 1488, 1490, 1490, 1493, 1493, 1493, 1488, 1493, 1493, 1499, 1499, 1499, 1502, 1502, 1502, 1499, 1502, 1499, 1499, 1499, 1510, 1510, 1510, 1513, 1513, 1513, 1510, 1513, 1510, 1510, 19008,19192,19007, 1478,19008,19008,19193,19008,19008,19008, 19008, 1510, 1532,19008, 1532, 1534, 1532, 1532, 1532,19008, 19008, 1532, 1542, 1542, 1542,19008, 1546, 1546,19008,19192, 1550, 1479, 1552,19008, 1552, 1550,19194,19195,19196,19194, 19197,19197, 1562, 1562, 1550,19198, 1550, 1550, 1550, 1552, 1552, 1550, 1552, 1550,19199,19199,19200,19200, 1578,19199, 19199,19199,19201,19008,19202, 1478, 1586,19203,19203, 1589, 19204,19198, 1586, 1550, 1592,19205,19008,19008,19008,19008, 19008,19008,19008,19008,19204,19206,19206,19207,19206,19206, 19206,19208,19209,19209,19210,19008,19211,19212,19212,19212, 19212,19213,19212,19212,19212,19212,19212, 1627,19212, 1627, 1629, 1627, 1627, 1627,19212,19212, 1627, 1637, 1637, 1637, 19214,19215,19215,19216,19216,19215,19215,19217,19217,19215, 19215,19215,19215,19215, 1654,19215, 1654, 1656, 1654, 1654, 1654,19215,19215, 1654, 1664, 1664, 1664,19218,19008,19008, 19219,19220,19221,19221,19221,19222,19223,19223,19224,19224, 19008,19008,19008,19225,19225,19008,19226,19008,19227,19228, 19229,19230,19230,19230,19008,19231,19231,19231,19231,19231, 19231,19231,19231,19231,19231,19231,19231,19231,19231,19231, 19231,19232,19232,19232,19232,19232,19232,19232,19232,19232, 19232,19232,19232,19232,19232,19232,19008,19233,19008,19234, 19234, 1731, 1731,19008,19008,19008,19008,19008, 1738, 1738, 1738, 1740, 1740, 1743, 1743, 1743, 1738, 1743, 1743, 1749, 1749, 1749, 1752, 1752, 1752, 1749, 1752, 1749, 1749, 1749, 1760, 1760, 1760, 1763, 1763, 1763, 1760, 1763, 1760, 1760, 19008,19008,19008,19008,19008, 1760, 1776,19008, 1776, 1778, 1776, 1776, 1776,19008,19008, 1776, 1786, 1786, 1786,19235, 19235,19008,19008,19008,19008,19008,19008,19008,19008,19008, 19008,19008,19008,19008,19008,19008,19008,19008,19008,19008, 19008,19008,19008,19008,19236,19236, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816,19237,19237,19238, 1828, 19007, 1831, 1832, 1832, 1816,19008,19008, 1837, 1837, 1837, 1840,19008, 1840, 1837, 1842, 1842, 1846,19008, 1846, 1848, 1846, 1846, 1846,19008,19008,19008,19008, 1846, 1858,19008, 1858, 1860, 1858, 1858, 1858,19008,19008,19008,19008,19008, 19008, 1858, 1872,19008, 1872, 1874, 1872, 1872, 1872,19008, 19008, 1872, 1882, 1882, 1882,19239,19007, 1831,19008,19008, 19240, 1872, 1892, 1892, 1892, 1895, 1895, 1895, 1892, 1895, 1892, 1892,19008,19008, 1882, 1905, 1905,19008, 1908, 1908, 19008,19239, 1912,19241, 1832,19008, 1915, 1912,19008,19242, 19007,19242,19243,19243,19008,19244,19244, 1927, 1927, 1927, 1912, 1912, 1912, 1912, 1912,19241, 1936, 1912, 1936, 1912, 19245,19245,19245,19246,19245,19245,19245,19247,19248,19008, 19249, 1915,19250,19251,19251, 1955,19252, 1952, 1912, 1912, 19250,19008,19008,19008,19008,19007, 1966,19008,19252,19253, 19253,19254,19253,19253,19253,19253,19253,19255,19255, 1979, 1979, 1979, 1979, 1979, 1979,19256,19256,19253,19253,19007, 19008,19257,19258,19258,19258,19258,19259,19258, 1998, 1998, 1998, 2001, 2001, 2001, 1998, 2001, 1998, 1998,19258,19258, 1998, 2011, 2011,19260,19261,19261,19262,19262,19261,19261, 19263,19263,19261, 2023, 2023, 2023, 2026, 2026, 2026, 2023, 2026, 2023, 2023,19261,19261, 2023, 2036, 2036,19264,19008, 19008,19265,19266,19267,19267,19267,19268,19268,19268,19268, 19269,19269,19270,19270,19008,19008,19008,19271,19271,19008, 2060,19272,19008,19273,19274,19275,19276,19276,19276,19008, 19277,19277,19277,19277,19277,19277,19277,19277,19277,19277, 19278,19277,19277,19277,19277,19277,19279,19279,19279,19279, 19279,19279,19279,19279, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094,19008,19280,19008,19008, 2107, 2107, 2107, 2110,19008, 2110, 2107, 2112, 2112, 2116,19008, 2116, 2118, 2116, 2116, 2116,19008,19008,19008,19008, 2116, 2128,19008, 2128, 2130, 2128, 2128, 2128,19008,19008,19008,19008,19008, 19008, 2128, 2142,19008, 2142, 2144, 2142, 2142, 2142,19008, 19008, 2142, 2152, 2152, 2152, 2142, 2156, 2156, 2156, 2159, 2159, 2159, 2156, 2159, 2156, 2156,19008,19008, 2152, 2169, 2169,19281,19281,19008,19008,19008,19008,19008,19008,19008, 19008,19008,19008,19008,19008,19008,19008,19008,19008,19008, 19282,19283,19008,19282,19008, 2194, 2194, 2194,19284,19284, 2200,19285,19285,19286,19287,19287,19288, 2200,19007, 2209, 2210, 2210, 2194,19008,19008,19008,19008,19008,19008, 2219, 2219, 2219, 2221, 2221, 2224, 2224, 2219, 2224, 2224, 2229, 2229, 2229, 2232, 2232, 2229, 2232, 2229, 2229, 2229, 2239, 2239, 2239, 2242, 2242, 2239, 2242, 2239, 2239,19008, 2239, 2250, 2250, 2250, 2253, 2253, 2250, 2253, 2250, 2250,19008, 2250, 2261, 2261,19289,19290,19291,19291, 2209,19008,19008, 19292,19008,19008,19008,19008, 2250, 2276,19008, 2276, 2278, 2276, 2276, 2276,19008,19008, 2261, 2286, 2286, 2286,19008, 19008,19008,19008, 2286,19008, 2295, 2295,19008,19289, 2299, 19293,19294,19008,19294,19008,19008,19295,19007,19296,19296, 2310,19008,19295,19297,19297, 2315,19008, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299,19008,19298,19298,19298,19299, 19298,19298,19298,19298,19298,19300,19300, 2337, 2337, 2337, 2337, 2337, 2337,19301, 2337,19301,19298,19302,19303, 2304, 19304,19305,19305, 2353,19306,19307, 2299, 2299,19303,19008, 19008,19008,19008,19308,19309,19309, 2366, 2366, 2366,19008, 19310,19311,19311,19311,19311,19311,19311,19311,19311,19311, 19311,19311,19311,19311,19311,19312,19312, 2387, 2387, 2387, 2387, 2387, 2387, 2387, 2387, 2387, 2387,19313,19313,19314, 2399,19311,19311,19315,19007, 2405, 2405, 2405,19008, 2405, 2405, 2405, 2405, 2405, 2414, 2414, 2414, 2414,19316, 2414, 19316,19008,19317,19318,19318,19318,19318,19319,19318,19318, 19318,19318,19318, 2433,19318, 2433, 2435, 2433, 2433, 2433, 19318,19318, 2433, 2443, 2443, 2443,19318,19318,19318,19318, 2443,19320,19321,19321,19322,19322,19321,19321,19323,19323, 19321,19321,19321,19321,19321, 2465,19321, 2465, 2467, 2465, 2465, 2465,19321,19321, 2465, 2475, 2475, 2475,19321,19321, 19321,19321, 2475,19324,19008,19008,19008,19325,19326,19327, 19327,19327,19328,19328,19328,19329,19329,19330,19330,19008, 19008,19008,19331,19332,19008,19008,19333,19008,19334,19008, 19335,19336,19337,19337,19008,19338,19338,19338,19338,19338, 19338,19339,19338,19339,19340, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524,19338,19338,19338,19338,19338,19338,19338,19338,19341, 19341,19341,19341,19341, 2554, 2554, 2554, 2554, 2554, 2554, 19342, 2554, 2554, 2554, 2554, 2554,19008,19343,19008,19008, 19008,19008,19008,19008, 2574, 2574, 2574, 2576, 2576, 2579, 2579, 2574, 2579, 2579, 2584, 2584, 2584, 2587, 2587, 2584, 2587, 2584, 2584, 2584, 2594, 2594, 2594, 2597, 2597, 2594, 2597, 2594, 2594,19008, 2594, 2605, 2605, 2605, 2608, 2608, 2605, 2608, 2605, 2605,19008, 2605, 2616, 2616,19008,19008, 19008,19008, 2605, 2623,19008, 2623, 2625, 2623, 2623, 2623, 19008,19008, 2616, 2633, 2633, 2633,19008,19008,19008,19008, 2633,19344,19008,19008,19008,19008,19008,19008,19008,19008, 19008,19008,19008,19008,19008,19008,19008,19345,19345,19346, 19346,19347, 2659,19008, 2659,19008, 2659,19348,19348, 2669, 2669,19349,19349, 2673,19350,19350,19351,19352,19352, 2679, 19353,19353,19354,19007, 2684, 2685, 2685, 2659,19008,19008, 2690, 2690, 2690,19008, 2693, 2693, 2690, 2693, 2694,19008, 2699, 2699, 2699, 2699,19008,19008,19008,19008, 2699,19008, 2709, 2709, 2709, 2709,19008,19008,19008,19008,19008,19008, 2709,19008, 2721, 2721, 2721, 2721,19008,19008, 2721, 2729, 2729, 2729,19008,19008,19008,19008, 2721,19008, 2737, 2737, 2737, 2737,19008,19008, 2729, 2745, 2745, 2745, 2745,19355, 19355, 2751,19007, 2753, 2684,19008,19008,19356, 2737, 2759, 2759, 2759, 2762, 2762, 2759, 2762, 2759, 2759,19008, 2745, 2770, 2770,19008,19008,19008, 2775, 2775,19008, 2751, 2751, 19357,19008,19358,19008,19008,19359,19007,19359,19360,19361, 19362,19362, 2792,19008, 2751, 2751, 2751,19008, 2751, 2751, 2751, 2751,19008,19363,19363,19363,19363,19363,19363,19363, 19363,19363,19363,19363,19363,19363,19363,19363,19364,19364, 2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820, 19365,19365,19366, 2832, 2820,19363,19367,19367,19368,19007, 19369,19370,19371,19371, 2844, 2844, 2844, 2844, 2844, 2844, 19372,19008,19372,19008,19373,19373,19374, 2751, 2751,19368, 19008,19008,19008,19008,19008,19008,19375,19375, 2868, 2868, 2868,19008,19376,19377,19377,19377,19377,19377,19377,19377, 19377,19377,19377,19377,19377,19377,19377,19377,19377,19377, 19377,19377,19377,19377,19377,19378,19379,19377,19378,19377, 2899, 2899, 2899,19380,19380, 2905,19381,19381,19382,19383, 19383,19384, 2905,19377,19377,19385,19007,19385,19386, 2917, 19007, 2921,19008, 2921,19387, 2921, 2923, 2921, 2921, 2921, 19008,19386, 2932, 2932, 2921, 2921, 2921, 2932, 2932, 2932, 2932, 2932, 2932,19388,19388,19389,19390, 2945, 2932,19008, 19391,19392,19392,19392,19393,19392, 2956, 2956, 2956, 2959, 2959, 2956, 2959, 2956, 2956,19392, 2956, 2967, 2967,19392, 19392,19394,19395,19395,19396,19396,19395,19395,19397,19397, 19395, 2981, 2981, 2981, 2984, 2984, 2981, 2984, 2981, 2981, 19395, 2981, 2992, 2992,19395,19395,19398,19008,19008,19399, 19400,19401,19401,19402,19402,19403,19403,19404,19404,19008, 19008,19008,19405,19405,19406,19008,19008,19407,19008,19408, 19409,19409, 3022,19410,19410,19008,19411,19411,19411,19411, 19411,19412,19411,19413,19412, 3035, 3035, 3035, 3035, 3035, 3035, 3035, 3035, 3035, 3035, 3035, 3035, 3035, 3035, 3035, 3035, 3035,19411,19411,19411,19411,19411,19411,19411,19411, 19414,19414,19414,19414,19414,19414,19414,19415,19414,19415, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070,19414,19414,19414, 19414,19414, 3092, 3092, 3092,19008,19008,19008,19008, 3099, 3099, 3099,19008, 3102, 3102, 3099, 3102, 3103,19008, 3108, 3108, 3108, 3108,19008,19008,19008,19008, 3108,19008, 3118, 3118, 3118, 3118,19008,19008,19008,19008,19008,19008, 3118, 19008, 3130, 3130, 3130, 3130,19008,19008, 3130, 3138, 3138, 3138,19008,19008,19008,19008, 3130,19008, 3146, 3146, 3146, 3146,19008,19008, 3138, 3154, 3154, 3154, 3154, 3146, 3159, 3159, 3159, 3162, 3162, 3159, 3162, 3159, 3159,19008, 3154, 3170, 3170,19008,19008,19007,19008,19008,19008,19008,19008, 19008,19008,19008,19008,19008,19008,19008,19008,19008,19008, 19008,19008,19416,19416, 3194,19417,19417, 3197,19418,19418, 19419, 3194,19008,19008, 3194,19008,19420,19420, 3208, 3208, 3208,19421,19421, 3213, 3213,19422,19422, 3217,19423,19423, 19424,19425,19425, 3223, 3223,19426,19426, 3227,19427,19427, 19428,19007, 3232, 3233, 3233,19008,19008,19008,19008,19008, 19008,19008, 3241, 3241, 3244, 3241, 3241, 3241, 3244, 3249, 3249, 3251, 3249, 3249, 3249, 3249, 3256, 3256, 3258, 3256, 3256, 3256,19008, 3256, 3264, 3264, 3266, 3264, 3264, 3264, 19008, 3264, 3272, 3272, 3264, 3275, 3275, 3277, 3275, 3275, 3275,19008, 3272, 3283, 3283,19008,19429,19430, 3232,19008, 19431,19008,19008,19008,19008, 3275,19008, 3296, 3296, 3296, 3296,19008,19008, 3283, 3304, 3304, 3304, 3304,19008,19008, 19008,19008,19008, 3313, 3313,19008,19008,19429, 3318, 3318, 19008,19432,19008,19008,19433,19007,19008,19434,19435,19008, 19008,19436,19008, 3318, 3318, 3318,19008, 3318, 3318, 3318, 3318,19008,19437,19437,19437,19437,19437,19437,19437,19437, 19437,19437,19437,19437,19437,19437,19437,19437,19437,19437, 19437,19437,19437,19437,19437,19438,19439,19437,19438,19437, 3369, 3369, 3369,19440,19440, 3375,19441,19441,19442,19443, 19443,19444, 3375, 3369,19437,19445,19445, 3387,19446,19007, 3390,19447,19007,19448,19448, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395,19449,19449,19450, 3408, 19008,19451,19451,19452,19453,19453,19446,19008,19008,19008, 19008,19008,19454,19454, 3424, 3424, 3424,19008,19007,19455, 19455,19455,19455,19455,19455,19455,19455,19455,19455,19455, 19455,19455,19455,19455,19455,19456,19456,19457,19457,19458, 3447,19455, 3447,19455, 3447,19459,19459, 3457, 3457,19460, 19460, 3461,19461,19461,19462,19463,19463, 3467,19464,19464, 19465,19455,19455,19466,19466,19467,19007, 3477, 3475,19468, 19468,19469,19470,19467, 3484, 3484, 3484, 3481, 3488,19469, 3488, 3490, 3490, 3493,19469, 3493, 3488,19470, 3488, 3495, 3495, 3501, 3501,19469, 3501, 3481, 3481, 3488, 3481, 3481, 19471,19471,19472, 3512,19473,19473,19474,19475,19476,19477, 19472, 3512, 3481,19469,19478,19479,19479,19480,19479,19479, 19479,19479,19479,19479, 3533, 3533, 3533, 3533,19479,19479, 3533, 3541, 3541, 3541, 3541,19479,19479,19479,19479,19481, 19482,19482,19483,19483,19482,19484,19484,19482,19482,19482, 19482,19482,19482, 3562, 3562, 3562, 3562,19482,19482, 3562, 3570, 3570, 3570, 3570,19482,19482,19482,19482,19485,19469, 19469,19486,19487,19488,19489,19490,19490,19491,19491,19492, 19492,19469,19469,19469,19493,19493, 3596,19494,19469,19469, 19495,19469,19496,19497,19497, 3605, 3605,19498,19498,19469, 19499,19499,19499,19499,19499,19499,19500,19501,19501, 3619, 3619, 3619, 3619, 3619, 3619, 3619, 3619, 3619, 3619, 3619, 3619, 3619, 3619,19499,19499,19499,19499,19499,19499,19502, 19502,19502, 3642, 3642, 3642,19503, 3642,19503, 3648, 3648, 3648, 3648, 3648, 3648, 3648, 3648, 3648, 3648, 3648, 3648, 3648, 3648, 3648, 3648, 3648, 3648, 3642, 3642, 3642, 3642, 3642, 3642, 3642, 3642,19469,19469,19469,19469,19469,19469, 19469,19469, 3681, 3681, 3684, 3681, 3681, 3681, 3684, 3689, 3689, 3691, 3689, 3689, 3689, 3689, 3696, 3696, 3698, 3696, 3696, 3696,19469, 3696, 3704, 3704, 3706, 3704, 3704, 3704, 19469, 3704, 3712, 3712, 3704, 3715, 3715, 3717, 3715, 3715, 3715,19469, 3712, 3723, 3723,19469,19469,19469,19469, 3715, 19469, 3730, 3730, 3730, 3730,19469,19469, 3723, 3738, 3738, 3738, 3738,19469,19469,19469,19469,19469,19504,19469,19469, 19469,19469,19469,19469,19469,19505,19505, 3757, 3757,19506, 19507,19506, 3762, 3762,19508,19508, 3766,19509,19509,19510, 19511,19511,19512, 3757,19469,19469,19469,19513,19513, 3779, 3779, 3779,19514,19514, 3784, 3784, 3784,19515,19515, 3789, 3789,19516,19516, 3793,19517,19518,19518,19519,19519, 3799, 3799, 3799,19520,19520, 3804, 3804,19521,19521, 3808,19522, 19523,19523,19007, 3813, 3814, 3814,19469,19469, 3818, 3818, 19469, 3820, 3818, 3821,19469, 3824, 3824, 3818, 3818,19469, 19469,19469, 3824,19469, 3833, 3833,19469,19469,19469,19469, 19469, 3833,19469, 3842, 3842,19469,19469, 3842, 3848, 3848, 3848,19469,19469,19469, 3842,19469, 3855, 3855,19469,19469, 3848, 3861, 3861, 3861, 3861,19469,19469,19469, 3855,19469, 3869, 3869,19469,19469, 3861, 3875, 3875, 3875, 3875,19524, 19525,19469,19007,19526, 3813,19469,19527, 3869, 3888, 3888, 3890, 3888, 3888, 3888,19469, 3875, 3896, 3896,19469,19469, 19469, 3901, 3901,19469,19469,19469,19525, 3907,19469,19528, 19469,19529,19469,19530,19531,19469,19532,19469,19533,19469, 19469,19469, 3907, 3907, 3907, 3907,19469,19534,19534,19534, 19534,19534,19534,19534,19534,19534,19534,19534,19534,19534, 19534,19534,19534,19535,19535,19536,19536,19537, 3945,19534, 3945,19534, 3945,19538,19538, 3955, 3955,19539,19539, 3959, 19540,19540,19541,19542,19542, 3965,19543,19543,19544, 3945, 19534,19469,19545,19546,19007, 3975,19547,19548,19549,19547, 19548,19469, 3981, 3981, 3981, 3981,19550,19550, 3988,19551, 19551,19552,19553,19554,19555, 3988,19469,19469,19556,19556, 19557,19557,19558,19558,19546,19469,19469,19469,19469,19559, 19559, 4011,19469,19560,19561,19561,19561,19561,19561,19561, 19561,19561,19561,19561,19561,19561,19561,19561,19562,19562, 4030,19563,19563, 4033,19564,19564,19565, 4030,19561,19561, 4030,19561,19566,19566, 4044, 4044, 4044,19567,19567, 4049, 4049,19568,19568, 4053,19569,19569,19570,19571,19571, 4059, 4059,19572,19572, 4063,19573,19573,19574,19561,19561,19575, 19575, 4071,19576,19007, 4071,19577,19577,19578, 4077,19578, 4074,19576, 4082, 4082, 4082, 4077, 4077, 4077, 4077,19579, 19579,19579, 4091, 4092, 4092, 4095, 4095, 4095, 4091, 4077, 4080, 4095, 4095, 4103,19579, 4103, 4105, 4103, 4103, 4103, 4077, 4077,19580,19580,19581, 4114,19581, 4114,19582,19582, 19583, 4120,19584,19584,19585,19586,19583,19587,19587,19588, 19589, 4117, 4077,19579,19590,19591,19591,19592,19591, 4139, 4139, 4141, 4139, 4139, 4139,19591, 4139, 4147, 4147,19591, 19591,19593,19594,19595,19596,19596,19594,19597,19597,19594, 4160, 4160, 4162, 4160, 4160, 4160,19594, 4160, 4168, 4168, 19594,19594,19598,19579,19579,19599,19600,19601,19601,19007, 19601,19601,19601,19602,19602,19603,19603,19604,19604,19579, 19579,19579,19605,19606,19605,19579,19579,19607,19579,19608, 19609,19610,19609,19609,19609,19579,19611,19612,19612,19611, 19613, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209,19611, 4209,19611, 19611,19611,19611,19614,19614,19614,19614,19614,19614,19614, 19615,19615, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242,19614, 4258, 4258, 4258, 4258, 4258,19579,19579,19579, 4266, 4266,19579, 4268, 4266, 4269,19579, 4272, 4272, 4266, 4266,19579,19579,19579, 4272,19579, 4281, 4281,19579,19579,19579,19579,19579, 4281, 19579, 4290, 4290,19579,19579, 4290, 4296, 4296, 4296,19579, 19579,19579, 4290,19579, 4303, 4303,19579,19579, 4296, 4309, 4309, 4309, 4309,19579,19579,19579, 4303,19579, 4317, 4317, 19579,19579, 4309, 4323, 4323, 4323, 4323, 4317, 4328, 4328, 4330, 4328, 4328, 4328,19579, 4323, 4336, 4336,19579,19579, 19579,19007,19579,19579,19579,19579,19579,19579,19579,19579, 19616,19616, 4352, 4352, 4352,19617,19617,19618,19618,19619, 4357, 4357, 4357,19620,19620, 4365, 4365,19621,19621, 4369, 19622,19622,19623,19624,19624, 4375,19625,19625,19626,19579, 19579,19579, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352,19627,19627, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394,19628,19628, 4409, 4409, 4409, 4409, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352,19007, 4429, 4430, 4430,19579,19579,19579,19579,19579,19579, 4437,19579, 4440, 4437, 4440, 4443, 4440, 4445, 4443,19579,19579, 4443, 4450, 4445, 4452, 4450,19579, 4450, 4456, 4452, 4458, 4456, 19579, 4456, 4462, 4462, 4456, 4465, 4458, 4467, 4465,19579, 4462, 4471, 4471, 4465, 4474, 4467, 4476, 4474,19579, 4471, 4480, 4480,19629,19630,19579,19631,19632,19007,19579,19633, 19579,19579,19579, 4474,19579, 4494, 4494,19579,19579, 4480, 4500, 4500, 4500, 4500,19579,19579,19579,19579,19579, 4509, 4509,19579,19579,19630, 4514,19579,19634,19579,19635,19636, 19635,19637,19579,19638,19579,19639,19639,19639,19579,19579, 19579, 4514, 4514,19579, 4514,19579,19640,19640,19640,19640, 19640,19640,19640,19640,19640,19640,19640,19640,19640,19640, 19641,19641, 4552,19642,19642, 4555,19643,19643,19644, 4552, 19640,19640, 4552,19640,19645,19645, 4566, 4566, 4566,19646, 19646, 4571, 4571,19647,19647, 4575,19648,19648,19649,19650, 19650, 4581, 4581,19651,19651, 4585,19652,19652,19653,19640, 19579,19654,19655,19007,19656,19657,19658,19658,19659,19659, 19660, 4598, 4598, 4598,19657, 4598,19661,19661, 4608, 4608, 19662,19662, 4612,19663,19663,19664,19665,19665,19666,19666, 19667,19579,19579,19668,19668,19669,19669,19670,19670,19671, 19579,19579,19579,19579,19579,19672,19672, 4637,19579,19673, 19673,19673,19673,19673,19673,19673,19673,19673,19673,19673, 19673,19673,19673,19673,19673,19674,19674, 4657, 4657,19675, 19676,19675, 4662, 4662,19677,19677, 4666,19678,19678,19679, 19680,19680,19681, 4657,19673,19673,19673,19682,19682, 4679, 4679, 4679,19683,19683, 4684, 4684, 4684,19684,19684, 4689, 4689,19685,19685, 4693,19686,19687,19687,19688,19688, 4699, 4699, 4699,19689,19689, 4704, 4704,19690,19690, 4708,19691, 19692,19692,19673,19673,19693,19693, 4716, 4716,19694,19007, 4716,19695,19695,19696, 4723,19696, 4723, 4726,19694, 4729, 4729, 4729,19697,19697, 4734, 4734, 4736,19697, 4736, 4734, 4738, 4738, 4742,19697, 4742, 4744, 4742, 4742, 4742, 4723, 4726, 4742, 4752, 4752, 4752, 4755, 4755, 4755, 4752, 4755, 4752, 4752,19698,19698,19699, 4764,19699, 4764, 4767, 4764, 19700,19700,19701, 4772,19701, 4772,19702,19702,19703, 4778, 19704,19704,19705,19706,19703, 4775,19707,19707,19708, 4788, 19709,19709,19710,19711,19708, 4767,19712,19713,19714,19715, 19715,19716,19715,19715,19715,19715,19715, 4806, 4806,19715, 19715, 4806, 4812, 4812, 4812, 4812,19715,19715,19715,19715, 19717,19718,19719,19719,19719,19719,19720,19720,19718,19721, 19721,19718,19718,19718,19718,19718, 4835, 4835,19718,19718, 4835, 4841, 4841, 4841, 4841,19718,19718,19718,19718,19722, 19713,19713,19723,19724,19725,19726,19726,19727,19727,19728, 19728,19713,19713,19713,19729,19730,19729,19713,19731,19713, 19732,19733,19734,19733,19733,19713,19735,19736,19735,19737, 19736, 4881, 4881, 4881, 4881, 4881, 4881, 4881, 4881, 4881, 4881, 4881, 4881, 4881, 4881,19735,19735,19735,19735,19735, 19738,19738,19739,19739,19738, 4904, 4904, 4904, 4904, 4904, 4904, 4904, 4904, 4904, 4904, 4904, 4904, 4904, 4904, 4904, 4904, 4904,19738, 4904,19738,19738,19738,19738,19713,19713, 19713,19713,19713,19713,19713, 4934,19713, 4937, 4934, 4937, 4940, 4937, 4942, 4940,19713,19713, 4940, 4947, 4942, 4949, 4947,19713, 4947, 4953, 4949, 4955, 4953,19713, 4953, 4959, 4959, 4953, 4962, 4955, 4964, 4962,19713, 4959, 4968, 4968, 4962, 4971, 4964, 4973, 4971,19713, 4968, 4977, 4977,19713, 19713,19713, 4971,19713, 4983, 4983,19713,19713, 4977, 4989, 4989, 4989, 4989,19713,19713,19713,19713,19713,19007,19713, 19713,19713,19713,19713,19713,19713,19713,19740,19740, 5009, 5009, 5009,19741,19741, 5014,19742,19742, 5017,19743,19743, 19744, 5014, 5014,19745,19745, 5025, 5025, 5025,19746,19746, 5030, 5030,19747,19747, 5034,19748,19748,19749,19750,19750, 5040, 5040,19751,19751, 5044,19752,19752,19753,19754,19754, 5009, 5009, 5009, 5009, 5009,19754,19754,19754,19754,19754, 19754, 5009,19007, 5063, 5064, 5064,19754,19754, 5068,19754, 5068,19754, 5072, 5072,19754,19754,19754, 5072, 5078, 5078, 19754,19754,19754,19754, 5078, 5085, 5085, 5085, 5088, 5088, 5088,19754,19754,19754, 5085, 5095, 5095, 5088, 5098, 5098, 5098, 5098,19754,19754,19754, 5095, 5106, 5106, 5098, 5109, 5109, 5109, 5109,19754,19754,19754, 5106, 5117, 5117, 5109, 5120, 5120, 5120, 5120,19755,19756,19754,19754,19007,19757, 19758, 5063,19754,19759, 5117, 5135, 5117, 5137, 5135,19754, 5120, 5141, 5141,19754,19754, 5145, 5145,19007,19754,19756, 5150,19754, 5150,19754,19754,19007,19760,19754,19761,19754, 19762,19762,19762,19762,19754,19754,19754,19754, 5150, 5150, 19754, 5150,19754,19763,19763,19763,19763,19763,19763,19763, 19763,19763,19763,19763,19763,19763,19763,19763,19763,19764, 19764, 5191, 5191,19765,19766,19765, 5196, 5196,19767,19767, 5200,19768,19768,19769,19770,19770,19771, 5191,19763,19763, 19763,19772,19772, 5213, 5213, 5213,19773,19773, 5218, 5218, 5218,19774,19774, 5223, 5223,19775,19775, 5227,19776,19777, 19777,19778,19778, 5233, 5233, 5233,19779,19779, 5238, 5238, 19780,19780, 5242,19781,19782,19782,19763,19783,19783,19784, 19785,19786,19787,19788,19788, 5255,19789,19789, 5258,19790, 19790,19791, 5255, 5255,19787,19787,19787,19792,19792, 5269, 5269, 5269,19793,19793, 5274, 5274,19794,19794, 5278,19795, 19795,19796,19797,19797, 5284,19798,19798, 5287,19799,19799, 19800,19801,19801,19802,19801,19803,19803,19804,19804,19805, 19801,19801,19801,19801,19806,19806,19801,19807,19807,19807, 19807,19807,19807,19808,19808, 5315, 5315, 5315,19809,19809, 19810,19810,19811, 5320, 5320, 5320,19812,19812, 5328, 5328, 19813,19813, 5332,19814,19814,19815,19816,19816, 5338,19817, 19817,19818,19807,19807,19807, 5315, 5315, 5315, 5315, 5315, 5315, 5315, 5315, 5315, 5315,19819,19819, 5357, 5357, 5357, 5357, 5357, 5357, 5357, 5357, 5357, 5357, 5357, 5357, 5357, 19820,19820, 5372, 5372, 5372, 5372, 5315, 5315, 5315, 5315, 5315, 5315, 5315, 5315, 5315, 5315, 5315, 5315, 5315, 5315, 5315,19807,19807,19821,19821, 5395, 5395, 5395,19822,19007, 19823,19823,19824, 5402,19824, 5402, 5405, 5402, 5405, 5400, 19822, 5411, 5411, 5411,19825,19825,19825,19825,19825, 5419, 5419, 5419, 5421, 5421, 5424, 5424, 5424, 5419, 5424, 5424, 5430, 5430, 5430, 5433, 5433, 5433, 5430, 5433, 5430, 5430, 5405,19825,19825,19825,19825, 5430, 5446,19825, 5446, 5448, 5446, 5446, 5446,19825,19825,19826,19826,19827, 5457,19827, 5457, 5460, 5457, 5460,19828,19828,19829, 5466,19829, 5466, 5469, 5466,19830,19830,19831, 5474,19831, 5474,19832,19832, 19833, 5480,19834,19835,19835,19836,19833, 5477, 5469,19837, 19837,19838, 5491,19838, 5491,19839,19839,19840, 5497,19841, 19842,19842,19843,19840, 5494,19844,19845,19846,19847,19848, 19848,19849,19848, 5513, 5513, 5515, 5513, 5515, 5515, 5519, 5519,19848,19850,19851,19852,19852,19852,19853,19853,19851, 19854,19854,19851, 5533, 5533, 5535, 5533, 5535, 5535, 5539, 5539,19851,19855,19846,19846,19846,19856,19857,19858,19859, 19859,19860,19860,19861,19861,19846,19846,19846,19862,19862, 19862,19846,19863,19846,19864,19865,19865,19865,19865,19846, 19866,19866,19867,19868,19868, 5575, 5575, 5575, 5575, 5575, 5575, 5575, 5575, 5575, 5575,19866,19866,19869,19869,19870, 19869,19870, 5592, 5592, 5592, 5592, 5592, 5592, 5592, 5592, 5592, 5592, 5592, 5592, 5592, 5592, 5592, 5591, 5591, 5591, 5591, 5591,19846,19846,19846,19846, 5616,19846, 5616,19846, 5620, 5620,19846,19846,19846, 5620, 5626, 5626,19846,19846, 19846,19846, 5626, 5633, 5633, 5633, 5636, 5636, 5636,19846, 19846,19846, 5633, 5643, 5643, 5636, 5646, 5646, 5646, 5646, 19846,19846,19846, 5643, 5654, 5654, 5646, 5657, 5657, 5657, 5657,19846,19846,19846, 5654, 5665, 5665, 5657, 5668, 5668, 5668, 5668, 5665, 5673, 5665, 5675, 5673,19846, 5668, 5679, 5679,19846,19846,19007,19846,19846,19846,19846,19846,19846, 19846,19846,19846,19871,19871, 5695, 5695, 5695,19872,19872, 5700, 5700,19873,19873, 5704, 5704,19874,19874, 5708,19875, 19875,19876,19877,19877,19878, 5700,19879,19879, 5718, 5718, 5718,19880,19880, 5723, 5723, 5723,19881,19881, 5728, 5728, 19882,19882, 5732,19883,19884,19884,19885,19885, 5738, 5738, 5738,19886,19886, 5743, 5743,19887,19887, 5747,19888,19889, 19889,19890,19890,19007, 5754, 5755, 5755,19890,19890,19890, 19890,19890, 5762, 5762, 5762, 5765, 5765,19890, 5768, 5768, 5768, 5765, 5772, 5772, 5772, 5775, 5775, 5772, 5778, 5778, 5775, 5781, 5781, 5778, 5784, 5784, 5781, 5787, 5787, 5784, 5790, 5790, 5787, 5793, 5793,19891,19892,19890,19890,19893, 19894,19894, 5754,19890,19895,19890,19890,19890, 5790, 5809, 5809, 5793, 5812, 5812, 5812, 5812,19890, 5817, 5817,19007, 19896,19007, 5822, 5822, 5822,19890,19897, 5822, 5822, 5822, 19898, 5830,19890,19892, 5834,19890, 5834,19890,19890,19007, 19899,19899,19890,19890,19900,19900,19900,19900,19900,19890, 19890,19890,19890, 5834,19890,19890, 5834,19890,19901,19901, 19901,19901,19901,19901,19902,19902, 5866, 5866, 5866,19903, 19903,19904,19904,19905, 5871, 5871, 5871,19906,19906, 5879, 5879,19907,19907, 5883,19908,19908,19909,19910,19910, 5889, 19911,19911,19912,19901,19901,19901, 5866, 5866, 5866, 5866, 5866, 5866, 5866, 5866, 5866, 5866,19913,19913, 5908, 5908, 5908, 5908, 5908, 5908, 5908, 5908, 5908, 5908, 5908, 5908, 5908,19914,19914, 5923, 5923, 5923, 5923, 5866, 5866, 5866, 5866, 5866, 5866, 5866, 5866, 5866, 5866, 5866, 5866, 5866, 5866, 5866,19901,19890,19915,19916,19915,19916, 5948,19917, 19917,19918,19918, 5953, 5953,19919,19920,19919, 5958, 5958, 19921,19921, 5962,19922,19922,19923,19924,19925,19926, 5953, 19927,19927,19927,19927,19928,19928, 5976, 5976, 5976,19929, 19929, 5981, 5981, 5981,19930,19930, 5986, 5986,19931,19931, 5990,19932,19933,19933,19934,19934, 5996, 5996,19935,19935, 6000, 6000,19936,19936, 6004,19937,19938,19938,19939,19939, 19939,19939,19940,19940,19939,19941,19942,19939,19939,19939, 19943,19939,19944,19944,19944,19944,19944,19944,19944,19945, 19945, 6031, 6031, 6031,19946,19946, 6036,19947,19947, 6039, 19948,19948,19949, 6036, 6036,19950,19950, 6047, 6047, 6047, 19951,19951, 6052, 6052,19952,19952, 6056,19953,19953,19954, 19955,19955, 6062, 6062,19956,19956, 6066,19957,19957,19958, 19959,19959, 6031, 6031, 6031, 6031, 6031,19959,19959,19959, 19959,19959,19959, 6031,19959,19959,19960,19960, 6088, 6088, 6088,19961,19962,19962,19963, 6094,19963, 6094, 6097, 6094, 6097, 6097,19961, 6103, 6103, 6103,19964,19964, 6108, 6108, 6110,19964, 6110, 6108, 6112, 6112, 6116,19964, 6116, 6118, 6116, 6116, 6116,19964,19964,19964,19964, 6116, 6128,19964, 6128, 6130, 6128, 6128, 6128,19964,19964, 6128, 6138, 6138, 6138, 6141, 6141, 6141, 6138, 6141, 6138, 6138,19964, 6094, 6094, 6097, 6094, 6097, 6094, 6097, 6094, 6097, 6097, 6094, 6094, 6097, 6094, 6097, 6094, 6097, 6094, 6097,19965,19965, 19966, 6170,19966, 6170, 6173, 6170, 6170, 6170, 6173, 6170, 6173, 6170, 6170, 6170, 6170, 6173, 6170, 6170, 6173, 6170, 6173, 6173, 6173, 6173, 6097, 6094, 6094, 6097, 6094, 6097, 6094, 6097, 6094, 6094, 6094, 6097, 6094, 6097, 6094, 6094, 6094, 6094, 6097, 6094, 6094, 6097, 6094, 6097, 6097, 6097, 6097, 6094,19964,19967,19968,19968,19969,19968,19968,19968, 19968, 6231, 6231, 6231, 6234, 6234, 6234, 6234,19970,19971, 19972,19972,19972,19973,19973,19971,19974,19975,19971,19971, 19971,19971, 6252, 6252, 6252, 6255, 6255, 6255, 6255,19976, 19964,19964,19977,19978,19979,19980,19980,19981,19981,19982, 19982,19964,19964,19964,19983,19983,19964,19984,19985,19986, 19987,19988,19987,19964,19989,19990,19991,19990, 6288, 6288, 6288, 6288, 6288, 6288, 6288, 6288, 6288, 6288,19989,19992, 19992,19992,19993,19993, 6304, 6304, 6304, 6304, 6304, 6304, 6304, 6304, 6304, 6304, 6304,19992,19992,19964,19964,19964, 19964,19964,19964,19964, 6324, 6324, 6324, 6327, 6327,19964, 6330, 6330, 6330, 6327, 6334, 6334, 6334, 6337, 6337, 6334, 6340, 6340, 6337, 6343, 6343, 6340, 6346, 6346, 6343, 6349, 6349, 6346, 6352, 6352, 6349, 6355, 6355,19964,19964,19964, 6352, 6361, 6361, 6355, 6364, 6364, 6364, 6364,19964,19007, 19964,19964,19964,19964,19964,19964,19964,19964,19964,19994, 19994, 6381, 6381, 6381,19995,19995, 6386, 6386, 6386,19996, 19996, 6391, 6391, 6391,19997,19997, 6396, 6396,19998,19998, 6400,19999,19999,20000,20001,20001, 6406,20002,20002,20003, 6386, 6386, 6386, 6386, 6386, 6386, 6386, 6386, 6386, 6386, 20004,20004, 6422, 6422, 6422, 6422, 6422, 6422, 6422, 6422, 6422, 6422, 6422, 6422, 6422,20005,20005, 6437, 6437, 6437, 6437, 6386, 6386, 6386, 6386, 6386, 6386, 6386, 6386, 6386, 6386, 6386, 6386, 6386, 6386, 6386,19964,19964,19007, 6459, 6460, 6460,20006,19964,19964,19964,19964,19964,19964,19964, 6470, 6470,19964,19964,19964, 6470,19964,19964,19964, 6476, 19964,19964,19964, 6476,19964,19964,19964, 6476,20007,19007, 19964,19964,20008,20008,19964,19007,20009,20009,20010,19007, 20010,20011, 6459,19964,20012,19964, 6506, 6506, 6476, 6509, 6509,19964, 6512, 6512,20013,19007, 6516, 6516, 6516,19964, 6516, 6516, 6516, 6523,19007,20014,20015,20016, 6525,19007, 6530,19964, 6530,20017, 6530, 6532, 6530, 6530, 6530,19964, 20018,20018, 6530,20016,20019,20019,20020, 6544,19964,19964, 19964,20021,19964,19964,19007,20022,20022,19964,19964,20023, 20023,20023,20023,20023,20023,20023,20023,20023,20023,20023, 19964,19964,19964,19964,20021,19964,19964, 6575,19964,20024, 20024,20024,20024,20024,20024,20024,20025,20025, 6588, 6588, 6588,20026,20026, 6593,20027,20027, 6596,20028,20028,20029, 6593, 6593,20030,20030, 6604, 6604, 6604,20031,20031, 6609, 6609,20032,20032, 6613,20033,20033,20034,20035,20035, 6619, 6619,20036,20036, 6623,20037,20037,20038,20039,20039, 6588, 6588, 6588, 6588, 6588,20039,20039,20039,20039,20039,20039, 6588,20039,20040,20041,20041,20042,20043,20043,20044,20044, 20045,20045, 6652, 6652, 6652,20046,20046,20047,20047,20048, 6657, 6657, 6657,20049,20049, 6665, 6665,20050,20050, 6669, 20051,20051,20052,20053,20053,20054,20054,20055,20056,20056, 20056,20056, 6652, 6652, 6652, 6652, 6652, 6652, 6652, 6652, 6652, 6652,20057,20057, 6694, 6694, 6694, 6694, 6694, 6694, 6694, 6694, 6694, 6694, 6694, 6694, 6694,20058,20058, 6709, 6709, 6709, 6652, 6652, 6652, 6652, 6652, 6652, 6652, 6652, 6652, 6652, 6652, 6652, 6652, 6652, 6652,20059,20059,20059, 20059,20060,20060,20059,20061,20059,20059,19007,20059,20059, 20062,20062,20062,20062,20062,20062,20062,20063,20063, 6749, 6749, 6749,20064,20064, 6754, 6754,20065,20065, 6758, 6758, 20066,20066, 6762,20067,20067,20068,20069,20069,20070, 6754, 20071,20071, 6772, 6772, 6772,20072,20072, 6777, 6777, 6777, 20073,20073, 6782, 6782,20074,20074, 6786,20075,20076,20076, 20077,20077, 6792, 6792, 6792,20078,20078, 6797, 6797,20079, 20079, 6801,20080,20081,20081,20082,20082,20082,20082,20083, 20083, 6811, 6811, 6811,20084,20084,20085, 6816,20085, 6816, 6819, 6816, 6819, 6819,20086,20086, 6826, 6826,20087,20087, 20087,20087,20087, 6833, 6833, 6833, 6835, 6835, 6838, 6838, 6838, 6833, 6838, 6838, 6844, 6844, 6844, 6847, 6847, 6847, 6844, 6847, 6844, 6844, 6844, 6855, 6855, 6855, 6858, 6858, 6858, 6855, 6858, 6855, 6855,20087,20087,20087,20087,20087, 6855, 6871,20087, 6871, 6873, 6871, 6871, 6871,20087,20087, 6871, 6881, 6881, 6881, 6816, 6816, 6819, 6816, 6819, 6816, 6819, 6816, 6819, 6819, 6816, 6819, 6816,20087,20088,20089, 20089,20090,20089, 6903, 6903, 6903, 6906, 6906,20091,20092, 20093,20093,20093,20094,20094,20092,20095,20096,20096,20096, 20093,20096,20092, 6923, 6923, 6923, 6926, 6926,20097,20087, 20087,20098,20099,20100,20101,20101,20102,20102,20103,20103, 20087,20087,20087,20104,20104,20087,20105,20106,20106,20106, 20107,20108,20109,20109,20109,20109,20109,20108,20087,20110, 20111,20112,20112, 6963, 6963, 6963, 6963, 6963, 6963, 6963, 20110,20113,20113,20113,20114,20114, 6976, 6976, 6976, 6976, 6976, 6976, 6976, 6976, 6976, 6976, 6976,20113,20087,20087, 20087,20087,20087,20087,20087,20087,20087, 6997, 6997,20087, 20087,20087, 6997,20087,20087,20087, 7003,20087,20087,20087, 7003,20087,20087,20087, 7003,20087, 7016, 7016, 7003, 7019, 7019,20087,19007,20087,20087,20087,20087,20087,20087,20087, 20087,20087,20087,20115,20115, 7035, 7035, 7035,20116,20116, 7040, 7040, 7040,20117,20117, 7045, 7045, 7045,20118,20118, 7050, 7050,20119,20119, 7054,20120,20120,20121,20122,20122, 7060, 7060,20123,20123, 7064,20124,20124,20125, 7035, 7035, 7035, 7035, 7035,20087,20087,20087,20087,20087,20087, 7035, 20087,20087,19007, 7083, 7084, 7084,20126,20126,20087,20127, 19007, 7091, 7091, 7091, 7091, 7091, 7091, 7097,20087,20087, 20087,20128,20128,19007,20087,20129,19007, 7107, 7107, 7107, 7107, 7107, 7107, 7113,20130,20130, 7116,19007, 7118,19007, 7116, 7116, 7083,20087,20131,20087,20087,20087, 7089,20087, 7130, 7130,19007,20129,20132,20133, 7133,19007, 7138, 7130, 7138,20134, 7138, 7140, 7138, 7138, 7138, 7130, 7138,20133, 7150,19007, 7152,20135,20136,20137,20087,20137,20138,20135, 7160, 7160, 7160,19007, 7164, 7164,20087, 7167,20087, 7167, 7164,20139, 7164, 7169, 7169, 7175, 7175, 7175,20140,20141, 7164, 7181,20142,20142, 7184,20143,20143,20144, 7181,20087, 20087,20087,20145,20087,20087,19007,20087,20146,20087,20087, 20147,20147,20147,20147,20147,20147,20147,20147,20147,20147, 20147,20147,20147,20087,20087,20148,20087,20145,20087,20087, 7218,20087,20149,20149,20149,20149,20149,20149,20149,20149, 20150,20150, 7232, 7232, 7232,20151,20151, 7237, 7237,20152, 20152, 7241, 7241,20153,20153, 7245,20154,20154,20155,20156, 20156,20157, 7237,20158,20158, 7255, 7255, 7255,20159,20159, 7260, 7260, 7260,20160,20160, 7265, 7265,20161,20161, 7269, 20162,20163,20163,20164,20164, 7275, 7275, 7275,20165,20165, 7280, 7280,20166,20166, 7284,20167,20168,20168,20169,20169, 20169,20170,20171,20171,20172,20172, 7296, 7296, 7296, 7296, 7296, 7296,20173, 7296,20173,20174,20174,20175,20175,20176, 20176, 7311, 7311, 7311,20177,20177, 7316,20178,20178, 7319, 20179,20179,20180, 7316, 7316,20181,20181, 7327, 7327, 7327, 20182,20182, 7332, 7332,20183,20183, 7336,20184,20184,20185, 20186,20186, 7342,20187,20187, 7345,20188,20188,20189,20190, 20190,20190, 7311, 7311, 7311, 7311, 7311,20190,20190,20190, 20190,20190, 7311,20191,20191,20191,20191,20192,20192,20191, 20193,20191,20194,19007, 7374,20191,20191,20195,20195,20195, 20195,20195,20195,20195,20195,20196,20196, 7387, 7387, 7387, 20197,20197, 7392, 7392, 7392,20198,20198, 7397, 7397, 7397, 20199,20199, 7402, 7402,20200,20200, 7406,20201,20201,20202, 20203,20203, 7412,20204,20204,20205, 7392, 7392, 7392, 7392, 7392, 7392, 7392, 7392, 7392, 7392,20206,20206, 7428, 7428, 7428, 7428, 7428, 7428, 7428, 7428, 7428, 7428, 7428, 7428, 7428,20207,20207, 7443, 7443, 7443, 7443, 7392, 7392, 7392, 7392, 7392, 7392, 7392, 7392, 7392, 7392, 7392, 7392, 7392, 7392, 7392,20195,20195,20195,20195,20208,20208, 7468, 7468, 7468,20209,20209,20210, 7473,20210, 7473, 7476, 7473, 7476, 7476,20211,20211, 7483, 7483, 7485,20211, 7485, 7483, 7487, 7487, 7491,20211, 7491, 7493, 7491, 7491, 7491,20211,20211, 20211,20211, 7491, 7503,20211, 7503, 7505, 7503, 7503, 7503, 20211,20211,20211,20211,20211,20211, 7503, 7517,20211, 7517, 7519, 7517, 7517, 7517,20211,20211, 7517, 7527, 7527, 7527, 7517, 7531, 7531, 7531, 7534, 7534, 7534, 7531, 7534, 7531, 7531,20211,20211, 7527, 7544, 7544, 7473,20211,20212,20213, 20213,20214,20213,20213,20213,20213,20215,20216,20217,20217, 20217,20218,20219,20216,20220,20221,20221,20221,20216,20216, 20216,20216,20222,20211,20211,20211,20223,20224,20225,20226, 20226,20227,20227,20228,20228,20211,20211,20211,20229,20229, 20211,20230,20231,20231,20231,20232,20233,20234,20234,20234, 20233,20211,20235,20236,20236,20237,20237, 7607, 7607, 7607, 7607, 7607,20238,20238,20238,20239,20239, 7617, 7617, 7617, 7617, 7617, 7617, 7617, 7617,20238,20211,20211,20211,20211, 20211,20211, 7629,20211,19007,20211,20211,20211,20211,20211, 20211,20211,20211,20211,20240,20240, 7646, 7646, 7646,20241, 20241, 7651, 7651, 7651,20242,20242, 7656, 7656, 7656,20243, 20243, 7661, 7661, 7661,20244,20244, 7666, 7666,20245,20245, 7670,20246,20247,20247,20248,20248, 7676, 7676, 7676,20249, 20249, 7681, 7681,20250,20250, 7685,20251,20252,20252,20211, 20211,19007, 7692, 7693, 7693,20211,20253,20254,20255,19007, 7700, 7700,20256, 7700, 7700, 7700, 7700, 7700,20255, 7709, 20211,20257,20258,19007, 7714, 7714,20259, 7714, 7714, 7714, 7714, 7714,20258, 7723,20260,20260,20261,20262,20262, 7729, 7726, 7726, 7692,20211,20263,20211, 7736, 7736,19007, 7739, 20264,20265,20266,20264, 7744, 7744, 7744,19007, 7748, 7748, 7736, 7751, 7736, 7751, 7748,20267, 7748, 7753, 7753, 7759, 7759, 7759, 7748, 7763, 7763,19007,20268,20269,20269,20270, 20270, 7771,20271,20271,20272, 7766,20268, 7777, 7777, 7777, 20273,20273, 7782, 7782, 7751, 7785, 7785, 7785, 7787, 7787, 7790, 7790, 7790, 7785,20274, 7790, 7790, 7797, 7736, 7797, 7799, 7797, 7797, 7797,20275,20275,20276, 7782,20277,20278, 20277, 7799, 7811, 7811,20279,20279, 7816,20280,20280,20281, 20282,20282,20283, 7782, 7812, 7812, 7812,20284, 7812, 7812, 19007,20285, 7812, 7812,20286,20286,20286,20286, 7812,20287, 20288,20289,20288, 7812,20284, 7812, 7812, 7845, 7812,20290, 20290,20290,20290,20290,20290,20290,20290,20290,20291,20291, 7860, 7860, 7860,20292,20292, 7865, 7865, 7865,20293,20293, 7870, 7870, 7870,20294,20294, 7875, 7875,20295,20295, 7879, 20296,20296,20297,20298,20298, 7885,20299,20299,20300, 7865, 7865, 7865, 7865, 7865, 7865, 7865, 7865, 7865, 7865,20301, 20301, 7901, 7901, 7901, 7901, 7901, 7901, 7901, 7901, 7901, 7901, 7901, 7901, 7901,20302,20302, 7916, 7916, 7916, 7916, 7865, 7865, 7865, 7865, 7865, 7865, 7865, 7865, 7865, 7865, 7865, 7865, 7865, 7865, 7865,20290,20290,20290, 7812,20303, 20303,20304,20304, 7943, 7943, 7943, 7943, 7943, 7943, 7943, 7943, 7943, 7943, 7943,20305,20305,20306, 7956, 7956, 7943, 20307,20307,20308,20308,20309,20309, 7966, 7966, 7966,20310, 20310, 7971, 7971,20311,20311, 7975, 7975,20312,20312, 7979, 20313,20313,20314,20315,20316,20317, 7971,20318,20318, 7989, 7989, 7989,20319,20319, 7994, 7994, 7994,20320,20320, 7999, 7999,20321,20321, 8003,20322,20323,20323,20324,20324, 8009, 8009,20325,20325, 8013, 8013,20326,20326, 8017,20327,20328, 20328,20329,20329,20329,20330,20330,20330,20330,20331,20331, 20330,20332,20330,20333,20333, 8035, 8035, 8035,20330,20334, 20334,20334,20334,20334,20334,20334,20334,20335,20335, 8049, 8049, 8049,20336,20336, 8054, 8054, 8054,20337,20337, 8059, 8059, 8059,20338,20338, 8064, 8064,20339,20339, 8068,20340, 20340,20341,20342,20342, 8074, 8074,20343,20343, 8078,20344, 20344,20345, 8049, 8049, 8049, 8049, 8049,20334,20334,20334, 20334,20334,20334, 8049,20334,20334,20334,20334,20346,20346, 8100, 8100, 8100,20347,20347,20348, 8105,20348, 8105, 8108, 8105, 8108, 8108,20349,20349,20349,20349,20349, 8118, 8118, 8118, 8120, 8120, 8123, 8123, 8118, 8123, 8123, 8128, 8128, 8128, 8131, 8131, 8128, 8131, 8128, 8128, 8128, 8138, 8138, 8138, 8141, 8141, 8138, 8141, 8138, 8138,20349, 8138, 8149, 8149, 8149, 8152, 8152, 8149, 8152, 8149, 8149,20349, 8149, 8160, 8160,20349,20349,20349,20349, 8149, 8167,20349, 8167, 8169, 8167, 8167, 8167,20349,20349, 8160, 8177, 8177, 8177, 20349,20349,20349,20349, 8177,20349,20350,20351,20351,20352, 20353,20354,20355,20356,20356,20357,20358,20358,20358,20358, 20358,20354,20359,20360,20360,20360,20361,20349,20349,20362, 20363,20364,20365,20365,20366,20366,20367,20367,20349,20349, 20349,20368,20368,20349,20369,20370,20370,20370,20371,20372, 20373,20373,20373,20372,20349,20374,20375,20375,20376,20376, 8240, 8240,20377,20377,20377,20378,20378, 8247, 8247, 8247, 8247, 8247, 8247,20379,20349,20349,20349,20349,20349,20349, 20349,20349,20349,20349,20349,20380,20380, 8267, 8267, 8267, 20381,20381, 8272, 8272, 8272, 8272, 8272, 8272, 8272, 8272, 8272, 8272, 8272, 8272, 8272,20382,20382, 8287, 8287, 8287, 8287, 8287, 8287, 8287, 8287, 8287, 8287, 8287, 8287, 8287, 20383,20383, 8302, 8302, 8302, 8302, 8272, 8272, 8272, 8272, 8272, 8272, 8272, 8272, 8272, 8272, 8272, 8272, 8272, 8272, 8272,20384,20349,19007, 8324, 8325, 8325,20349,20385,20386, 20387,19007,20387,20388, 8333, 8335,19007, 8335, 8337, 8335, 20388, 8332, 8335, 8333, 8333, 8333,20349,20349,20389,20349, 20386,20390,20390,20391, 8353, 8355, 8337, 8355, 8337, 8355, 20391, 8355, 8353, 8353, 8353,20392,19007, 8337,20393,20393, 8324,20349,20394,20349, 8374, 8374,19007,20395,20396,20397, 20397,20398, 8377,20395, 8384, 8384, 8384,20399,20399, 8389, 8389, 8374, 8392, 8392, 8392, 8394, 8394, 8397, 8397, 8397, 8392,20400, 8397, 8397, 8404, 8374, 8404, 8406, 8404, 8404, 8404, 8389, 8389,19007,20401,20402,20403,20402,20349, 8418, 20404,20405,20406,20404,20405, 8424, 8425, 8425,20407,20407, 8430,20408,20408,20409,20410,20410,20411,20401, 8438, 8438, 8438,20349, 8442, 8442, 8442, 8445,20349, 8445, 8442, 8447, 8447, 8451,20349, 8451, 8453, 8451, 8451, 8451,20412, 8451, 8460, 8460, 8460, 8463, 8463, 8463, 8460, 8463, 8460, 8460, 19007,20413,20414,20415,20416,20416,20417,20417,20418, 8476, 20349, 8476, 8476,20419,20419, 8485, 8485,20420,20420, 8489, 20421,20421,20422,20423,20423,20424,20424,20425,20426,20349, 20349,20349,20427,20349,20349,19007,20428,20428,20349,20429, 20429,20429,20429,20429,20430,20431,20430,20349,19007,20432, 20349,20349,20349,20349,20427,20349,20433,20433,20433,20433, 20433,20433,20433,20433,20434,20434, 8536, 8536, 8536,20435, 20435, 8541, 8541, 8541,20436,20436, 8546, 8546, 8546,20437, 20437, 8551, 8551,20438,20438, 8555,20439,20439,20440,20441, 20441, 8561, 8561,20442,20442, 8565,20443,20443,20444, 8536, 8536, 8536, 8536, 8536,20433,20433,20433,20433,20433,20433, 8536,20433,20433,20433,20349,20445,20445,20446,20447,20445, 20446,20445, 8591, 8591, 8591, 8591, 8591, 8591,20448,20448, 8600, 8600,20449,20449,20450,20451,20451, 8604,20452, 8600, 8600, 8591,20445,20453,20454,20454,20455,20455, 8618, 8618, 8618,20456,20456, 8623, 8623, 8623,20457,20457, 8628, 8628, 8628,20458,20458, 8633, 8633,20459,20459, 8637,20460,20460, 20461,20462,20462,20463,20463,20464, 8623, 8623, 8623, 8623, 8623, 8623, 8623, 8623, 8623, 8623,20465,20465, 8658, 8658, 8658, 8658, 8658, 8658, 8658, 8658, 8658, 8658, 8658, 8658, 8658,20466,20466, 8673, 8673, 8673, 8623, 8623, 8623, 8623, 8623, 8623, 8623, 8623, 8623, 8623, 8623, 8623, 8623, 8623, 8623,20467,20467,20467,20468,20468,20468,20468,20468,20469, 20468,20470,20468,20471,20471, 8705,20468, 8705,20468,20472, 20472,20472,20472,20472,20472,20472,20472,20472,20473,20473, 8720, 8720, 8720,20474,20474, 8725, 8725, 8725,20475,20475, 8730, 8730, 8730,20476,20476, 8735, 8735, 8735,20477,20477, 8740, 8740,20478,20478, 8744,20479,20480,20480,20481,20481, 8750, 8750, 8750,20482,20482, 8755, 8755,20483,20483, 8759, 20484,20485,20485,20472,20472,20472,20472,20486,20486, 8769, 8769,20486, 8771, 8771, 8769, 8771, 8772,20486, 8777, 8777, 8777, 8777,20486,20486,20486,20486, 8777,20486, 8787, 8787, 8787, 8787,20486,20486,20486,20486,20486,20486, 8787,20486, 8799, 8799, 8799, 8799,20486,20486, 8799, 8807, 8807, 8807, 20486,20486,20486,20486, 8799,20486, 8815, 8815, 8815, 8815, 20486,20486, 8807, 8823, 8823, 8823, 8823, 8815, 8828, 8828, 8828, 8831, 8831, 8828, 8831, 8828, 8828,20486, 8823, 8839, 8839,20486,20486,20486,20487,20488,20488,20489,20490,20491, 20492,20492,20492,20492,20493,20493,20494,20495,20495,20495, 20491,20496,20497,20497,20497,20498,20486,20486,20499,20500, 20501,20502,20502,20503,20503,20504,20504,20486,20486,20486, 20505,20505,20486,20506,20507,20507,20507,20508,20509,20510, 20510,20510,20509,20486,20511,20512,20513,20513, 8898,20514, 20515,20514,20515, 8903, 8903, 8903, 8903, 8903,20516,20516, 20486,20486,20486,20486,20486,20486,20486,20486,20486,20486, 20486,20517,20517, 8923, 8923, 8923, 8923, 8923, 8923, 8923, 8923,20486,20486,20486,20486,20486,20486, 8923,20518,20518, 20486,19007, 8942, 8943, 8943,20519,20520,20521,20521,20522, 20523,20523,20524,19007, 8954, 8952,20525,20525, 8952, 8952, 8952,19007, 8962, 8962, 8952, 8952, 8958,20524, 8968, 8968, 8968, 8952, 8952,20526,20526, 8975, 8975,20527, 8975, 8975, 8962,20528, 8942,20486,20529,20486, 8986, 8986,19007,20530, 20531,20532,20532, 8993,20533,20533,20534,20535,20535,20536, 20530, 9001, 9001, 9001, 8986, 9005, 9005, 9005, 9008, 8986, 9008, 9005, 9010, 9010, 9014, 8986, 9014, 9016, 9014, 9014, 9014,20537, 9014, 9023, 9023, 9023, 9026, 9026, 9026, 9023, 9026, 9023, 9023,20538,20539,19007,20540,20540,20541,20541, 20542, 9038, 9016, 9038,20543,20543,20544,20545,20545,20546, 20546,20547, 9049, 9046, 9049, 9049,20548,20549,20549, 9059, 9059,20550,20551,20551, 9064,20552,20553,20553,20554,20555, 20556,20556, 9072,20557,20558,20558,20559,19007,20560,20560, 9080, 9080,20561,20561,20561,20561,20561, 9087, 9087, 9087, 9089, 9089, 9092, 9092, 9092, 9087, 9092, 9092, 9098, 9098, 9098, 9101, 9101, 9101, 9098, 9101, 9098, 9098,20562,20561, 20561,20561,20561, 9098, 9114,20561, 9114, 9116, 9114, 9114, 9114,20561,20561,19007,20563,20564,20565,20565, 9128,20566, 20566, 9131,20567,20567,20568, 9128, 9128,20569,20569, 9139, 9139, 9139,20570,20570, 9144, 9144,20571,20571, 9148,20572, 20572,20573,20574,20574, 9154,20575,20575, 9157,20576,20576, 20577,20578,20579,20579,20580,20579,20581,20581,20579,20582, 20582,20582,20579,19007,20583,20579,19007,20584,20579,20579, 20579,20579,20579,20579,20585,20585,20585,20585,20585,20585, 20585,20585,20585,20585,20586,20586, 9196, 9196, 9196,20587, 20587, 9201, 9201, 9201,20588,20588, 9206, 9206, 9206,20589, 20589, 9211, 9211, 9211,20590,20590, 9216, 9216,20591,20591, 9220,20592,20593,20593,20594,20594, 9226, 9226, 9226,20595, 20595, 9231, 9231,20596,20596, 9235,20597,20598,20598,20585, 20585,20585,20599,20600,20601,20601, 9246,20602,20602,20603, 9249, 9246,20600, 9246, 9246, 9246,20600, 9246,20604,20604, 9260, 9260, 9260, 9260,20605,20605, 9266, 9266,20606,20606, 20607, 9270,20608,20608, 9274, 9274, 9266,20609,20609,20610, 9279, 9260, 9246,20600,20611,20612,20599,20613,20613, 9289, 9289, 9289,20614,20614, 9294, 9294, 9294,20615,20615, 9299, 9299, 9299,20616,20616, 9304, 9304,20617,20617, 9308,20618, 20618,20619,20620,20620, 9314,20621,20621, 9317,20622,20622, 20623, 9289, 9289, 9289, 9289, 9289,20624,20624,20624,20624, 20624, 9289,20624,20624,20624,20599,20599,20599,20599,20599, 20625,20599,20612,20599,20626,20626, 9346, 9346,20599, 9349, 9346,20599,20627,20627,20627,20627,20627,20627,20627,20627, 20628,20628, 9362, 9362, 9362,20629,20629, 9367, 9367, 9367, 9367, 9367, 9367, 9367, 9367, 9367, 9367, 9367, 9367, 9367, 20630,20630, 9382, 9382, 9382, 9382, 9382, 9382, 9382, 9382, 9382, 9382, 9382, 9382, 9382,20631,20631, 9397, 9397, 9397, 9397, 9367, 9367, 9367, 9367, 9367, 9367, 9367, 9367, 9367, 9367, 9367, 9367, 9367, 9367, 9367,20632,20627,20627,20627, 20599,20599,20599,20599,20599,20599, 9425, 9425, 9428, 9425, 9425, 9425, 9428, 9433, 9433, 9435, 9433, 9433, 9433, 9433, 9440, 9440, 9442, 9440, 9440, 9440,20599, 9440, 9448, 9448, 9450, 9448, 9448, 9448,20599, 9448, 9456, 9456, 9448, 9459, 9459, 9461, 9459, 9459, 9459,20599, 9456, 9467, 9467,20599, 20599,20599,20599, 9459,20599, 9474, 9474, 9474, 9474,20599, 20599, 9467, 9482, 9482, 9482, 9482,20599,20599,20599,20599, 20633,20634,20635,20635,20636,20637,20638,20639,20639,20639, 20640,20640,20641,20642,20642,20642,20638,20643,20644,20644, 20644,20645,20599,20599,20646,20647,20648,20649,20649,20650, 20650,20651,20651,20599,20599,20599,20652,20652,20599,20653, 20654,20655,20654,20656,20657,20658,20658,20658,20657,20599, 20659,20660,20661,20662,20662,20663,20663,20664,20664, 9549, 9549, 9549,20665,20599,20599,20599,20599,20599,20599,20599, 20599,20599,20599,20599,20599,20666,20666, 9567, 9567, 9567, 20667,20667, 9572,20668,19007, 9575, 9576, 9576,20669,20669, 20670,20670, 9582,20671,20671,20672,20673,20673,20674, 9588, 20675,20675,19007, 9593, 9593, 9588,20674, 9597,19007, 9599, 9599, 9599, 9588, 9597, 9592, 9592, 9592, 9592,20676, 9588, 20677,20676,20678,20679, 9575,20680,20681,20680, 9618, 9618, 19007,20682,20683,20683, 9624, 9624,20684,20684, 9628,20685, 20685,20686,20687,20687,20688,20688,20689, 9621,20690,20690, 9640, 9640,20680,20680,20680,20680,20680, 9647, 9647, 9647, 9649, 9649, 9652, 9652, 9652, 9647, 9652, 9652, 9658, 9658, 9658, 9661, 9661, 9661, 9658, 9661, 9658, 9658,20691,20680, 20680,20680,20680, 9658, 9674,20680, 9674, 9676, 9674, 9674, 9674,20680,20680,20692,20693,20694,20694, 9687,20695,20695, 9690,20696,20696,20697, 9687,20680,20680, 9687,20698,20698, 9700,20699,20700,20700, 9704, 9704, 9704,20701,20701, 9709, 20702,20702,20703, 9704, 9700, 9704,20704,20705,20706,20706, 9720, 9720, 9720, 9720, 9720,20707,20708,20708, 9728, 9728, 9728, 9728,20709,20710,20710, 9735, 9735, 9735,20711,20711, 20712,20713,20713,20714,20714, 9745, 9745,20715,20716,20716, 9750, 9750, 9750,20717,20717,20718,20719,20719, 9758, 9758, 20720,20720, 9762, 9762, 9764,20720, 9764, 9762, 9766, 9766, 9770,20720, 9770, 9772, 9770, 9770, 9770,20720,20720,20720, 20720, 9770, 9782,20720, 9782, 9784, 9782, 9782, 9782,20720, 20720, 9782, 9792, 9792, 9792, 9795, 9795, 9795, 9792, 9795, 9792, 9792,20720,20721,20722,20723,20723, 9807, 9807,20724, 20725,20724, 9812, 9812,20726,20726, 9816,20727,20727,20728, 20729,20729,20730, 9807,20731,20731, 9826, 9826, 9826,20732, 20732, 9831, 9831, 9831,20733,20733, 9836, 9836,20734,20734, 9840,20735,20736,20736,20737,20737, 9846, 9846,20738,20738, 9850, 9850,20739,20739, 9854,20740,20741,20741,20742,20743, 20743,20743,20743,20744,20744,20743,20745,20745,20745,20743, 19007,20746,20743,19007,20747,20743,20743,20743,20743,20743, 20743,20748,20748,20748,20748,20748,20748,20748,20748,20749, 20749, 9891, 9891, 9891,20750,20750, 9896, 9896, 9896, 9896, 9896, 9896, 9896, 9896, 9896, 9896, 9896, 9896, 9896,20751, 20751, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911,20752,20752, 9926, 9926, 9926, 9926, 9896, 9896, 9896, 9896, 9896, 9896, 9896, 9896, 9896, 9896, 9896, 9896, 9896, 9896, 9896,20753,20748,20748,20743,20754, 20755,20755, 9952, 9952, 9952,20756,20756, 9957, 9957,20757, 20757,20758, 9961, 9957, 9952,20754,20754, 9952, 9952, 9952, 20754,20759,20759, 9973, 9973, 9973, 9973, 9973, 9973,20760, 20760, 9981, 9981, 9981, 9981,20761,20761, 9987, 9987,20762, 20762,20763, 9991, 9987,20764,20764, 9996, 9996, 9996, 9996, 9981,20765,20765,10003,10003,20766,20766,20767,10007,10003, 9973, 9952,20754,20768,20769,20770,20771,20771,10018,10018, 10018,20772,20772,10023,10023,10023,20773,20773,10028,10028, 10028,20774,20774,10033,10033,10033,20775,20775,10038,10038, 20776,20776,10042,20777,20778,20778,20779,20779,10048,10048, 20780,20780,10052,10052,20781,20781,10056,20782,20783,20783, 20784,20784,20784,20785,20785,20785,20785,20785,20786,20785, 20787,20785,20788,20788,10074,10074,10074,20785,20785,20785, 20785,20789,20789,20789,20789,20789,20789,20789,20789,20790, 20790,10091,10091,10091,10091,10091,10091,10091,10091,20789, 20789,20789,20789,20789,20789,10091,20791,20791,20789,20789, 20789,20785,10112,10112,20785,10114,10112,10115,20785,10118, 10118,10112,10112,20785,20785,20785,10118,20785,10127,10127, 20785,20785,20785,20785,20785,10127,20785,10136,10136,20785, 20785,10136,10142,10142,10142,20785,20785,20785,10136,20785, 10149,10149,20785,20785,10142,10155,10155,10155,10155,20785, 20785,20785,10149,20785,10163,10163,20785,20785,10155,10169, 10169,10169,10169,10163,10174,10174,10176,10174,10174,10174, 20785,10169,10182,10182,20785,20785,20792,20792,20793,20794, 20795,20796,20796,20796,20797,20797,20798,20799,20799,20799, 20800,20801,20802,20803,20803,20804,20785,20785,20805,20806, 20807,20808,20808,20809,20809,20810,20810,20785,20785,20785, 20811,20785,20812,20813,20813,20813,20812,20814,20815,20816, 20816,20816,20815,20785,20817,20818,20819,20819,20820,10238, 10238,10238,10238,10238,10238,10238,10238,10238,10238,10238, 10238,10238,20821,20822,20822,20823,20824,20824,10258,10258, 20825,20785,20785,20785,20785,20785,20785,20785,20785,20785, 20785,20785,20785,20785,20785,20785,20826,20826,10278,10278, 10278,20827,20828,20829,19007,10285,10286,10286,20830,20830, 20831,20785,20831,10293,10293,20832,20832,10297,20833,20833, 20834,20835,20836,19007,19007,10305,20785,10305,10307,10305, 20837,20836,20838,20839,20840,20841,10285,20785,20842,20785, 10320,10320,20843,20843,10324,10324,10324,20844,20844,10329, 10329,20845,20845,10333,20846,20846,20847,20848,20848,20849, 20849,10341,20850,20850,20851,20852,20852,10347,10347,10320, 10350,10350,10350,10353,10320,10353,10350,10355,10355,10359, 10320,10359,10361,10359,10359,10359,20785,20785,20785,20785, 10359,10371,20785,10371,10373,10371,10371,10371,20785,20785, 10371,10381,10381,10381,10384,10384,10384,10381,10384,10381, 10381,20785,20853,20854,20855,20855,10396,10396,20856,20857, 20856,10401,10401,20858,20858,10405,20859,20859,20860,20861, 20861,20862,10396,20785,20863,20864,20865,20866,20866,10419, 10419,10419,20867,10419,20868,20868,10426,10426,20869,20869, 10430,20870,20870,20871,20872,10419,20867,20864,20873,20874, 20874,10441,10441,10441,10441,10441,20875,20876,20876,10449, 10449,10449,10449,10449,20877,20878,20878,10457,10457,10457, 10457,20879,20879,10463,20880,20881,20881,20882,20882,10469, 20883,20883,10472,10472,10472,20884,20885,20885,10478,10478, 10478,10478,20886,20886,10484,20887,20888,20888,20889,20889, 10490,10490,20890,20890,20890,20890,20890,10497,10497,10497, 10499,10499,10502,10502,10502,10497,10502,10502,10508,10508, 10508,10511,10511,10511,10508,10511,10508,10508,10508,10519, 10519,10519,10522,10522,10522,10519,10522,10519,10519,20890, 20890,20890,20890,20890,10519,10535,20890,10535,10537,10535, 10535,10535,20890,20890,10535,10545,10545,10545,20891,20892, 20892,10551,10551,10551,20893,20893,20894,20894,20895,10556, 10556,10556,20896,20896,10564,10564,20897,20897,10568,20898, 20898,20899,20900,20900,20901,20901,20902,10551,10551,10551, 10551,10551,10551,10551,10551,10551,10551,20903,20903,10589, 10589,10589,10589,10589,10589,10589,10589,10589,10589,10589, 10589,10589,20904,20904,10604,10604,10604,10551,10551,10551, 10551,10551,10551,10551,10551,10551,10551,10551,10551,10551, 10551,10551,20905,20906,20906,20906,20907,20907,20906,20908, 20908,20908,20906,19007,20909,20906,19007,20906,20906,20906, 20906,20906,20906,20906,20910,20910,20910,20910,20910,20910, 20910,20910,20911,20911,10654,10654,10654,10654,10654,10654, 10654,10654,20910,20910,20910,20910,20910,20910,10654,20912, 20912,10671,20910,20910,20906,20913,20914,20914,10678,10678, 10678,10678,10678,20915,20916,20915,10686,10686,10686,10686, 20917,20917,10692,10692,20918,20918,20919,20920,20920,10696, 20921,10692,10686,10678,20913,10678,10678,20913,20913,20922, 20922,10711,10711,10711,10711,10711,10711,10711,20923,20923, 10720,10720,10720,10720,10720,10720,20924,20924,10728,10728, 10728,10728,20925,20925,10734,10734,20926,20927,20927,10739, 10734,10728,20928,20928,10744,10744,10744,10744,10744,10744, 10720,20929,20929,10753,10753,10753,10753,20930,20930,10759, 10759,20931,20932,20932,10764,10759,10753,10711,10678,20913, 20933,20934,20935,20935,20936,20936,10776,10776,10776,20937, 20937,10781,10781,10781,10781,10781,10781,10781,10781,10781, 10781,10781,10781,10781,20938,20938,10796,10796,10796,10796, 10796,10796,10796,10796,10796,10796,10796,10796,10796,20939, 20939,10811,10811,10811,10781,10781,10781,10781,10781,10781, 10781,10781,10781,10781,10781,10781,10781,10781,10781,20940, 20940,20940,20935,20935,20935,20935,20935,20941,20935,20935, 20935,20942,20942,10843,10843,10843,20935,20935,20943,20943, 20943,20943,20943,20943,20943,20943,20944,20944,10858,10858, 10858,20945,20945,10863,20946,20943,20943,20935,20935,20935, 20935,20935,10871,20935,10874,10871,10874,10877,10874,10879, 10877,20935,20935,10877,10884,10879,10886,10884,20935,10884, 10890,10886,10892,10890,20935,10890,10896,10896,10890,10899, 10892,10901,10899,20935,10896,10905,10905,10899,10908,10901, 10910,10908,20935,10905,10914,10914,20935,20935,20935,10908, 20935,10920,10920,20935,20935,10914,10926,10926,10926,10926, 20935,20935,20935,20935,20947,20948,20949,20950,20951,20951, 20951,20952,20952,20953,20954,20954,20954,20955,20956,20957, 20957,20957,20951,20957,20958,20958,20959,20935,20935,20960, 20961,20962,20962,20963,20963,20964,20964,20935,20935,20935, 20965,20935,20966,20967,20967,20967,20966,20968,20969,20969, 20935,20970,20971,20971,20972,20973,20974,20974,20974,20974, 20974,20974,20974,20974,20974,20974,20974,20974,20974,20973, 11000,11000,11000,11000,11000,11000,11000,11000,11000,11000, 11000,11000,11000,11000,11000,20975,20976,20976,20977,20977, 20978,11020,11020,11020,11020,11020,11020,11020,11020,11020, 11020,11020,11020,11020,11020,20979,20979,11037,20980,20935, 20935,20935,20935,20935,20935,20935,20935,20935,20935,20935, 20981,20981,20982,19007,11054,11055,11055,20983,20983,20984, 20984,11061,11061,11061,20985,20985,11066,11066,20986,20986, 11070,20987,20987,20988,20989,20989,20990,20991,19007,20992, 20992,11081,11081,20993,20994,20995,11054,20996,20997,20996, 11090,11090,20998,20998,11094,11094,11094,20999,20999,11099, 11099,11099,21000,21000,11104,11104,21001,21001,11108,21002, 21003,21003,21004,21004,21005,21005,11116,11116,21006,21006, 11120,21007,21008,21008,21009,21009,11126,11126,20996,20996, 20996,20996,20996,11133,11133,11133,11135,11135,11138,11138, 11138,11133,11138,11138,11144,11144,11144,11147,11147,11147, 11144,11147,11144,11144,11144,11155,11155,11155,11158,11158, 11158,11155,11158,11155,11155,20996,20996,20996,20996,20996, 11155,11171,20996,11171,11173,11171,11171,11171,20996,20996, 11171,11181,11181,11181,21010,21011,21012,21012,11188,11188, 11188,21013,21013,21014,21014,21015,11193,11193,11193,21016, 21016,11201,11201,21017,21017,11205,21018,21018,21019,21020, 21020,11211,21021,21021,21022,20996,21023,21023,21024,21025, 21026,21027,21027,11223,11223,11223,11223,21028,21028,21029, 11223,21030,21030,11233,11233,11233,21031,21031,11238,11238, 21032,21032,11242,21033,21033,21034,21035,21035,21036,11229, 21025,21026,11223,11223,11223,11223,11223,11223,11223,11252, 11223,11223,11223,11223,11223,11223,11223,21037,21038,21038, 11270,11270,11270,11270,11270,11270,11270,11270,11270,11270, 11270,11270,11270,11270,11270,21039,21039,11287,11287,21040, 21040,11291,11291,11291,11291,11252,11223,11223,11223,11223, 11223,11223,11223,11223,11223,11223,11223,11223,11223,11223, 11223,11223,11223,21041,21041,11315,11315,11317,21041,11317, 11315,11319,11319,11323,21041,11323,11325,11323,11323,11323, 21041,21041,21041,21041,11323,11335,21041,11335,11337,11335, 11335,11335,21041,21041,21041,21041,21041,21041,11335,11349, 21041,11349,11351,11349,11349,11349,21041,21041,11349,11359, 11359,11359,11349,11363,11363,11363,11366,11366,11366,11363, 11366,11363,11363,21041,21041,11359,11376,11376,21042,21043, 21043,11381,11381,11381,21044,21044,11386,21045,21045,11389, 21046,21046,21047,11386,11386,21048,21048,11397,11397,11397, 21049,21049,11402,11402,21050,21050,11406,21051,21051,21052, 21053,21053,11412,21054,21054,11415,21055,21055,21056,11381, 11381,11381,11381,11381,21057,21057,21057,21057,21057,11381, 21058,21057,21057,21057,21059,21059,21057,21060,21060,21060, 21060,21060,21057,19007,21057,19007,21057,21057,21057,21057, 21057,21057,21061,21061,21061,21061,21061,21061,21061,21061, 21062,21062,11462,11462,11462,21063,21063,11467,11467,21064, 21061,21057,21065,21066,21066,11475,11475,11475,11475,11475, 11475,11475,21067,21067,11484,21068,21068,21069,11487,11484, 11484,11484,11484,11484,21070,21070,11496,11496,11496,11496, 21071,21071,11502,11502,21072,21072,21073,11506,21074,21074, 11510,11510,11502,21075,21075,21076,11515,11496,11484,21065, 11475,11475,21065,21065,11475,11475,11475,11475,11475,11475, 11475,11475,11475,11475,11475,11475,11475,11475,11475,11475, 11475,11475,11475,21077,21077,11545,11545,11545,11545,11545, 11545,11545,11545,11545,11545,11545,11545,11545,11545,11545, 11545,11545,11545,11545,11545,11545,11545,11545,21078,21078, 11570,11570,11570,11570,11570,11570,11570,11570,11475,11475, 11475,11475,11475,11475,11475,11475,11475,11475,11475,11475, 11475,11475,11475,11475,11475,11475,11475,11475,11475,11475, 11475,11475,11475,11475,11475,11475,21065,21079,21080,21081, 21080,21080,21082,21082,21083,21083,11616,11616,11616,11616, 11616,11616,11616,11616,21084,21084,21084,21084,21084,11616, 21085,21084,21084,21082,21082,21082,21082,21082,21086,21082, 21082,21082,21087,21087,11644,11644,11644,21082,11648,21082, 21088,21088,21088,21088,21088,21088,21088,21088,21088,21089, 21089,11661,11661,11661,21090,21091,21092,21088,21088,21082, 11670,21082,11670,21082,11674,11674,21082,21082,21082,11674, 11680,11680,21082,21082,21082,21082,11680,11687,11687,11687, 11690,11690,11690,21082,21082,21082,11687,11697,11697,11690, 11700,11700,11700,11700,21082,21082,21082,11697,11708,11708, 11700,11711,11711,11711,11711,21082,21082,21082,11708,11719, 11719,11711,11722,11722,11722,11722,11719,11727,11719,11729, 11727,21082,11722,11733,11733,21082,21093,21094,21095,21096, 21097,21097,21097,21098,21098,21099,21100,21101,21101,21102, 21103,21104,21104,21104,21105,21105,21106,21082,21082,21107, 21108,21109,21109,21110,21110,21111,21111,21082,21082,21082, 21112,21082,21113,21114,21114,21114,21113,21115,21116,21116, 21082,21117,21118,21119,21120,21120,21120,21120,21120,21120, 21120,21120,21120,21120,21120,21120,21120,21120,21120,21120, 21119,11801,11801,11801,11801,11801,11801,11801,11801,11801, 11801,11801,11801,11801,11801,11801,21121,21122,21122,11819, 21123,21124,21124,21124,21124,21124,21124,21124,21124,21124, 21124,21124,21124,21124,21124,21123,11836,11836,11836,11836, 11836,11836,11836,11836,11836,11836,11836,11836,11836,11836, 11836,11836,21125,21125,21126,21082,21082,21082,21082,21082, 21082,21082,21082,21082,21082,21082,21082,21127,21127,11869, 21128,21128,21129,21129,11874,11874,11874,21130,21130,11879, 11879,11879,21131,21131,11884,11884,21132,21132,11888,21133, 21133,21134,21135,21135,11894,21136,21136,21137,21138,21139, 21140,21141,19007,21082,21082,21082,21082,21142,21142,11909, 11909,11909,11909,11909,11909,11909,11909,21143,21143,11919, 11919,11919,11919,11919,11919,11919,11919,11919,11919,11919, 11919,11919,21144,21144,11909,11909,11909,11909,11909,11909, 11909,11909,11909,11909,11909,11909,11909,11909,11909,21082, 11950,11950,11950,11953,21082,11953,11950,11955,11955,11959, 21082,11959,11961,11959,11959,11959,21082,21082,21082,21082, 11959,11971,21082,11971,11973,11971,11971,11971,21082,21082, 21082,21082,21082,21082,11971,11985,21082,11985,11987,11985, 11985,11985,21082,21082,11985,11995,11995,11995,11985,11999, 11999,11999,12002,12002,12002,11999,12002,11999,11999,21082, 21082,11995,12012,12012,21145,21146,21147,21147,12018,12018, 12018,21148,21148,12023,21149,21149,12026,21150,21150,21151, 12023,12023,21152,21152,12034,12034,12034,21153,21153,12039, 12039,21154,21154,12043,21155,21155,21156,21157,21157,12049, 12049,21158,21158,12053,21159,21159,21160,21161,21162,21162, 12060,21163,21163,21164,21165,21166,21167,21167,12068,12068, 12068,12068,12068,21168,21168,12075,21169,21169,21170,21171, 21171,12081,12081,12081,21172,21172,12086,12086,12086,21173, 21173,12091,12091,21174,21174,12095,21175,21175,21176,21177, 21177,12101,21178,21178,21179,12075,21180,21166,12068,12068, 12068,12068,12068,12068,12068,21181,21181,21181,21181,21181, 21180,12121,12121,12121,12121,12121,12068,21181,21181,21181, 21181,21181,12132,12132,12132,12134,12134,12137,12137,12132, 12137,12137,12142,12142,12142,12145,12145,12142,12145,12142, 12142,12142,12152,12152,12152,12155,12155,12152,12155,12152, 12152,21181,12152,12163,12163,12163,12166,12166,12163,12166, 12163,12163,21181,12163,12174,12174,21181,21181,21181,21181, 12163,12181,21181,12181,12183,12181,12181,12181,21181,21181, 12174,12191,12191,12191,21181,21181,21181,21181,12191,21182, 21183,21183,12202,12202,12202,21184,21184,12207,12207,21185, 21185,12211,12211,21186,21186,12215,21187,21187,21188,21189, 21189,21190,12207,21191,21191,12225,12225,12225,21192,21192, 12230,12230,12230,21193,21193,12235,12235,21194,21194,12239, 21195,21196,21196,21197,21197,12245,12245,21198,21198,12249, 12249,21199,21199,12253,21200,21201,21201,21202,21202,21202, 21202,21203,21202,21204,21204,21204,21204,21202,19007,21205, 21206,21202,21202,21202,21202,21202,21207,21207,21207,21207, 21207,21207,21207,21207,21207,21208,21208,12287,12287,12287, 21209,21210,21210,21211,21207,21202,21212,21213,21213,12299, 12299,12299,12299,12299,12299,12299,12299,21214,21214,12309, 12309,12309,21215,21215,12314,12314,21216,21216,21217,12318, 12314,12309,12309,12309,12309,21218,21218,12327,12327,12327, 12327,12327,12327,21219,21219,12335,12335,12335,12335,21220, 21220,12341,12341,21221,21221,21222,12345,12341,21223,21223, 12350,12350,12350,12350,12335,21224,21224,12357,12357,21225, 21225,21226,12361,12357,12327,12309,21227,12299,12299,21227, 12299,12299,12299,12299,12299,12299,12299,12299,12299,12299, 21227,21227,21227,21227,21227,21227,21227,21227,21227,21227, 21227,12299,12299,21227,21228,21229,21230,21231,21232,21232, 12400,12400,12400,21233,21233,21234,21235,21230,21230,21230, 21230,21230,21230,21230,21230,21230,21236,21236,12418,12418, 12418,21230,21230,21230,21230,21237,21237,21237,21237,21237, 21237,21237,21237,21237,21237,21237,21237,21238,21238,21239, 21237,21230,21230,21230,21230,12445,12445,12445,12448,12448, 21230,12451,12451,12451,12448,12455,12455,12455,12458,12458, 12455,12461,12461,12458,12464,12464,12461,12467,12467,12464, 12470,12470,12467,12473,12473,12470,12476,12476,21230,21230, 21230,12473,12482,12482,12476,12485,12485,12485,12485,21240, 21241,21242,21243,21243,21243,21244,21244,21245,21246,21246, 21246,21246,21246,21247,21247,21248,21249,21249,21249,21250, 21250,21251,21230,21230,21252,21253,21254,21254,21255,21256, 21230,21230,21230,21257,21230,21258,21259,21259,21259,21258, 21260,21261,21261,21230,21262,21263,21264,21265,21265,21265, 21265,21265,21265,21265,21265,21265,21265,21264,21265,21265, 21265,21265,21265,12548,12548,12548,12548,12548,12548,12548, 12548,12548,12548,12548,12548,12548,12548,12548,12548,21266, 21267,21267,21267,21268,21269,21269,21269,21269,21269,21269, 21269,21269,12582,12582,12582,12582,12582,12582,12582,12582, 12582,21268,12592,12592,12592,12592,12592,12592,12592,12592, 12592,12592,12592,12592,12592,12592,12592,12592,21270,21270, 21271,21230,21230,21230,21230,21230,21230,21230,21230,21230, 21230,21230,21230,21272,21273,21273,21274,21274,12628,12628, 12628,21275,21275,12633,12633,12633,21276,21276,12638,12638, 12638,21277,21277,12643,12643,21278,21278,12647,21279,21280, 21280,21281,21281,12653,12653,21282,21282,12657,21283,21284, 21284,21285,21286,21287,21288,21289,21289,12667,12667,12667, 21288,12667,21288,21288,21288,21288,21288,12677,12677,12677, 12679,12679,12682,12682,12677,12682,12682,12687,12687,12687, 12690,12690,12687,12690,12687,12687,12687,12697,12697,12697, 12700,12700,12697,12700,12697,12697,21288,12697,12708,12708, 12708,12711,12711,12708,12711,12708,12708,21288,12708,12719, 12719,21288,21288,21288,21288,12708,12726,21288,12726,12728, 12726,12726,12726,21288,21288,12719,12736,12736,12736,21288, 21288,21288,21288,12736,21290,21291,21291,12747,12747,12747, 21292,21292,12752,12752,21293,21293,12756,12756,21294,21294, 12760,21295,21295,21296,21297,21297,21298,12752,21299,21299, 12770,12770,12770,21300,21300,12775,12775,12775,21301,21301, 12780,12780,21302,21302,12784,21303,21304,21304,21305,21305, 12790,12790,12790,21306,21306,12795,12795,21307,21307,12799, 21308,21309,21309,21310,21311,21312,21311,21310,12807,12807, 21313,21313,12812,21314,21314,21315,21316,21316,21317,21318, 21319,21320,21320,12823,12823,12823,12823,12823,21321,21321, 12830,12830,21322,21322,12834,21323,21323,21324,21325,21326, 21326,12841,12841,12841,21327,21327,12846,12846,12846,21328, 21328,12851,12851,12851,21329,21329,12856,12856,21330,21330, 12860,21331,21332,21332,21333,21333,12866,12866,21334,21334, 12870,21335,21336,21336,21337,21338,21339,21339,12878,12878, 21339,12880,12880,12878,12880,12881,21339,12886,12886,12886, 12886,21339,21339,21339,21339,12886,21339,12896,12896,12896, 12896,21339,21339,21339,21339,21339,21339,12896,21339,12908, 12908,12908,12908,21339,21339,12908,12916,12916,12916,21339, 21339,21339,21339,12908,21339,12924,12924,12924,12924,21339, 21339,12916,12932,12932,12932,12932,12924,12937,12937,12937, 12940,12940,12937,12940,12937,12937,21339,12932,12948,12948, 21339,21339,21340,21341,21341,12955,12955,12955,21342,21342, 12960,12960,12960,21343,21343,12965,12965,12965,21344,21344, 12970,12970,21345,21345,12974,21346,21346,21347,21348,21348, 21349,21349,21350,12960,12960,12960,12960,12960,12960,12960, 12960,12960,12960,21351,21351,12995,12995,12995,12995,12995, 12995,12995,12995,12995,12995,12995,12995,12995,21352,21352, 13010,13010,13010,12960,12960,12960,12960,12960,12960,12960, 12960,12960,12960,12960,12960,12960,12960,12960,21339,21339, 21339,21339,21353,21339,21354,21354,21354,21354,21355,21356, 21339,21355,19007,21339,21339,21339,21357,21357,21357,21357, 21357,21357,21357,21357,21357,21357,21357,21357,21358,21358, 21359,21359,21339,21360,21361,21361,13066,13066,13066,13066, 13066,13066,13066,13066,13066,21362,21362,13077,13077,13077, 13077,13077,21363,21363,13084,13084,13084,13084,21364,21364, 13090,13090,21365,21365,21366,21367,21367,13094,21368,13090, 13084,13077,13077,13077,21369,21369,13106,13106,13106,13106, 13106,13106,13106,21370,21370,13115,13115,13115,13115,13115, 13115,21371,21371,13123,13123,13123,13123,21372,21372,13129, 13129,21373,21374,21374,13134,13129,13123,21375,21375,13139, 13139,13139,13139,13139,13139,13115,21376,21376,13148,13148, 13148,13148,21377,21377,13154,13154,21378,21379,21379,13159, 13154,13148,13106,13077,21380,21381,21381,21380,13167,21380, 21382,21383,21384,21385,21385,21386,21386,13177,13177,13177, 21387,21388,21389,21387,21384,21384,21384,21384,21384,21384, 21384,21384,21390,21390,13194,13194,13194,21384,21384,21391, 21391,21391,21391,21391,21391,21391,21391,21392,21392,13209, 21391,21384,21384,21384,21384,21384,21384,21384,13218,13218, 21384,21384,21384,13218,21384,21384,21384,13224,21384,21384, 21384,13224,21384,21384,21384,13224,21384,13237,13237,13224, 13240,13240,21393,21394,21395,21396,21396,21397,21398,21399, 21399,21399,21400,21400,21401,21402,21402,21402,21403,21403, 21404,21384,21384,21405,21406,21407,21407,21408,21409,21384, 21384,21384,21410,21384,21411,21412,21412,21412,21411,21413, 21414,21414,21384,21415,21416,21417,21418,21418,21418,21418, 21418,21418,21417,21418,21418,21418,21418,21418,21418,21418, 21418,21418,13293,13293,13293,13293,13293,13293,13293,13293, 13293,13293,13293,13293,13293,13293,13293,21419,21420,21420, 21421,21422,21422,21422,21422,21422,13326,13326,13326,13326, 13326,13326,21421,13326,13326,13326,13326,13326,13333,13333, 13333,13333,13333,13333,13333,13333,13333,13333,13333,13333, 13333,13333,13333,13333,13333,21423,21423,21424,21384,21384, 21384,21384,21384,21384,21384,21384,21425,21426,21426,21427, 21427,13371,13371,13371,13371,13371,13371,13371,13371,13371, 13371,13371,13371,13371,21428,21428,13386,13386,13386,13386, 13386,13386,13386,13386,13386,13386,13386,13386,13386,13371, 13371,13371,13371,13371,13371,13371,13371,13371,13371,13371, 13371,13371,13371,13371,21429,21384,21384,13417,13417,13417, 21384,13420,13420,13417,13420,13421,21384,13426,13426,13426, 13426,21384,21384,21384,21384,13426,21384,13436,13436,13436, 13436,21384,21384,21384,21384,21384,21384,13436,21384,13448, 13448,13448,13448,21384,21384,13448,13456,13456,13456,21384, 21384,21384,21384,13448,21384,13464,13464,13464,13464,21384, 21384,13456,13472,13472,13472,13472,13464,13477,13477,13477, 13480,13480,13477,13480,13477,13477,21384,13472,13488,13488, 21384,21384,21384,21430,21430,13495,13495,13495,21431,21431, 13500,13500,13500,21432,21432,13505,13505,13505,21433,21433, 13510,13510,21434,21434,13514,21435,21435,21436,21437,21437, 13520,21438,21438,21439,13500,13500,13500,13500,13500,13500, 13500,13500,13500,13500,21440,21440,13536,13536,13536,13536, 13536,13536,13536,13536,13536,13536,13536,13536,13536,21441, 21441,13551,13551,13551,13551,13500,13500,13500,13500,13500, 13500,13500,13500,13500,13500,13500,13500,13500,13500,13500, 21384,21442,21442,21443,21443,21444,13573,21384,13573,13573, 21445,21445,13582,13582,21446,21446,13586,21447,21447,21448, 21449,21449,13592,21450,21450,21451,21452,21453,21454,21454, 13600,13600,13600,13600,13600,21455,21455,13607,13607,13607, 21456,21456,13612,13612,21457,21457,13616,21458,21458,21459, 21460,21460,21461,21462,21462,13625,13625,13625,13625,13625, 13625,13625,13625,13625,13625,13625,13625,13625,21463,21463, 13640,13640,13640,13640,13640,13640,13640,13640,13640,13640, 13640,13640,13640,13625,13625,13625,13625,13625,13625,13625, 13625,13625,13625,13625,13625,13625,13625,13625,13607,21464, 21465,21465,21465,21465,21465,21465,13675,13675,13678,13675, 13675,13675,13678,13683,13683,13685,13683,13683,13683,13683, 13690,13690,13692,13690,13690,13690,21465,13690,13698,13698, 13700,13698,13698,13698,21465,13698,13706,13706,13698,13709, 13709,13711,13709,13709,13709,21465,13706,13717,13717,21465, 21465,21465,21465,13709,21465,13724,13724,13724,13724,21465, 21465,13717,13732,13732,13732,13732,21465,21465,21465,21465, 21466,21466,13742,13742,13742,21467,21467,13747,13747,13747, 21468,21468,13752,13752,13752,21469,21469,13757,13757,21470, 21470,13761,21471,21471,21472,21473,21473,13767,21474,21474, 13770,21475,21475,21476,13742,13742,13742,13742,13742,21465, 21465,21465,21465,21465,13742,21465,21465,21477,21465,21478, 21465,21479,21479,21479,21479,21465,21480,19007,21465,21465, 21465,21481,21481,21481,21481,21481,21481,21481,21481,21482, 21482,13811,21465,21483,21484,21484,13816,13816,13816,13816, 13816,13816,13816,13816,13816,13816,21485,21485,13828,13828, 13828,13828,13828,13828,13828,21486,21486,13837,13837,13837, 13837,13837,13837,21487,21487,13845,13845,13845,13845,21488, 21488,13851,13851,21489,21489,21490,13855,21491,21491,13859, 13859,13851,21492,21492,21493,13864,13845,13837,13828,13828, 13828,13828,13828,13828,13828,13828,13828,13828,13828,13828, 13828,13828,13828,13828,13828,13828,13828,13828,13828,21494, 21494,13891,13891,13891,13891,13891,13891,13891,13891,13891, 13891,13891,13891,13891,13891,13891,13891,13891,13891,13891, 13891,13891,13891,13891,21495,21495,13916,13916,13916,13916, 13916,13916,13916,13916,13828,13828,13828,13828,13828,13828, 13828,13828,13828,13828,13828,13828,13828,13828,13828,13828, 13828,13828,13828,13828,13828,13828,13828,13828,13828,13828, 13828,13828,21483,13816,13816,21483,13816,21483,21496,21497, 21498,21499,21499,21500,21501,21500,21498,21498,21498,21498, 21498,21498,21498,21498,21502,21502,13976,13976,13976,21498, 13980,21498,21503,21503,21503,21503,21503,21503,21503,21503, 21503,21503,21503,21504,21503,21498,21498,21498,21498,13996, 21505,21506,21507,21507,21508,21509,21509,21509,21510,21510, 21511,21512,21512,21512,21513,21513,21498,21498,21514,21514, 21515,21516,21498,21498,21498,21517,21498,21518,21519,21519, 21519,21518,21520,21521,21521,21498,21522,21523,21524,21524, 21524,21524,21524,21523,21524,21524,21524,21524,21524,21524, 21524,21524,21524,14044,14044,14044,14044,14044,14044,14044, 14044,14044,14044,14044,14044,21525,21526,21526,21527,21528, 21528,21528,21528,21528,21528,21528,21527,21528,21528,21528, 21528,21528,21528,14083,14083,14083,14077,14077,14077,14077, 14077,14077,14077,14077,14077,14077,14077,14077,14077,14077, 14077,14077,21529,21529,14104,21530,21498,21498,21498,21498, 21498,21498,21498,21498,21531,21532,21533,21533,14118,14118, 14118,14118,14118,14118,14118,14118,14118,21498,21498,21498, 21498,21498,21498,21498,21498,14134,14134,14137,14134,14134, 14134,14137,14142,14142,14144,14142,14142,14142,14142,14149, 14149,14151,14149,14149,14149,21498,14149,14157,14157,14159, 14157,14157,14157,21498,14157,14165,14165,14157,14168,14168, 14170,14168,14168,14168,21498,14165,14176,14176,21498,21498, 21498,21498,14168,21498,14183,14183,14183,14183,21498,21498, 14176,14191,14191,14191,14191,21498,21498,21498,21498,21534, 21534,14201,14201,14201,21535,21535,14206,14206,14206,21536, 21536,14211,14211,14211,21537,21537,14216,14216,21538,21538, 14220,21539,21539,21540,21541,21541,14226,14226,21542,21542, 14230,21543,21543,21544,14201,14201,14201,14201,14201,21498, 21498,21498,21498,21498,21498,14201,21498,21545,21545,14249, 21546,21546,14252,21547,21547,21548,14249,21498,21498,14249, 21549,21549,14262,14262,14262,21550,21550,14267,14267,21551, 21551,14271,21552,21552,21553,21554,21554,14277,14277,21555, 21555,14281,21556,21556,21557,21558,21559,21559,14288,14288, 14288,21560,21560,14293,14293,14293,21561,21561,14298,14298, 21562,21562,14302,21563,21563,21564,21565,21565,14308,21566, 21566,21567,21568,21568,14314,14314,14314,14314,14314,14314, 14314,14314,14314,14288,21569,21569,21569,21569,14327,14326, 14328,21569,14331,14331,14326,14326,21569,21569,21569,14331, 21569,14340,14340,21569,21569,21569,21569,21569,14340,21569, 14349,14349,21569,21569,14349,14355,14355,14355,21569,21569, 21569,14349,21569,14362,14362,21569,21569,14355,14368,14368, 14368,14368,21569,21569,21569,14362,21569,14376,14376,21569, 21569,14368,14382,14382,14382,14382,14376,14387,14387,14389, 14387,14387,14387,21569,14382,14395,14395,21569,21569,21570, 21570,14401,14401,14401,21571,21571,14406,14406,14406,21572, 21572,14411,14411,14411,21573,21573,14416,14416,14416,21574, 21574,14421,14421,21575,21575,14425,21576,21577,21577,21578, 21578,14431,14431,21579,21579,14435,14435,21580,21580,14439, 21581,21582,21582,21569,21569,21583,21584,21583,21569,21569, 21569,21585,21585,21585,21569,21586,19007,21569,21569,21569, 21587,21587,21587,21587,21587,21587,21587,21587,21587,21587, 21587,21588,21569,21589,21590,21590,14476,14476,14476,14476, 14476,14476,14476,14476,21591,21591,14486,14486,14486,14486, 14486,14486,14486,21592,21592,14495,14495,14495,14495,14495, 14495,21593,21593,14503,14503,14503,14503,21594,21594,14509, 14509,21595,21595,21596,14513,14509,21597,21597,14518,14518, 14518,14518,14503,21598,21598,14525,14525,21599,21599,21600, 14529,14525,14495,14486,14476,14476,14476,14476,14476,14476, 14476,14476,14476,14476,14476,14476,21589,21589,21589,21589, 21589,21589,21589,21589,21589,21589,21589,14476,14476,21589, 21589,21601,21589,21602,21603,21569,21604,21604,21605,21606, 21607,21569,21569,21569,21569,21569,21569,21569,21569,21608, 21608,14581,14581,14581,21569,21569,21569,21569,21609,21609, 21609,21609,21609,21609,21609,21609,21609,21610,21609,21611, 21612,21613,21613,21614,21615,21615,21615,21616,21616,21617, 21618,21618,21618,21619,21619,21569,21569,21620,21620,21621, 21622,21569,21569,21569,21623,21569,21624,21625,21625,21625, 21624,21626,21627,21627,21569,21628,21629,21630,21630,21630, 21630,21630,21630,21630,21630,21630,21630,21630,21630,21629, 14650,14650,14650,14650,14650,14650,14650,14650,14650,21631, 21632,21633,21634,21634,21634,14665,14665,14665,21633,14665, 14665,14665,14665,14665,14665,14665,14665,14665,14669,14669, 14669,14669,14669,14669,14669,14669,14669,14669,14669,14669, 14669,21635,21635,14693,21636,21569,21569,21569,21569,21569, 21569,21569,21637,21637,21637,21637,21638,21639,21639,14709, 14709,14709,21569,21569,14714,14714,21569,14716,14714,14717, 21569,14720,14720,14714,14714,21569,21569,21569,14720,21569, 14729,14729,21569,21569,21569,21569,21569,14729,21569,14738, 14738,21569,21569,14738,14744,14744,14744,21569,21569,21569, 14738,21569,14751,14751,21569,21569,14744,14757,14757,14757, 14757,21569,21569,21569,14751,21569,14765,14765,21569,21569, 14757,14771,14771,14771,14771,14765,14776,14776,14778,14776, 14776,14776,21569,14771,14784,14784,21569,21569,21640,21640, 14790,14790,14790,21641,21641,14795,14795,14795,21642,21642, 14800,14800,14800,21643,21643,14805,14805,14805,21644,21644, 14810,14810,21645,21645,14814,21646,21647,21647,21648,21648, 14820,14820,14820,21649,21649,14825,14825,21650,21650,14829, 21651,21652,21652,21569,21653,21653,14836,14836,21654,21655, 21654,14841,14841,21656,21656,14845,21657,21657,21658,21659, 21659,21660,14836,21569,21661,21661,14856,14856,14856,21662, 21662,14861,14861,14861,21663,21663,14866,14866,21664,21664, 14870,21665,21666,21666,21667,21667,14876,14876,14876,21668, 21668,14881,14881,21669,21669,14885,21670,21671,21671,21672, 21673,21673,14892,14892,14892,21674,21674,14897,14897,14897, 21675,21675,14902,14902,14902,21676,21676,14907,14907,21677, 21677,14911,21678,21679,21679,21680,21680,14917,14917,21681, 21681,14921,21682,21683,21683,21684,21684,14927,14927,14927, 21685,21685,21685,21685,21685,14934,21685,14937,14934,14937, 14940,14937,14942,14940,21685,21685,14940,14947,14942,14949, 14947,21685,14947,14953,14949,14955,14953,21685,14953,14959, 14959,14953,14962,14955,14964,14962,21685,14959,14968,14968, 14962,14971,14964,14973,14971,21685,14968,14977,14977,21685, 21685,21685,14971,21685,14983,14983,21685,21685,14977,14989, 14989,14989,14989,21685,21685,21685,21685,21686,21686,14999, 14999,14999,21687,21687,15004,15004,15004,15004,15004,15004, 15004,15004,15004,15004,15004,15004,15004,21688,21688,15019, 15019,15019,15019,15019,15019,15019,15019,15019,15019,15019, 15019,15019,21689,21689,15034,15034,15034,15004,15004,15004, 15004,15004,15004,15004,15004,15004,15004,15004,15004,15004, 15004,15004,21685,21685,21685,19007,21690,21685,21685,21685, 21691,21691,21691,21691,21685,21692,19007,21685,21685,21685, 21693,21693,21693,21693,21693,21693,21693,21693,21693,21694, 21695,21696,21697,21697,15084,15084,15084,15084,15084,15084, 15084,15084,15084,21698,21698,15095,15095,15095,15095,15095, 15095,15095,15095,21699,21699,15105,15105,15105,15105,15105, 15105,15105,21700,21700,15114,15114,15114,15114,15114,15114, 21701,21701,15122,15122,15122,15122,21702,21702,15128,15128, 21703,21704,21704,15133,15128,15122,21705,21705,15138,15138, 15138,15138,15138,15138,15114,21706,21706,15147,15147,15147, 15147,21707,21707,15153,15153,21708,21709,21709,15158,15153, 15147,15105,15095,15084,15084,15084,21696,21696,21710,21696, 21711,21712,21713,21714,21715,21715,21716,21717,21713,21713, 21718,21713,21713,21713,21713,21713,21719,21719,15188,15188, 15188,21713,21713,21720,21720,21720,21720,21720,21720,21720, 21721,21722,21723,21723,21724,21725,21725,21725,21726,21726, 21727,21728,21728,21729,21713,21713,21713,21730,21731,21732, 21713,21713,21713,21733,21713,21734,21735,21735,21735,21734, 21736,21737,21737,21713,21738,21739,21739,21740,15237,15237, 21740,21740,15237,21740,21740,21740,21740,15237,15237,15237, 15237,15237,15237,15237,21741,21742,21742,21742,21742,21742, 21742,21742,21742,21742,21742,21742,21742,21742,21742,21742, 21743,21744,21744,21744,21744,21744,21744,21744,21744,15279, 15279,15279,15279,15279,21743,15285,15285,15285,15285,15285, 15285,15285,15285,15285,15285,21745,21745,21746,21713,21713, 21713,21713,21713,21713,21747,21747,21748,21749,21749,15309, 15309,15309,21713,21713,21713,21713,21713,21713,15317,21713, 15320,15317,15320,15323,15320,15325,15323,21713,21713,15323, 15330,15325,15332,15330,21713,15330,15336,15332,15338,15336, 21713,15336,15342,15342,15336,15345,15338,15347,15345,21713, 15342,15351,15351,15345,15354,15347,15356,15354,21713,15351, 15360,15360,21713,21713,21713,15354,21713,15366,15366,21713, 21713,15360,15372,15372,15372,15372,21713,21713,21713,21713, 21750,21750,15382,15382,15382,21751,21751,15387,15387,15387, 15387,15387,15387,15387,15387,15387,15387,15387,15387,15387, 21752,21752,15402,15402,15402,15402,15402,15402,15402,15402, 15402,15402,15402,15402,15402,21753,21753,15417,15417,15417, 15417,15387,15387,15387,15387,15387,15387,15387,15387,15387, 15387,15387,15387,15387,15387,15387,21754,21755,21755,15439, 15439,15439,21756,21756,21757,21757,21758,15444,15444,15444, 21759,21759,15452,15452,21760,21760,15456,21761,21761,21762, 21763,21763,15462,21764,21764,21765,21766,15439,15439,15439, 15439,15439,15439,15439,15439,15439,15439,21767,21767,15479, 15479,15479,15479,15479,15479,15479,15479,15479,15479,15479, 15479,15479,21768,21768,15494,15494,15494,15494,15439,15439, 15439,15439,15439,15439,15439,15439,15439,15439,15439,15439, 15439,15439,15439,21769,21770,21770,15516,15516,15516,15516, 15516,15516,15516,15516,15516,15516,15516,15516,15516,21771, 21771,15531,15531,15531,15531,15531,15531,15531,15531,15531, 15531,15531,15531,15531,15516,15516,15516,15516,15516,15516, 15516,15516,15516,15516,15516,15516,15516,15516,15516,21772, 21772,15561,15561,15561,21766,15565,21766,15565,21766,15569, 15569,21766,21766,21766,15569,15575,15575,21766,21766,21766, 21766,15575,15582,15582,15582,15585,15585,15585,21766,21766, 21766,15582,15592,15592,15585,15595,15595,15595,15595,21766, 21766,21766,15592,15603,15603,15595,15606,15606,15606,15606, 21766,21766,21766,15603,15614,15614,15606,15617,15617,15617, 15617,15614,15622,15614,15624,15622,21766,15617,15628,15628, 21766,21773,21773,15633,15633,15633,15633,15633,15633,15633, 15633,21766,21766,21766,21766,21766,15633,21766,21766,21774, 21766,21766,21766,21775,21775,21775,21766,21766,19007,21766, 21766,21776,21776,21776,21776,21776,21776,21777,21777,21778, 21779,21779,15672,15672,15672,15672,15672,15672,15672,15672, 15672,15672,21780,21780,15684,15684,15684,15684,15684,15684, 15684,15684,15684,15684,15684,15684,15684,15684,15684,15684, 15684,15684,15684,15684,15684,15684,15684,15684,15684,15684, 15684,15684,21781,21781,15714,15714,15714,15714,15714,15714, 15714,15714,15714,15714,15714,15714,15714,15714,15714,15714, 15714,15714,15714,15714,15714,15714,15714,21782,21782,15739, 15739,15739,15739,15739,15739,15739,15739,15684,15684,15684, 15684,15684,15684,15684,15684,15684,15684,15684,15684,15684, 15684,15684,15684,15684,15684,15684,15684,15684,15684,15684, 15684,15684,15684,15684,15684,15672,15672,15672,21783,21778, 21784,21778,21778,21785,21766,21786,21787,21787,21788,21766, 21766,21789,21789,21789,21766,21766,21766,21766,21766,21790, 21790,15801,15801,15801,21766,15805,21766,21791,21791,21791, 21791,21791,21791,21791,21792,21793,21794,21794,21795,21796, 21796,21796,21797,21797,21798,21799,21799,21800,21766,21801, 21802,21803,21766,21766,21766,21804,21804,21766,21805,21806, 21806,21806,21805,21807,21807,21807,21807,21808,21766,21809, 21809,21810,21810,21811,21811,21811,21811,21811,21811,21811, 15853,15853,15853,15853,21812,21812,21812,21812,21812,21812, 21812,21812,15872,15872,15872,15872,15872,15872,15872,15872, 15872,21813,21813,21814,21814,15883,15883,21814,21814,15883, 21814,21814,21814,21814,15883,15883,15883,15883,15883,15883, 15883,15883,21815,21815,21816,21766,21766,21766,21817,21817, 21818,21766,21766,15913,21766,15913,21766,15917,15917,21766, 21766,21766,15917,15923,15923,21766,21766,21766,21766,15923, 15930,15930,15930,15933,15933,15933,21766,21766,21766,15930, 15940,15940,15933,15943,15943,15943,15943,21766,21766,21766, 15940,15951,15951,15943,15954,15954,15954,15954,21766,21766, 21766,15951,15962,15962,15954,15965,15965,15965,15965,15962, 15970,15962,15972,15970,21766,15965,15976,15976,21766,21819, 21819,15981,15981,15981,15981,15981,15981,15981,15981,21766, 21766,21766,21766,21766,21766,15981,21820,21820,21821,21821, 16000,16000,16000,21822,21822,16005,21823,21823,16008,21824, 21824,21825,16005,16005,21826,21826,16016,16016,16016,21827, 21827,16021,16021,21828,21828,16025,21829,21829,21830,21831, 21831,16031,16031,21832,21832,16035,21833,21833,21834,16000, 16000,16000,16000,16000,21835,21835,21835,21835,21835,21835, 16000,21836,21836,16053,16053,16053,16053,16053,16053,16053, 16053,16053,21835,21835,21835,21835,16066,16066,16066,16069, 16069,21835,16072,16072,16072,16069,16076,16076,16076,16079, 16079,16076,16082,16082,16079,16085,16085,16082,16088,16088, 16085,16091,16091,16088,16094,16094,16091,16097,16097,21835, 21835,21835,16094,16103,16103,16097,16106,16106,16106,16106, 21837,21837,16112,16112,16112,21835,21835,21838,21835,21835, 21839,21839,21839,21839,21839,21839,21840,21841,21835,21835, 21842,21842,21842,21842,21842,21842,21843,21844,21844,16139, 16139,16139,16139,16139,16139,16139,16139,16139,16139,16139, 16139,16139,16139,16139,16139,16139,16139,16139,16139,21845, 21845,21845,21845,21845,21845,21845,21845,21845,21845,21845, 16139,16139,21846,21847,21847,16175,21845,21848,21845,21849, 21835,21850,21851,21851,21835,21835,21852,21852,21852,21835, 21835,21835,21835,21853,21853,16195,16195,16195,21835,21835, 21835,21835,21854,21854,21854,21854,21854,21854,21855,21856, 21857,21857,21858,21859,21859,21860,21861,21862,21862,21863, 21835,21835,21864,21865,21866,21835,21835,21835,21867,21868, 21869,21870,21870,21870,21869,21871,21871,21872,21835,21873, 21873,21874,21875,21875,21875,21875,21874,16247,16247,21876, 21876,21876,21876,21876,16254,16254,16254,16254,16254,16254, 21877,16254,16254,16254,16254,16254,21878,21878,21879,21879, 21879,16271,16271,16271,16271,16271,16268,16268,16268,16268, 16268,21877,21880,21835,21835,21835,21835,21881,21881,21882, 21835,21835,21835,21835,21835,16295,16295,16295,16298,16298, 21835,16301,16301,16301,16298,16305,16305,16305,16308,16308, 16305,16311,16311,16308,16314,16314,16311,16317,16317,16314, 16320,16320,16317,16323,16323,16320,16326,16326,21835,21835, 21835,16323,16332,16332,16326,16335,16335,16335,16335,21883, 21883,16341,16341,16341,21884,21884,16346,21885,21885,16349, 16349,16349,21886,21886,16354,16354,21887,21887,16358,16358, 21888,21888,16362,21889,21889,21890,21891,21891,21892,16354, 21893,21893,16372,16372,16372,21894,21894,16377,16377,16377, 21895,21895,16382,16382,21896,21896,16386,21897,21898,21898, 21899,21899,16392,16392,16392,21900,21900,16397,16397,21901, 21901,16401,21902,21903,21903,21904,21904,16407,16407,16407, 21905,21905,21905,21905,21905,21905,21905,16417,16417,21905, 21905,21905,16417,21905,21905,21905,16423,21905,21905,21905, 16423,21905,21905,21905,16423,21905,16436,16436,16423,16439, 16439,21906,21906,16443,16443,16443,21905,21905,21905,21905, 21905,21907,21907,21907,21907,21907,21908,21909,21908,21905, 21905,21910,21910,21910,21910,21910,21911,21912,21912,16469, 16469,16469,16469,16469,16469,16469,16469,16469,16469,16469, 16469,21913,21914,21914,16484,16484,16484,21915,21916,21917, 21905,21918,21919,21919,21905,21920,21920,21920,21905,21921, 21905,21905,21922,21922,16504,16504,16504,21905,21905,21923, 21923,21923,21923,21923,21924,21925,21926,21927,21928,21928, 21929,21930,21931,21931,21932,21905,21933,21934,21935,21905, 21905,21905,21936,21937,21937,21938,21939,21939,21939,21938, 21940,21940,21941,21905,21942,21943,21944,21943,21944,16548, 16548,21945,21945,21945,21945,21945,21945,21945,21946,21945, 21946,16561,16561,16561,16561,16561,16561,16561,16561,16561, 16561,16561,16561,16561,16561,16561,16561,16561,21945,21945, 21945,21945,21945,16583,16583,16583,21947,21948,21948,21948, 21948,21948,21947,16593,16593,16593,16593,21949,21905,21905, 21950,21950,21951,21905,21905,21905,21905,21905,21905,21905, 21905,16611,16611,21905,21905,21905,16611,21905,21905,21905, 16617,21905,21905,21905,16617,21905,21905,21905,16617,21905, 16630,16630,16617,16633,16633,21952,21952,16637,16637,16637, 21953,21954,21955,21955,16644,16644,16644,21956,21956,16649, 16649,16649,21957,21957,16654,16654,16654,21958,21958,16659, 16659,21959,21959,16663,21960,21960,21961,21962,21962,16669, 21963,21963,21964,16649,16649,16649,16649,16649,16649,16649, 16649,16649,16649,21965,21965,16685,16685,16685,16685,16685, 16685,16685,16685,16685,16685,16685,16685,16685,21966,21966, 16700,16700,16700,16700,16649,16649,16649,16649,16649,16649, 16649,16649,16649,16649,16649,16649,16649,16649,16649,21967, 21967,16721,16721,16721,21968,21968,21968,21968,21968,21968, 21968,21968,21969,21969,21969,21969,21968,19007,21970,21968, 21968,21971,21971,21971,21971,21972,21973,21973,16748,16748, 16748,16748,16748,16748,16748,16748,16748,16748,16748,16748, 16748,21974,21975,21976,21976,21977,21978,21979,21968,21980, 21981,21981,21968,21982,21982,21982,21968,21983,21983,21983, 21968,21968,21984,21984,16784,16784,16784,21968,16788,21968, 21985,21985,21986,21987,21988,21989,21990,21990,21991,21992, 21993,21993,21994,21968,21995,21996,21997,21968,21968,21968, 21998,21999,22000,22001,22001,22001,22000,22002,22002,22003, 21968,22004,22005,22005,22006,22006,22007,22007,22007,16829, 16829,16829,22008,16829,22008,16835,16835,16835,16835,16835, 16835,16835,16835,16835,16835,16835,16835,16835,16835,16835, 16835,16835,16835,16829,16829,16829,16829,16829,16829,16829, 16829,22009,22010,22010,22010,22009,22010,16866,16866,16866, 16866,22011,21968,21968,21968,22012,22012,22013,21968,21968, 21968,21968,21968,16880,22014,22014,22015,22016,22016,16889, 16889,16889,22017,22017,16894,16894,16894,22018,22018,16899, 16899,16899,22019,22019,16904,16904,22020,22020,16908,22021, 22021,22022,22023,22023,16914,16914,22024,22024,16918,22025, 22025,22026,16889,16889,16889,16889,16889,16880,16928,16928, 16928,16928,16928,16889,16928,16928,16928,22027,22027,22027, 22028,16928,16928,22029,22030,22031,22032,22033,22033,16949, 22034,22034,22035,22036,16928,22037,22038,22038,22039,22039, 22039,16928,22040,16928,16928,22041,22041,16967,16967,16967, 16928,16928,16928,16928,22042,22042,22042,22043,22044,22045, 22046,22046,22047,22048,22049,22049,22050,16928,22051,22052, 22053,16928,16928,16928,22054,22055,22056,22057,22057,22057, 22056,22058,22058,22059,16928,22060,22061,22061,22062,22062, 22062,22062,22062,22062,22062,22063,22063,17017,17017,17017, 17017,17017,17017,17017,17017,17017,17017,17017,17017,17017, 17017,17017,22062,17033,17033,17033,17033,17033,22064,22064, 22064,22064,22065,22065,17044,17044,22066,16928,16928,16928, 22067,22068,22069,22069,17054,22070,22070,17057,17057,17057, 22071,22071,17062,17062,17062,22072,22072,17067,17067,17067, 22073,22073,17072,17072,17072,22074,22074,17077,17077,22075, 22075,17081,22076,22077,22077,22078,22078,17087,17087,17087, 22079,22079,17092,17092,22080,22080,17096,22081,22082,22082, 22083,22084,22084,22085,22085,22086,22084,22084,22087,22087, 22088,22089,22090,22090,17114,17114,17114,22091,22092,22093, 22084,22094,22095,22096,22097,22097,22097,22084,22098,22084, 22084,22099,22099,17133,17133,17133,22084,22084,22100,22101, 22102,22103,22103,22104,22105,22106,22084,22107,22108,22109, 22084,22084,22084,22110,22111,22112,22113,22113,22113,22112, 22114,22114,22115,22084,22116,22117,22118,22118,22119,22119, 22118,17170,17170,17170,17170,17170,17170,17170,17170,17170, 17170,17170,17170,17170,17170,17170,17170,17170,22118,17170, 22118,22118,22118,22118,22120,22120,22120,22121,22121,17199, 17199,22122,22084,22084,22084,22123,22124,22084,22125,22126, 22126,17211,17211,17211,22127,22127,17216,17216,17216,17216, 17216,17216,17216,17216,17216,17216,17216,17216,17216,22128, 22128,17231,17231,17231,17231,17231,17231,17231,17231,17231, 17231,17231,17231,17231,22129,22129,17246,17246,17246,17246, 17216,17216,17216,17216,17216,17216,17216,17216,17216,17216, 17216,17216,17216,17216,17216,22130,22130,22130,22084,22084, 22131,22131,22084,22084,22084,22132,22133,22134,22135,22135, 22136,22137,22084,22138,22139,22139,22123,22139,22140,22141, 22141,22141,22084,22142,22084,22084,22143,22143,17298,17298, 17298,22084,17302,22084,22144,22145,22146,22147,22147,22148, 22149,22150,22151,22152,22153,22154,22084,22084,22084,22155, 22156,22157,22158,22158,22158,22157,22159,22159,22160,22084, 22161,22162,22163,22163,22164,22163,22164,17337,17337,17337, 17337,17337,17337,17337,17337,17337,17337,17337,17337,17337, 17337,17337,17336,17336,17336,17336,17336,22165,22166,22165, 22166,17361,22167,22084,22084,22168,22169,22170,22171,22171, 17370,17370,17370,17370,17370,17370,17370,17370,22084,22084, 22084,22084,22084,22084,17370,22172,22172,22084,22084,22173, 22084,22084,22174,22175,22176,22176,22177,22178,22084,22179, 22180,22180,22181,22182,22182,22084,22183,22084,22084,22184, 22184,17411,17411,17411,22084,22084,22084,22084,22185,22186, 22187,22188,22189,22190,22191,22191,22192,22193,22194,22084, 22084,22084,22195,22196,22197,22198,22198,22198,22199,22199, 22084,22200,22201,22202,22202,22202,22203,22203,17448,17448, 17448,17448,17448,17448,17448,17448,17448,17448,17448,22202, 22202,22204,22204,22205,22205,22206,22084,22084,22207,22208, 22209,22209,17472,17472,17472,22210,22210,22084,22084,22211, 22211,22084,22212,22213,22214,22215,22216,22084,22217,22218, 22218,22219,22220,22220,22084,22221,22084,22084,22222,22222, 17500,17500,17500,22084,22084,22223,22224,22225,22226,22227, 22228,22229,22230,22231,22232,22084,22084,22084,22233,22234, 22235,22236,22236,22236,22237,22237,22084,22238,22239,22240, 22240,22240,22241,22241,17534,17534,17534,17534,17534,17534, 17534,17534,17534,17534,17534,22240,22242,22242,22243,22243, 22244,22084,22084,22245,22246,22247,22247,17557,17557,17557, 22248,22248,22084,22084,22084,22249,22250,22250,22251,22252, 22253,22254,22084,22255,22256,22256,22257,22258,22258,22084, 22259,22084,22084,22260,22260,17585,17585,17585,22084,17589, 22084,22261,22262,22263,22264,22265,22266,22267,22268,22084, 22084,22084,22269,22270,22271,22272,22272,22272,22273,22273, 22084,22274,22275,22276,22276,22276,22277,22277,17618,17618, 17618,17618,17618,17618,17618,17618,22276,22278,22278,22279, 22279,17631,22280,22084,22084,22281,22282,22283,22283,22084, 22084,22084,22284,22284,22284,22084,22285,22285,22286,22287, 22288,22289,22084,22290,22291,22291,22292,22293,22293,22084, 22294,22084,22084,22295,22295,17665,17665,17665,22084,22084, 22084,22084,22296,22297,22298,22299,22300,22301,22302,22084, 22084,22303,22304,22305,22306,22306,22306,22307,22307,22084, 22308,22309,22310,22310,22310,22311,22311,17697,17697,17697, 17697,17697,17697,22312,22312,17705,22313,22313,17708,22084, 22314,22315,22316,22316,22084,22317,22317,22318,22319,22320, 22321,22322,22084,22323,22324,22324,22325,22326,22326,22084, 22084,22327,22084,22084,22328,22328,17736,17736,17736,22084, 22084,22329,22330,22331,22332,22333,22334,22335,22084,22084, 22336,22337,22338,22339,22339,22339,22340,22340,22084,22341, 22342,22343,22344,22343,22344,17765,17765,17765,17765,17765, 22345,22345,22345,22346,22346,22084,22347,22348,22084,22349, 22349,22350,22351,22352,22353,22354,22084,22355,22356,22357, 22358,22358,22084,22359,22084,22084,22360,22360,17798,17798, 17798,22084,17802,22084,22361,22362,22363,22364,22365,22366, 22084,22084,22367,22368,22369,22370,22370,22371,22372,22084, 22373,22374,22374,22375,22375,17825,17825,17825,22376,22376, 22377,22377,22084,22378,22379,22084,22380,22084,22381,22382, 22383,22384,22084,22385,22386,22387,22388,22084,22389,22084, 22084,22390,22390,17853,17853,17853,22084,22084,22084,22084, 22391,22392,22393,22394,22395,22084,22084,22396,22397,22398, 22399,22399,22400,22401,22401,22401,22401,22401,22402,22403, 22403,22404,22405,22405,17884,17884,22406,22406,22404,22084, 22407,22408,22409,22410,22411,22412,22084,22413,22414,22415, 22416,22084,22417,22418,22084,22419,22419,17907,17907,17907, 22084,22084,22420,22421,22422,22423,22424,22084,22084,22425, 22426,22427,22428,22428,22429,22430,22430,22430,22431,22431, 22432,22432,22433,22433,22434,17934,17934,17934,17934,17934, 17934,17934,17934,17934,17934,17934,17934,17934,17934,22435, 22435,17951,22434,22436,22437,22438,22439,22440,22084,22441, 22442,22443,22444,22084,22445,22446,22446,22446,22084,22447, 22447,17971,17971,17971,22084,17975,22084,22448,22449,22450, 22451,22452,22084,22453,22454,22455,22456,22456,22457,22458, 22458,22458,22459,22460,22460,17995,22461,22462,22462,22462, 22462,22462,22462,22462,22462,22462,22462,22462,22462,22462, 22462,22461,18012,18012,18012,18012,18012,18012,18012,18012, 18012,18012,18012,18012,18012,18012,18012,18012,22463,22463, 22464,22465,22466,22467,22468,22084,22469,22470,22471,22084, 22472,22473,22473,22084,22474,22474,18046,18046,18046,22084, 22084,22084,22084,22475,22476,22477,22478,22479,22479,22480, 22481,22482,22483,22483,22484,22485,22485,22485,22486,22487, 22487,22487,22488,22489,22489,22489,22489,22489,22489,22489, 22489,18081,18081,18081,18081,18081,18081,18081,18081,18081, 22488,18091,18091,18091,18091,18091,18091,18091,18091,18091, 18091,18091,18091,18091,18091,18091,18091,22490,22490,22491, 22492,22493,22494,22495,22496,22497,22498,22499,22496,22500, 22501,22501,22502,22502,18124,18124,18124,22496,22496,22503, 22504,22505,22506,22507,22507,22508,22509,22510,22511,22511, 22512,22513,22513,22513,22514,22515,22515,22516,22517,22517, 22517,22517,22517,18153,18153,18153,18153,18153,18153,22516, 18153,18153,18153,18153,18153,18160,18160,18160,18160,18160, 18160,18160,18160,18160,18160,18160,18160,18160,18160,18160, 18160,18160,22518,22518,22519,22520,22521,22522,22496,22523, 22524,22525,22496,22526,22527,22527,22528,22528,18198,18198, 18198,22496,18202,22496,22529,22530,22531,22532,22533,22534, 22535,22536,22537,22537,22538,22539,22539,22539,22540,22541, 22541,22542,22543,22543,22543,22543,22543,22543,22543,22542, 22543,22543,22543,22543,22543,22543,18236,18236,18236,18230, 18230,18230,18230,18230,18230,18230,18230,18230,18230,18230, 18230,18230,18230,18230,18230,22544,22544,18257,22545,22546, 22547,22496,22548,22549,22550,22551,22552,22553,22553,18269, 18269,18269,22496,22496,22496,22554,22555,22556,22557,22558, 22559,22560,22561,22562,22563,22563,22564,22565,22565,22566, 22567,22568,22568,22568,18294,18294,18294,22567,18294,18294, 18294,18294,18294,18294,18294,18294,18294,18298,18298,18298, 18298,18298,18298,18298,18298,18298,18298,18298,18298,18298, 22569,22569,18322,22570,22571,22496,22572,22573,22573,22573, 22574,22575,22576,22576,18334,18334,18334,22496,22577,22577, 22577,22578,22579,22580,22580,22580,22580,22581,22581,22581, 22582,22583,22584,22585,22585,22586,22586,22587,18298,18294, 18294,18294,18294,18294,18294,18294,18294,18294,18294,18294, 18294,18294,18298,18298,18298,18298,18298,18298,18298,18298, 18298,18298,18298,18322,18322,22570,22571,22496,22572,22573, 22573,22574,22575,22588,22588,18395,18395,18395,22496,18399, 22577,22577,22578,22579,22580,22580,22580,22580,22581,22581, 22581,22582,22583,22584,22585,22585,22586,22586,22587,18298, 18298,18294,18294,18298,18298,18294,18294,18298,18294,18294, 18294,18294,18298,18298,18298,18298,18298,18298,18298,18298, 18322,18322,22570,22571,22496,22572,22589,22573,22574,22575, 22590,22590,18452,18452,18452,22496,22496,22496,22577,22577, 22578,22591,22591,22580,22580,22581,22581,22582,22584,22585, 22585,22586,22586,22587,18298,18298,18294,18294,18294,18294, 18294,18294,18294,18294,18298,18298,18298,18298,18298,22570, 22571,22496,22572,22589,22589,22589,22573,22575,22592,22592, 18500,18500,18500,22496,22577,22577,22578,22591,22591,22591, 22591,22591,22580,22580,22581,22581,22582,22584,22585,22585, 22586,22586,22587,18298,18294,18294,18294,18294,18294,18298, 18298,18298,18298,18298,22570,22571,22496,22572,22589,22589, 22589,22573,22575,22593,22593,18545,18545,18545,22496,18549, 22577,22577,22578,22591,22591,22591,22580,22580,22581,22581, 22582,22584,22585,22585,22586,22586,22587,18298,18294,18294, 18294,18298,18294,18298,18298,18298,18298,22570,22571,22496, 22572,22589,22589,22573,22575,22594,22594,18587,18587,18587, 22496,22496,22496,22577,22577,22578,22591,22591,22580,22580, 22581,22581,22582,22584,22585,22585,22586,22586,22587,18294, 18294,18294,18294,18298,18298,18298,18298,22571,22496,22589, 22589,22573,22575,22595,22595,18625,18625,18625,22496,22577, 22577,22578,22591,22591,22580,22580,22581,22581,22582,22584, 22585,22585,22586,22587,18294,18294,18294,18298,18298,18298, 18298,22571,22496,22589,22589,22573,22575,22596,22596,18659, 18659,18659,22496,18663,22577,22577,22591,22591,22580,22580, 22581,22581,22582,22584,22585,22585,22586,22587,18294,18298, 18294,18298,18298,22571,22496,22589,22589,22573,22575,22597, 22597,18691,18691,18691,22496,22496,22496,22577,22577,22591, 22591,22580,22580,22581,22581,22582,22584,22585,22585,22586, 22587,18294,18294,18298,18298,22571,22496,22589,22573,22575, 22598,22598,18722,18722,18722,22496,22577,22591,22591,22580, 22580,22581,22581,22582,22584,22585,22586,22587,18294,18294, 18298,18298,22496,22589,22573,22575,22496,22496,22496,22496, 22496,22496,18752,22577,22591,22591,22580,22580,22581,22581, 22582,22584,22585,22586,22587,18294,18294,18298,18298,18298, 22496,22589,22573,22575,22496,22496,22496,22577,22591,22591, 22580,22580,22581,22581,22582,22584,22585,22586,22587,18294, 18294,18294,18298,18298,18298,22496,22589,22573,22575,22496, 22577,22591,22591,22580,22580,22581,22581,22582,22584,22585, 22586,22587,18294,18294,18294,18298,18298,22496,22589,22573, 22575,22496,18822,22577,22591,22591,22580,22580,22581,22581, 22582,22584,22585,22587,18294,18294,18298,18298,22496,22589, 22573,22575,22577,22591,22591,22580,22580,22581,22581,22582, 22584,22585,18294,18294,22589,22573,22577,22591,22591,22580, 22580,22581,22581,22582,22584,22585,22589,22573,22577,22591, 22591,22580,22580,22581,22581,22584,22585,22589,22573,22577, 22591,22591,22580,22580,22581,22581,22584,22585,22589,22573, 22577,22591,22591,22580,22580,22581,22581,22584,22585,22589, 22573,22577,22591,22591,22580,22580,22581,22581,22584,22585, 22589,22591,22591,22580,22581,22584,22585,22589,22591,22591, 22580,22581,22584,22585,22589,22591,22591,22580,22581,22584, 22585,22591,22580,22581,22584,22585,22591,22580,22581,22584, 22585,22591,22580,22581,22584,22585,22591,22580,22581,22584, 22585,22591,22580,22581,22585,22591,22580,22581,22585,22591, 22580,22581,22585,22591,22580,22581,22585,22591,22580,22581, 22591,22580,22581,22591,22580,22581,22591,22580,22581,22591, 22580,22581,22591,22580,22581,22591,22580,22581,22591,22580, 22581,22591,22580,22581,22591,22580,22581,22591,22580,22581, 22591,22580,22581,22591,22591,22591, 0,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007 } ; static yyconst flex_int16_t yy_nxt[331880] = { 0, 54, 55, 56, 55, 57, 58, 54, 54, 54, 59, 54, 54, 60, 61, 62, 63, 63, 63, 63, 63, 63, 64, 54, 54, 54, 54, 54, 65, 66, 67, 68, 69, 70, 71, 72, 72, 73, 74, 72, 75, 76, 77, 78, 72, 79, 80, 72, 81, 72, 72, 54, 54, 82, 54, 83, 84, 85, 85, 86, 85, 87, 87, 88, 87, 87, 89, 90, 87, 87, 91, 87, 87, 87, 87, 87, 92, 93, 87, 87, 95, 95, 97, 98, 97, 98, 99, 99, 121, 122, 121, 122, 122, 122, 123, 166, 147, 176, 96, 96, 147, 147, 174, 175, 100, 100, 150, 150, 150, 150, 150, 150, 150, 150, 150, 151, 321, 177, 120, 416, 120, 119, 119, 321, 119, 119, 119, 119, 119, 119, 124, 119, 119, 125, 126, 127, 128, 128, 128, 128, 128, 128, 129, 119, 119, 119, 119, 130, 119, 131, 131, 131, 131, 131, 132, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 119, 119, 119, 119, 131, 131, 131, 131, 131, 131, 133, 133, 133, 133, 133, 134, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 119, 119, 156, 135, 119, 119, 119, 119, 119, 5767, 137, 119, 157, 157, 157, 157, 157, 157, 157, 157, 158, 119, 119, 119, 119, 119, 119, 119, 120, 183, 178, 416, 120, 138, 152, 152, 152, 152, 152, 153, 154, 154, 154, 151, 147, 184, 195, 196, 147, 147, 119, 119, 119, 119, 119, 119, 179, 139, 119, 119, 119, 119, 119, 140, 141, 119, 142, 143, 143, 143, 143, 143, 143, 143, 143, 144, 119, 119, 119, 119, 119, 119, 145, 145, 145, 145, 145, 146, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 119, 119, 119, 148, 143, 143, 143, 143, 143, 143, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 155, 155, 155, 155, 155, 155, 155, 155, 155, 151, 159, 159, 159, 159, 159, 159, 159, 159, 159, 188, 190, 164, 120, 137, 189, 143, 159, 159, 159, 159, 159, 160, 165, 167, 151, 190, 147, 168, 247, 407, 147, 147, 447, 120, 147, 185, 199, 120, 147, 147, 657, 186, 159, 159, 159, 159, 159, 159, 119, 236, 200, 230, 120, 187, 242, 137, 201, 145, 145, 145, 145, 145, 145, 145, 145, 145, 151, 169, 214, 122, 214, 190, 123, 263, 120, 170, 237, 264, 137, 171, 143, 120, 267, 120, 120, 120, 238, 504, 268, 151, 147, 122, 122, 122, 147, 147, 120, 416, 120, 145, 145, 145, 145, 145, 145, 147, 147, 147, 147, 147, 147, 147, 147, 147, 161, 147, 147, 147, 162, 163, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 172, 248, 137, 137, 143, 143, 194, 147, 147, 147, 147, 147, 173, 151, 151, 121, 122, 121, 216, 122, 216, 244, 251, 121, 122, 226, 228, 219, 122, 219, 120, 243, 123, 147, 147, 147, 147, 147, 147, 231, 650, 120, 190, 321, 1163, 321, 193, 120, 147, 191, 217, 120, 147, 147, 234, 120, 120, 190, 120, 220, 207, 122, 207, 354, 120, 355, 120, 192, 137, 120, 149, 149, 149, 149, 149, 149, 149, 149, 149, 172, 276, 204, 327, 205, 120, 289, 147, 147, 147, 147, 147, 173, 208, 221, 295, 222, 227, 328, 296, 359, 229, 229, 229, 229, 229, 229, 229, 229, 232, 209, 120, 190, 149, 149, 149, 149, 149, 149,19007, 210, 120, 121, 122, 121, 245, 606, 233, 5774, 120, 211, 211, 211, 211, 211, 211, 211, 211, 212, 120, 121, 122, 121, 246, 121, 122, 121, 343, 397, 537, 208, 214, 122, 214, 120, 258, 258, 258, 258, 258, 258, 258, 258, 258, 259, 298, 337, 209,19007, 223, 607, 120, 120, 120, 307, 338, 120, 120, 237, 224, 224, 224, 224, 224, 224, 224, 224, 225, 260, 260, 260, 260, 260, 261, 262, 262, 262, 259, 350, 220, 262, 262, 262, 262, 262, 262, 262, 262, 262, 259, 249, 249, 254, 254, 351, 398, 389, 289, 289, 400, 237, 259, 259, 425, 240, 120, 295, 295, 390, 265, 120,19007, 259, 221, 119, 119, 119, 119, 119, 119, 119, 119, 119, 120, 249, 119, 283, 284, 285, 286, 286, 286, 286, 286, 286, 119, 119, 119, 119, 119, 119, 119, 208, 346, 383, 360, 305, 250, 306, 306, 306, 306, 306, 306, 306, 306, 306, 295, 344, 209, 894, 428, 416, 553, 119, 119, 119, 119, 119, 119, 434, 119, 119, 119, 119, 119, 119, 251, 252, 119, 253, 254, 254, 254, 254, 254, 254, 254, 254, 255, 119, 119, 119, 119, 119, 119, 254, 254, 254, 254, 254, 256, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 119, 119, 119, 257, 254, 254, 254, 254, 254, 254, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 249, 5780, 251, 251, 251, 251, 251, 251, 251, 251, 251, 119,19007, 251, 252, 251, 425, 120, 251, 251, 251, 251, 251, 266, 305, 259, 306, 306, 306, 306, 306, 306, 306, 306, 306, 295,19007, 216, 122, 216, 399, 442, 441, 217, 251, 251, 251, 251, 251, 251, 119, 119, 384, 119, 269, 119, 119, 119, 119, 270, 119, 119, 371, 120, 207, 122, 207, 217,19007, 217, 120, 119, 119, 119, 119, 119, 119, 119, 217, 608, 120, 568, 305, 272, 306, 306, 306, 306, 306, 306, 308, 308, 308, 295, 361, 387, 208, 472, 667, 208, 119, 119, 119, 119, 119, 119, 295, 119, 119, 119, 119, 119, 119, 209, 137, 119, 209, 482, 120, 405, 120, 391, 120, 135, 478, 119, 119, 119, 119, 119, 119, 119, 392, 307, 594, 1014, 305, 138, 308, 308, 308, 308, 308, 308, 308, 308, 308, 295, 408, 406, 120, 409, 410, 120, 119, 119, 119, 119, 119, 119, 411, 119, 119, 119, 119, 119, 119, 136, 119, 119, 136, 136, 136, 136, 136, 136, 136, 136, 136, 119, 119, 119, 119, 119, 119, 119, 273, 273, 273, 273, 273, 274, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 119, 119, 119, 119, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 277, 277, 505, 278, 277, 277, 277, 277, 277, 395, 280, 277, 120, 601, 120, 446, 120, 389, 403, 484, 396, 277, 277, 277, 277, 277, 277, 277, 487, 390, 120, 3026, 305, 281, 309, 309, 309, 309, 309, 309, 309, 309, 309, 295, 412, 120, 120, 413, 414, 452, 277, 277, 277, 282, 277, 277, 415, 287, 277, 277, 277, 277, 277, 279, 280, 277, 288, 289, 289, 289, 289, 289, 289, 289, 289, 290, 277, 277, 277, 277, 277, 277, 291, 291, 291, 291, 291, 292, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 277, 277, 277, 282, 289, 289, 289, 289, 289, 289, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 296, 489, 609, 120, 121, 122, 226, 208, 120, 297, 298, 298, 298, 298, 298, 298, 298, 298, 299, 19007, 558, 574, 501, 425, 209, 298, 298, 298, 298, 298, 300,19007, 259, 219, 122, 219, 120, 310, 310, 310, 310, 310, 310, 310, 310, 310, 554, 439, 489, 220, 220, 298, 298, 298, 298, 298, 298, 278, 120, 612, 120, 208, 208, 208, 555, 220, 291, 291, 291, 291, 291, 291, 291, 291, 291, 295, 311, 227, 209, 209, 209, 591, 120, 221, 221, 312, 312, 312, 312, 312, 312, 312, 312, 312, 507, 472, 561, 120, 362, 221, 120, 556, 1092, 510, 295, 564, 120, 583, 291, 291, 291, 291, 291, 291, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 302, 237, 585, 120, 597, 425, 540, 293, 293, 293, 293, 293, 303, 559, 259, 598, 240, 613, 120, 599,19007, 431,19007, 420, 421, 422, 423, 423, 423, 423, 423, 423, 120, 293, 293, 293, 293, 293, 293, 277, 277, 208, 278, 277, 277, 277, 277, 277, 372, 277, 277, 220,19007, 220, 220, 120, 439, 569, 209, 251, 277, 277, 277, 277, 277, 277, 277, 403, 220, 120, 844, 252, 304, 433, 433, 433, 433, 433, 433, 433, 433, 433, 259, 220, 586, 221, 373, 221, 221, 277, 277, 277, 294, 294, 294, 294, 294, 294, 294, 294, 294, 302, 221, 584, 614, 120, 571, 576, 293, 293, 293, 293, 293, 303, 385, 602, 579, 221, 374, 278, 596, 120, 386, 386, 386, 386, 386, 386, 386, 386, 386, 251, 484, 270, 294, 294, 294, 294, 294, 294, 313, 487, 587, 120, 237, 406, 651, 389, 492, 314, 315, 315, 315, 315, 315, 315, 315, 315, 602, 390, 120, 660, 120, 507, 635, 315, 315, 315, 315, 315, 316, 252, 510, 433, 433, 433, 433, 433, 433, 433, 433, 433, 259, 605, 512, 640, 828, 769, 406, 1250, 120, 315, 315, 315, 315, 315, 317, 318, 318, 318, 318, 318, 318, 318, 318, 318, 120, 655, 570, 664, 513, 635, 617, 318, 318, 318, 318, 318, 319, 393, 466, 466, 466, 466, 466, 466, 466, 466, 466, 394, 394, 394, 394, 394, 394, 394, 394, 589, 220, 318, 318, 318, 318, 318, 318,19007, 120, 683, 120, 120, 770, 850, 220, 120, 724, 363, 363, 363, 363, 363, 363, 363, 363, 363, 252, 573, 433, 433, 433, 433, 433, 433, 221, 120, 838, 259, 208, 467, 467, 467, 467, 467, 468, 469, 469, 469, 221, 590, 120, 120, 626, 630, 642, 209,19007, 364, 120, 595, 610, 259, 633, 645, 416, 611, 365, 365, 365, 365, 365, 365, 365, 365, 365, 469, 469, 469, 469, 469, 469, 469, 469, 469, 136, 136, 136, 208, 496, 497, 498, 499, 499, 499, 499, 499, 499, 588, 252, 120, 626, 626, 389, 561, 209,19007, 366, 733, 615, 259, 259, 120, 564, 616, 390, 367, 368, 368, 368, 368, 368, 368, 368, 368, 566, 439, 764, 854, 737, 120, 667, 368, 368, 368, 368, 368, 369, 305, 676, 500, 500, 500, 500, 500, 500, 500, 500, 500, 295, 217, 567, 786, 5786, 209, 733, 805, 120, 368, 368, 368, 368, 368, 370,19007, 621, 621, 621, 621, 621, 621, 621, 621, 621, 375, 375, 375, 375, 375, 375, 375, 375, 375, 500, 500, 500, 500, 500, 500, 500, 500, 500, 295, 120, 836, 220, 502, 502, 502, 502, 502, 502, 502, 502, 502, 295, 503, 697, 785, 841, 119, 120, 120, 1190, 120, 310, 310, 310, 310, 310, 310, 310, 310, 310, 692, 699, 602, 669, 576, 221, 19007, 376, 603, 487, 487, 716, 120, 579, 120, 120, 377, 377, 377, 377, 377, 377, 377, 377, 377, 581, 702, 708, 723, 311, 827, 726, 406, 893, 798, 706, 711, 220, 312, 312, 312, 312, 312, 312, 312, 312, 312, 507, 561, 576, 208, 582, 699, 416, 120, 802, 510, 564, 579, 120, 120, 487, 727, 511, 565, 580, 604, 209, 512, 566, 581, 221,19007, 378, 208, 788, 416, 220, 393, 728, 787, 798, 379, 380, 380, 380, 380, 380, 380, 380, 380, 209, 208, 1081, 513, 567, 582, 730, 380, 380, 380, 380, 380, 381, 385, 789, 510, 120, 120, 209, 807, 221, 386, 386, 386, 386, 386, 386, 386, 386, 386, 795, 816, 389, 380, 380, 380, 380, 380, 382, 564, 579, 5792, 120, 237, 831, 960, 221, 119, 119, 840, 119, 119, 119, 119, 119, 119, 124, 119, 119, 124, 124, 124, 124, 124, 124, 124, 124, 124, 119, 119, 119, 119, 119, 119, 119, 417, 417, 417, 417, 417, 418, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 119, 119, 119, 119, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 119, 119, 839, 119, 119, 119, 119, 119, 119, 220, 249, 119, 622, 622, 622, 622, 622, 623, 624, 624, 624, 119, 119, 119, 119, 119, 119, 119, 419, 120, 1091, 120, 237, 250, 624, 624, 624, 624, 624, 624, 624, 624, 624, 221, 837, 656, 120, 626, 120, 808, 119, 119, 119, 119, 119, 119, 259, 119, 119, 119, 119, 119, 119, 628, 249, 119, 208, 826, 220, 845, 602, 120, 790, 630, 806, 119, 119, 119, 119, 119, 119, 264, 633, 209, 829, 1009, 416, 266, 120, 638, 136, 136, 136, 136, 136, 136, 136, 136, 136, 406, 406, 850, 221, 847, 119, 119, 119, 257, 119, 119, 1572, 119, 119, 119, 119, 119, 119, 251, 249, 119, 424, 425, 425, 425, 425, 425, 425, 425, 425, 255, 119, 119, 119, 119, 119, 264, 425, 425, 425, 425, 425, 426, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 119, 119, 119, 257, 425, 425, 425, 425, 425, 425, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 427, 428, 428, 428, 428, 428, 428, 428, 428, 429, 857, 1106, 120, 642, 642, 692, 428, 428, 428, 428, 428, 430, 645, 645, 487, 389, 120, 240, 830, 646, 220, 694, 726, 842, 647, 647, 810, 390, 852, 5808, 120, 699, 428, 428, 428, 428, 428, 428, 119, 119, 487, 119, 119, 119, 119, 119, 119, 705, 119, 119, 648, 648, 664, 792, 221, 120, 1251, 708, 708, 119, 119, 119, 119, 119, 119, 264, 711, 711, 708, 220, 793, 432, 899, 712, 120, 848, 730, 711, 713, 713, 120, 120, 809, 857, 712, 510, 856, 849, 119, 119, 119, 435, 436, 436, 436, 436, 436, 436, 436, 436, 416, 119, 780, 221, 714, 714, 264, 436, 436, 436, 436, 436, 437, 717, 717, 717, 717, 717, 717, 717, 717, 717, 718, 718, 718, 718, 718, 719, 720, 720, 720, 1023, 730, 436, 436, 436, 436, 436, 438, 119, 119, 510, 119, 119, 119, 119, 119, 119, 736, 249, 119, 720, 720, 720, 720, 720, 720, 720, 720, 720, 119, 119, 119, 119, 119, 119, 264, 440, 120, 465, 721, 120, 266, 722, 722, 722, 722, 722, 722, 722, 722, 722, 295, 851, 850, 965, 795, 671, 120, 119, 119, 119, 257, 119, 119, 564, 119, 119, 119, 119, 119, 119, 443, 119, 119, 120, 5811, 855, 120, 1027, 555, 853, 120, 816, 119, 119, 119, 119, 119, 119, 119, 854, 579, 124, 124, 124, 445, 722, 722, 722, 722, 722, 722, 722, 722, 722, 295, 569, 819, 1023, 730, 120, 886, 119, 119, 119, 119, 119, 119, 510, 119, 119, 119, 119, 119, 119, 736, 119, 119, 823, 120, 738, 1033, 890, 726, 120, 795, 730, 119, 119, 119, 119, 119, 119, 119, 564, 510, 816, 854, 602, 448, 865, 801, 602, 652, 819, 579, 739, 738, 886, 633, 2319, 896, 822, 661, 812, 902, 119, 119, 119, 119, 119, 904, 119, 119, 119, 119, 119, 119, 406, 119, 119, 813, 406, 739, 1034, 957, 958, 120, 667, 664, 119, 119, 119, 119, 119, 119, 119, 449, 814, 909, 927, 667, 448, 124, 124, 124, 124, 124, 124, 124, 124, 124, 604, 120, 120, 868, 1093, 846, 416, 119, 119, 119, 119, 119, 872, 313, 119, 119, 119, 119, 119, 136, 137, 119, 136, 136, 136, 136, 136, 136, 136, 136, 136, 119, 119, 119, 119, 119, 119, 119, 273, 273, 273, 273, 273, 274, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 119, 119, 119, 119, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 119, 119, 664, 119, 119, 119, 119, 119, 119, 795, 137, 119, 1109, 120, 120, 1248, 664, 667, 564, 120, 874, 119, 119, 119, 119, 119, 119, 119, 119, 877, 803, 961, 1028, 138, 1253, 669, 451, 455, 455, 455, 455, 455, 455, 455, 455, 455, 955, 915, 1022, 1082, 119, 119, 119, 119, 119, 119, 804, 119, 119, 119, 119, 119, 119, 119, 119, 119, 136, 136, 136, 664, 1031, 277, 1018, 865, 874, 119, 119, 119, 119, 119, 119, 119, 633, 877, 883, 455, 119, 454, 470, 871, 878, 726, 120, 645, 746, 455, 455, 455, 455, 455, 455, 455, 455, 455, 119, 119, 119, 119, 119, 119, 237, 119, 269, 119, 119, 119, 119, 270, 119, 119, 1276, 120, 727, 208, 1094, 1225, 1056, 795, 816, 119, 119, 119, 119, 119, 119, 119, 564, 579, 883, 962, 209, 456, 922, 801, 822, 664, 1347, 645, 803, 824, 749, 925, 1037, 905, 889, 816, 217, 938, 119, 119, 119, 119, 277, 277, 579, 278, 277, 277, 277, 277, 277, 279, 280, 277, 804, 825, 824, 220, 942, 120, 1023, 865, 883, 277, 277, 277, 277, 277, 277, 277, 633, 645, 667, 669, 922, 458, 965, 1296, 929, 933, 676, 716, 825, 925, 938, 416, 416, 487, 936, 944, 926, 221, 277, 277, 277, 282, 119, 119, 711, 119, 119, 119, 119, 119, 119, 136, 119, 119, 459, 459, 459, 459, 459, 459, 459, 459, 459, 119, 119, 119, 119, 119, 119, 119, 460, 460, 460, 460, 460, 461, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 119, 119, 119, 119, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 277, 277, 1095, 278, 277, 277, 277, 277, 277, 279, 280, 277, 911, 911, 911, 911, 911, 911, 911, 911, 911, 277, 277, 277, 277, 277, 277, 277, 462, 967, 119, 208, 237, 458, 120, 278, 278, 726, 510, 455, 455, 455, 455, 455, 455, 455, 455, 455, 1041, 947, 277, 277, 277, 282, 277, 277, 1035, 278, 277, 277, 277, 277, 277, 282, 277, 277, 751, 362, 792, 1801, 951, 1263, 1097, 874, 874, 277, 277, 277, 277, 277, 277, 277, 877, 877, 929, 1039, 208, 464, 971, 878, 1043, 1260, 403, 487, 879, 879, 947, 974, 1101, 564, 931, 883, 240, 209, 277, 277, 277, 282, 119, 119, 645, 119, 119, 119, 119, 119, 119, 889, 465, 119, 880, 880, 891, 208, 925, 119, 726, 922, 883, 119, 119, 119, 119, 119, 119, 119, 925, 645, 933, 904, 209, 138, 5819, 119, 1036, 120, 277, 936, 892, 891, 664, 904, 964, 669, 941, 929, 1105, 727, 119, 119, 119, 119, 119, 119, 487, 119, 269, 119, 119, 119, 119, 270, 119, 119, 962, 892, 278, 220, 1103, 416, 1107, 944, 967, 119, 119, 119, 119, 119, 119, 119, 711, 510, 1020, 987, 1064, 456, 897, 898, 898, 897, 897, 897, 897, 897, 897, 416, 416, 1110, 406, 416, 120, 221, 119, 119, 119, 119, 208, 120, 912, 912, 912, 912, 912, 913, 914, 914, 914, 1292, 1038, 687, 1256, 1553, 1023, 209, 470, 277, 277, 120, 287, 277, 277, 277, 277, 277, 279, 280, 277, 471, 472, 472, 472, 472, 472, 472, 472, 472, 290, 277, 277, 277, 277, 277, 277, 473, 473, 473, 473, 473, 474, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 277, 277, 277, 282, 472, 472, 472, 472, 472, 472, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 119, 119, 5840, 296, 119, 119, 119, 119, 119, 119, 119, 119, 477, 478, 478, 478, 478, 478, 478, 478, 478, 299, 119, 119, 119, 119, 119, 119, 478, 478, 478, 478, 478, 479, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 119, 119, 119, 119, 478, 478, 478, 478, 478, 478, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 278, 120, 6030, 277, 277, 1526, 120, 1111, 1161, 473, 473, 473, 473, 473, 473, 473, 473, 473, 295, 914, 914, 914, 914, 914, 914, 914, 914, 914, 944, 465, 967, 956, 956, 956, 956, 956, 956, 711, 120, 510, 1047, 1067, 1277, 277, 950, 1283, 969, 671, 2524, 1050, 579, 473, 473, 473, 473, 473, 473, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 302, 1086, 1281, 656, 944, 944, 971, 475, 475, 475, 475, 475, 481, 711, 711, 974, 220, 1089, 4883, 1087, 950, 1071, 975, 1080, 1170, 952, 952, 976, 1061, 835, 1074, 833, 120, 475, 475, 475, 475, 475, 475, 476, 476, 476, 476, 476, 476, 476, 476, 476, 302, 726, 221, 953, 953, 977, 120, 475, 475, 475, 475, 475, 481, 465, 120, 956, 956, 956, 956, 956, 956, 956, 956, 956, 1057, 1551, 1096, 1040, 278, 1246, 6030, 671, 792, 476, 476, 476, 476, 476, 476, 483, 484, 484, 484, 484, 484, 484, 484, 484, 485, 1039, 124, 124, 124, 1043, 220, 484, 484, 484, 484, 484, 486, 465, 564, 956, 956, 956, 956, 956, 956, 956, 956, 956, 220, 120, 1592, 277, 220, 555, 120, 671, 1083, 484, 484, 484, 484, 484, 484, 313, 221, 120, 1028, 1108, 1249, 1058, 120, 664, 488, 489, 489, 489, 489, 489, 489, 489, 489, 1060, 221, 854, 1280, 119, 221, 1348, 489, 489, 489, 489, 489, 490, 959, 959, 959, 959, 959, 959, 959, 959, 959, 119, 1028, 1059, 1171, 1226, 1265, 688, 664, 1300, 1299, 971, 489, 489, 489, 489, 489, 491, 119, 119, 974, 296, 119, 119, 119, 119, 119, 119, 119, 119, 602, 6073, 976, 220, 120, 120, 1266, 971, 967, 119, 119, 119, 119, 119, 119, 119, 974, 510, 990, 389, 1089, 454, 485, 975, 969, 1084, 726, 1090, 977, 978, 406, 390, 835, 1128, 120, 967, 1104, 221, 119, 119, 119, 119, 277, 277, 510, 278, 277, 277, 277, 277, 277, 282, 277, 277, 1132, 979, 978, 812, 726, 1584, 120, 487, 1043, 277, 277, 277, 277, 277, 277, 277, 495, 564, 1047, 120, 1062, 464, 1119, 1123, 1045, 1956, 1128, 1050, 979, 1815, 1063, 633, 1126, 1137, 1051, 812, 278, 814, 277, 277, 277, 282, 506, 507, 507, 507, 507, 507, 507, 507, 507, 508, 1062, 1573, 1141, 1047, 1047, 1043, 507, 507, 507, 507, 507, 509, 1050, 1050, 564, 120, 687, 814, 1134, 1051, 1146, 1045, 1150, 1270, 1052, 1052, 1054, 877, 1137, 645, 278, 1153, 507, 507, 507, 507, 507, 507, 514, 514, 514, 514, 514, 514, 514, 514, 514, 1302, 1252, 602, 1053, 1053, 1055, 1266, 514, 514, 514, 514, 514, 515, 743, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 983, 983, 983, 983, 983, 983, 983, 983, 983, 1330, 406, 514, 514, 514, 514, 514, 514, 557, 119, 1684, 237, 120, 726, 487, 1102, 1261, 363, 363, 363, 363, 363, 363, 363, 363, 363, 120, 119, 1043, 416, 220, 1067, 120, 1086, 664, 604, 1071, 564, 208, 455, 579, 1071, 470, 726, 812, 1074, 1257, 1069, 992, 1054, 1074, 1087, 1075, 1800, 217, 209, 364, 1076, 1088, 455, 1322, 1062, 1076, 833, 221, 365, 365, 365, 365, 365, 365, 365, 365, 365, 727, 1055, 1067, 1227, 814, 1065, 1071, 1067, 588, 1077, 120, 579, 208, 389, 1077, 1074, 579, 962, 1119, 1085, 313, 1361, 1075, 1069, 1187, 390, 569, 633, 1078, 209, 366, 237, 6073, 925, 1121, 1461, 455, 1365, 508, 560, 561, 561, 561, 561, 561, 561, 561, 561, 562, 1258, 120, 120, 1123, 1134, 1079, 561, 561, 561, 561, 561, 563, 1126, 877, 1146, 702, 1119, 1134, 1067, 1131, 1140, 120, 1146, 645, 706, 633, 877, 579, 209, 1363, 1148, 645, 561, 561, 561, 561, 561, 561, 572, 1078, 416, 416, 120, 850, 120, 1232, 416, 375, 375, 375, 375, 375, 375, 375, 375, 375, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1079, 1236, 1525, 220, 1115, 1115, 1115, 1115, 1115, 1116, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1134, 1134, 1150, 1150, 1150, 1232, 1555, 487, 687, 877, 877, 1153, 1153, 1153, 247, 221, 376, 1140, 1154, 120, 1154, 1142, 1142, 1155, 1155, 377, 377, 377, 377, 377, 377, 377, 377, 377, 6073, 1146, 1146, 667, 667, 667, 667, 667, 667, 1187, 645, 645, 220, 1143, 1143, 1156, 1156, 1148, 925, 277, 1314, 1570, 1157, 1157, 687, 1189, 120, 237, 1163, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1274, 1364, 1889, 1318, 1187, 1192, 1195, 1201, 221, 378, 1158, 1158, 120, 925, 936, 1199, 1204, 1301, 575, 576, 576, 576, 576, 576, 576, 576, 576, 577, 904, 1314, 120, 1192, 1209, 1201, 576, 576, 576, 576, 576, 578, 936, 711, 1204, 220, 1163, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1206, 416, 854, 120, 1213, 1192, 576, 576, 576, 576, 576, 576, 120, 1216, 936, 1229, 1311, 656, 1334, 221, 232, 1198, 1329, 221, 974, 1050, 1207, 1074, 120, 592, 592, 592, 592, 592, 592, 592, 592, 592, 593, 136, 136, 136, 136, 136, 136, 136, 136, 136, 1569, 6030, 120, 119, 119, 1796, 119, 119, 119, 119, 119, 119, 124, 249, 119, 124, 124, 124, 124, 124, 124, 124, 124, 124, 119, 119, 119, 119, 119, 119, 264, 417, 417, 417, 417, 417, 418, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 119, 119, 119, 119, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 119, 119, 1362, 119, 119, 119, 119, 119, 119, 6030, 249, 119, 1224, 1224, 1224, 1224, 1224, 1224, 1224, 1224, 1224, 119, 119, 119, 119, 119, 119, 119, 119, 120, 1729, 208, 120, 250, 631, 119, 619, 1176, 1177, 1178, 1179, 1179, 1179, 1179, 1179, 1179, 120, 1201, 209, 208, 119, 119, 119, 119, 119, 119, 1204, 119, 119, 119, 119, 119, 119, 1205, 620, 119, 209, 208, 220, 1374, 313, 1377, 1306, 1305, 1209, 119, 119, 119, 119, 119, 119, 119, 1307, 711, 209, 1064, 120, 250, 510, 1166, 1167, 1167, 1166, 1166, 1166, 1166, 1166, 1166, 416, 403, 120, 406, 221, 1448, 119, 119, 119, 119, 119, 119, 120, 119, 119, 119, 119, 119, 119, 251, 249, 119, 625, 626, 626, 626, 626, 626, 626, 626, 626, 255, 119, 119, 119, 119, 119, 264, 626, 626, 626, 626, 626, 627, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 119, 119, 119, 257, 626, 626, 626, 626, 626, 626, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 629, 630, 630, 630, 630, 630, 630, 630, 630, 631, 313, 1308, 1337, 1201, 1209, 1213, 630, 630, 630, 630, 630, 632, 1204, 711, 1216, 120, 120, 1394, 510, 1205, 1211, 1217, 1366, 1341, 1206, 247, 1218, 120, 1379, 220, 120, 208, 630, 630, 630, 630, 630, 630, 634, 635, 635, 635, 635, 635, 635, 635, 635, 120, 209, 1337, 1207, 1213, 1219, 264, 635, 635, 635, 635, 635, 636, 1216, 1213, 1229, 221, 633, 1669, 120, 220, 240, 1324, 1216, 974, 1218, 1323, 1367, 1398, 120, 1217, 1235, 1209, 635, 635, 635, 635, 635, 637, 119, 119, 711, 119, 119, 119, 119, 119, 119, 1211, 119, 119, 1219, 313, 1220, 221, 656, 313, 119, 313, 1209, 119, 119, 119, 119, 119, 119, 264, 639, 711, 120, 510, 120, 432, 1483, 1239, 119, 1239, 1378, 1229, 1221, 1220, 247, 120, 120, 1395, 416, 120, 974, 120, 119, 119, 119, 641, 642, 642, 642, 642, 642, 642, 642, 642, 643, 416, 120, 1595, 1229, 1221, 1229, 642, 642, 642, 642, 642, 644, 974, 119, 974, 925, 1404, 1594, 984, 1235, 1964, 664, 663, 1262, 1237, 1126, 1237, 1244, 1244, 1245, 984, 119, 642, 642, 642, 642, 642, 642, 251, 251, 251, 251, 251, 251, 251, 251, 251, 119, 120, 119, 1238, 1089, 1238, 1311, 251, 251, 251, 251, 251, 266, 120, 688, 1050, 835, 2524, 649, 1360, 119, 667, 667, 667, 667, 667, 667, 667, 667, 667, 555, 1282, 664, 251, 251, 251, 251, 251, 251, 119, 119, 1259, 119, 119, 119, 119, 119, 119, 4219, 119, 119, 667, 667, 667, 667, 667, 667, 667, 667, 667, 119, 119, 119, 119, 119, 119, 119, 633, 664, 1407, 688, 984, 653, 726, 247, 1587, 656, 1279, 1411, 120, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 119, 119, 119, 119, 119, 208, 119, 119, 119, 119, 119, 119, 120, 119, 119, 792, 208, 1357, 1309, 1359, 1556, 366, 209, 1291, 119, 119, 119, 119, 119, 119, 119, 654, 1039, 1041, 1311, 1087, 653, 1089, 726, 562, 366, 362, 1023, 1050, 1712, 1606, 1351, 833, 2566, 835, 1317, 208, 362, 119, 119, 119, 119, 119, 564, 656, 119, 119, 119, 119, 119, 1271, 119, 119, 209, 812, 208, 1566, 1331, 1583, 366, 1311, 389, 119, 119, 119, 119, 119, 119, 119, 1050, 1334, 1062, 209, 390, 448, 633, 1317, 564, 366, 1074, 120, 1319, 602, 1681, 361, 1600, 1340, 120, 814, 208, 416, 119, 119, 119, 119, 119, 564, 656, 119, 119, 119, 119, 119, 1601, 119, 119, 209, 1320, 208, 1023, 1086, 555, 406, 687, 1334, 119, 119, 119, 119, 119, 119, 119, 449, 1074, 1375, 209, 1611, 448, 1087, 124, 124, 124, 124, 124, 124, 124, 124, 124, 569, 688, 833, 217, 2014, 1358, 119, 119, 119, 119, 119, 1593, 313, 119, 119, 119, 119, 119, 136, 137, 119, 136, 136, 136, 136, 136, 136, 136, 136, 136, 119, 119, 119, 119, 119, 119, 119, 273, 273, 273, 273, 273, 274, 273, 273, 658, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 119, 119, 119, 119, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 119, 119, 366, 119, 119, 119, 119, 119, 119, 1311, 137, 119, 6030, 403, 505, 1612, 366, 1353, 1050, 1691, 1321, 119, 119, 119, 119, 119, 119, 119, 1404, 1354, 1319, 1413, 208, 138, 1321, 726, 1332, 1126, 1421, 659, 1416, 361, 120, 1355, 1410, 1023, 208, 877, 1111, 209, 119, 119, 119, 119, 119, 119, 1320, 119, 119, 119, 119, 119, 119, 209, 119, 119, 812, 1265, 120, 237, 2059, 119, 1326, 378, 1111, 119, 119, 119, 119, 119, 119, 119, 643, 1062, 1425, 899, 1435, 662, 264, 119, 1326, 577, 1404, 1428, 120, 1153, 1567, 1266, 1438, 1494, 814, 1126, 1327, 220, 119, 119, 119, 119, 119, 378, 119, 119, 119, 119, 119, 119, 416, 119, 119, 1442, 1498, 688, 1670, 1575, 378, 1086, 602, 579, 119, 119, 119, 119, 119, 119, 119, 663, 1328, 221, 1958, 220, 662, 645, 579, 1087, 378, 1438, 1494, 264, 6030, 372, 120, 1503, 120, 120, 220, 833, 406, 119, 119, 119, 119, 119, 579, 119, 119, 119, 119, 119, 119, 1356, 119, 119, 1507, 221, 220, 1265, 1006, 569, 1514, 378, 1334, 119, 119, 119, 119, 119, 119, 119, 221, 1074, 604, 1413, 1814, 665, 1485, 1376, 1340, 1344, 1503, 1518, 1416, 1342, 1683, 936, 372, 1266, 1421, 1417, 221, 220, 119, 119, 119, 119, 119, 877, 119, 119, 119, 119, 119, 119, 1423, 119, 119, 1514, 120, 1343, 120, 278, 378, 1695, 120, 1334, 119, 119, 119, 119, 119, 119, 119, 666, 1074, 221, 1421, 645, 665, 120, 1344, 1445, 1489, 264, 247, 877, 1342, 264, 247, 120, 1616, 1492, 220, 120, 120, 119, 119, 119, 277, 277, 416, 278, 277, 277, 277, 277, 277, 1413, 280, 277, 5293, 1962, 1343, 1686, 1917, 1600, 1416, 313, 1413, 277, 277, 277, 277, 277, 277, 277, 221, 1416, 1418, 1425, 1445, 668, 1500, 1601, 1417, 709, 264, 1511, 1428, 1418, 666, 1204, 120, 120, 120, 1429, 1216, 120, 277, 277, 277, 669, 277, 277, 1419, 278, 277, 277, 277, 277, 277, 1425, 280, 277, 1458, 1419, 313, 1682, 1940, 313, 1428, 664, 1425, 277, 277, 277, 277, 277, 277, 277, 670, 1428, 1430, 645, 711, 668, 120, 711, 1429, 264, 2524, 1529, 1533, 1430, 247, 120, 120, 120, 416, 120, 974, 1536, 277, 277, 277, 669, 119, 119, 1431, 119, 119, 119, 119, 119, 119, 1421, 137, 119, 1265, 1431, 1688, 120, 313, 2104, 877, 1435, 1435, 119, 119, 119, 119, 119, 119, 119, 1153, 1153, 1432, 1485, 1489, 672, 711, 1441, 667, 1576, 1617, 4884, 936, 1492, 1266, 1304, 416, 1605, 120, 1487, 1497, 416, 119, 119, 119, 661, 119, 119, 1433, 313, 119, 119, 119, 119, 119, 671, 137, 119, 671, 671, 671, 671, 671, 671, 671, 671, 671, 119, 119, 119, 119, 119, 119, 119, 673, 673, 673, 673, 673, 674, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 119, 119, 119, 661, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 277, 277, 1926, 278, 277, 277, 277, 277, 277, 1293, 277, 277, 313, 313, 119, 1304, 2793, 1608, 1992, 1421, 1435, 277, 277, 277, 277, 277, 277, 277, 877, 1153, 1521, 1521, 119, 677, 1668, 1423, 1441, 247, 1624, 1346, 1432, 1443, 120, 120, 1671, 120, 1485, 1050, 1615, 1350, 277, 277, 277, 277, 277, 936, 278, 277, 277, 277, 277, 277, 1435, 277, 277, 1568, 1433, 1444, 1802, 2524, 416, 1153, 1621, 208, 277, 277, 277, 277, 277, 277, 277, 678, 1449, 1443, 1500, 1450, 677, 1451, 1500, 688, 209, 1452, 1511, 1204, 1453, 1454, 1455, 1204, 1529, 1456, 1506, 1216, 1511, 277, 277, 277, 119, 974, 1517, 1444, 2191, 1216, 416, 119, 1531, 679, 680, 681, 682, 682, 682, 682, 682, 682, 1826, 5583, 416, 1163, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1815, 2197, 273, 119, 119, 1815, 119, 119, 119, 119, 119, 119, 120, 465, 119, 283, 283, 283, 283, 283, 283, 283, 283, 283, 119, 119, 119, 119, 119, 119, 119, 1549, 1549, 1549, 1549, 1549, 138, 1458, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 136, 136, 136, 240, 2062, 120, 119, 119, 119, 119, 277, 277, 120, 287, 277, 277, 277, 277, 277, 667, 280, 277, 684, 684, 684, 684, 684, 684, 684, 684, 684, 290, 277, 277, 277, 277, 277, 277, 685, 685, 685, 685, 685, 686, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669, 684, 684, 684, 684, 684, 684, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 278, 1825, 1815, 1647, 220, 1953, 120, 1815, 6230, 685, 685, 685, 685, 685, 685, 685, 685, 685, 295, 1458, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1474, 1474, 1474, 1474, 1474, 1475, 1476, 1476, 1476, 221, 2501, 688, 120, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 685, 685, 685, 685, 685, 685, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 302, 278, 403, 2511, 1500, 1500, 1511, 687, 687, 687, 687, 687, 690, 1204, 1204, 1216, 1371, 389, 1346, 1628, 1506, 2039, 1517, 1672, 1690, 1508, 1508, 1519, 1631, 390, 726, 119, 119, 687, 687, 687, 687, 687, 687, 688, 688, 688, 688, 688, 688, 688, 688, 688, 302, 119, 119, 1509, 1509, 1520, 1511, 687, 687, 687, 687, 687, 690, 727, 208, 1216, 1533, 217, 1915, 1527, 1565, 602, 1522, 1618, 1265, 1536, 1641, 1519, 1744, 2191, 962, 209, 1537, 688, 688, 688, 688, 688, 688, 691, 692, 692, 692, 692, 692, 692, 692, 692, 485, 1748, 1692, 406, 1753, 1520, 1266, 692, 692, 692, 692, 692, 693, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1651, 1580, 120, 1757, 6233, 1744, 2197, 1926, 120, 1074, 1575, 692, 692, 692, 692, 692, 692, 698, 699, 699, 699, 699, 699, 699, 699, 699, 485, 1597, 1836, 1753, 1533, 1533, 1529, 699, 699, 699, 699, 699, 700, 1536, 1536, 974, 875, 877, 1655, 1598, 1537, 1929, 264, 264, 2040, 1538, 1538, 1658, 120, 120, 416, 120, 1604, 699, 699, 699, 699, 699, 699, 701, 702, 702, 702, 702, 702, 702, 702, 702, 703, 208, 1598, 1539, 1539, 1353, 1624, 702, 702, 702, 702, 702, 704, 2191, 120, 1050, 1926, 1354, 209, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1679, 1597, 555, 1355, 1089, 702, 702, 702, 702, 702, 702, 313, 120, 1619, 1930, 602, 835, 2197, 934, 1598, 707, 708, 708, 708, 708, 708, 708, 708, 708, 709, 120, 120, 1353, 1529, 1529, 208, 708, 708, 708, 708, 708, 710, 974, 974, 1354, 406, 555, 237, 240, 1531, 220, 726, 209, 1675, 1540, 1540, 1685, 1687, 1355, 1642, 1620, 2191, 708, 708, 708, 708, 708, 708, 119, 119, 1599, 119, 119, 119, 119, 119, 119, 220, 465, 119, 1541, 1541, 792, 120, 221, 1326, 1693, 984, 1622, 119, 119, 119, 119, 119, 119, 119, 1244, 1244, 1245, 1039, 1624, 672, 1646, 1326, 1735, 1739, 2197, 1350, 1803, 1050, 2042, 221, 1764, 1126, 1742, 1327, 1626, 120, 119, 119, 119, 661, 729, 730, 730, 730, 730, 730, 730, 730, 730, 508, 1326, 1768, 899, 1628, 1628, 1628, 730, 730, 730, 730, 730, 731, 1631, 1631, 1631, 2524, 877, 1328, 1326, 1632, 1750, 1632, 264, 247, 1633, 1633, 220, 1764, 120, 1416, 1327, 3622, 730, 730, 730, 730, 730, 730, 732, 733, 733, 733, 733, 733, 733, 733, 733, 1326, 1326, 1643, 1634, 1634, 1624, 1624, 733, 733, 733, 733, 733, 734, 221, 1050, 1050, 1771, 1328, 1326, 1326, 1761, 1626, 264, 247, 1577, 1644, 1635, 1635, 120, 1428, 1327, 1327, 1944, 733, 733, 733, 733, 733, 735, 740, 740, 740, 740, 740, 740, 740, 740, 740, 120, 1089, 936, 2106, 1636, 1636, 1651, 740, 740, 740, 740, 740, 741, 835, 120, 1074, 1328, 1328, 1645, 1680, 1609, 1610, 1610, 1609, 1609, 1609, 1609, 1609, 1609, 2320, 569, 6251, 664, 740, 740, 740, 740, 740, 740, 119, 119, 1023, 743, 269, 119, 119, 119, 119, 270, 119, 119, 744, 744, 744, 744, 744, 744, 744, 744, 744, 119, 119, 119, 119, 119, 119, 119, 455, 455, 455, 455, 455, 456, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 119, 119, 119, 119, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 277, 277, 1911, 278, 277, 277, 277, 277, 277, 282, 277, 277, 726, 1673, 120, 120, 1086, 120, 1353, 1651, 1655, 277, 277, 277, 277, 277, 277, 277, 1074, 1658, 1354, 1655, 1965, 464, 1087, 1653, 1659, 1676, 1798, 726, 1658, 1660, 1896, 812, 1355, 1655, 833, 1659, 1651, 1648, 277, 277, 277, 282, 1658, 120, 1735, 1074, 1799, 1773, 1062, 1265, 1777, 1900, 1653, 1126, 1660, 1661, 1153, 1662, 812, 1780, 1737, 120, 775, 778, 778, 814, 778, 779, 778, 778, 778, 778, 780, 778, 778, 1062, 1674, 1896, 1991, 1266, 1661, 1353, 1942, 1663, 778, 778, 778, 778, 778, 778, 778, 1649, 814, 1354, 1086, 1739, 782, 1651, 1948, 1890, 247, 1086, 1960, 602, 1742, 120, 1074, 1355, 1677, 1819, 120, 1747, 1087, 778, 778, 778, 778, 1735, 1662, 1087, 1815, 1950, 455, 1838, 833, 1815, 1126, 1963, 1266, 120, 1797, 833, 1492, 406, 1750, 783, 366, 1678, 1356, 1694, 1822, 416, 120, 1416, 1663, 794, 795, 795, 795, 795, 795, 795, 795, 795, 562, 1815, 2177, 120, 416, 899, 1823, 795, 795, 795, 795, 795, 796, 604, 1731, 1731, 1731, 1731, 1731, 1732, 1733, 1733, 1733, 1841, 1966, 2191, 1916, 120, 1968, 209, 120, 120, 1845, 795, 795, 795, 795, 795, 795, 797, 798, 798, 798, 798, 798, 798, 798, 798, 1962, 120, 2177, 2057, 2197, 120, 120, 798, 798, 798, 798, 798, 799, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 120, 1750, 6254, 220, 2015, 1558, 1919, 209, 936, 1750, 1416, 798, 798, 798, 798, 798, 800, 378, 1416, 1794, 120, 2177, 1758, 416, 1795, 1756, 815, 816, 816, 816, 816, 816, 816, 816, 816, 577, 1920, 221, 2177, 2199, 1353, 1761, 816, 816, 816, 816, 816, 817, 1759, 877, 1428, 1761, 2045, 1771, 1773, 264, 1023, 1767, 1750, 264, 1428, 120, 1970, 1153, 416, 120, 1355, 1416, 816, 816, 816, 816, 816, 816, 1756, 416, 1824, 1971, 416, 1758, 2208, 221, 818, 819, 819, 819, 819, 819, 819, 819, 819, 1815, 120, 120, 2515, 1761, 1815, 1761, 819, 819, 819, 819, 819, 820, 1428, 1759, 1428, 1023, 936, 899, 1777, 1767, 1773, 1847, 1773, 247, 1769, 1461, 1769, 1780, 120, 1153, 1850, 1153, 819, 819, 819, 819, 819, 821, 1775, 1782, 1855, 1784, 1838, 237, 1859, 221, 232, 120, 2228, 1204, 1770, 1492, 1770, 1862, 2058, 592, 592, 592, 592, 592, 592, 592, 592, 592, 593, 1783, 416, 1785, 2658, 2177, 1869, 124, 124, 124, 2224, 2688, 120, 119, 119, 1216, 119, 119, 119, 119, 119, 119, 124, 249, 119, 124, 124, 124, 124, 124, 124, 124, 124, 124, 119, 119, 119, 119, 119, 119, 264, 417, 417, 417, 417, 417, 418, 417, 417, 858, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 119, 119, 119, 119, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 119, 119, 1820, 119, 119, 119, 119, 119, 119, 1873, 249, 119, 313, 1558, 1925, 1023, 3472, 208, 1876, 1777, 1777, 119, 119, 119, 119, 119, 119, 119, 1780, 1780, 972, 2191, 1821, 250, 209, 1781, 1781, 120, 120, 859, 1782, 120, 120, 1815, 1920, 1994, 1855, 313, 1815, 1265, 119, 119, 119, 119, 119, 1204, 860, 861, 862, 863, 863, 863, 863, 863, 863, 974, 1783, 1838, 569, 1847, 416, 119, 2055, 2177, 2197, 2177, 1492, 120, 1850, 1266, 417, 119, 119, 1844, 119, 119, 119, 119, 119, 119, 1852, 620, 119, 420, 420, 420, 420, 420, 420, 420, 420, 420, 119, 119, 119, 119, 119, 119, 119, 1847, 1805, 1893, 1999, 1806, 250, 1807, 1853, 1941, 1850, 1808, 1536, 1631, 1809, 1810, 1811, 1851, 5590, 1812, 1773, 120, 2191, 119, 119, 119, 119, 119, 119, 1153, 119, 119, 119, 119, 119, 119, 1775, 249, 119, 2053, 2213, 1784, 208, 1993, 2187, 1089, 1855, 1859, 255, 119, 119, 119, 119, 119, 264, 1204, 1862, 835, 120, 209, 266, 120, 1857, 1863, 726, 1891, 2019, 1785, 136, 136, 136, 136, 136, 136, 136, 136, 136, 119, 119, 119, 257, 119, 119, 120, 119, 119, 119, 119, 119, 119, 220, 249, 119, 2056, 220, 727, 2063, 656, 120, 2321, 1847, 1859, 259, 119, 119, 119, 119, 119, 264, 1850, 1862, 1869, 962, 2524, 266, 903, 1851, 1863, 2016, 2185, 1216, 1852, 1864, 2177, 221, 2002, 664, 1871, 221, 1995, 220, 119, 119, 119, 257, 864, 865, 865, 865, 865, 865, 865, 865, 865, 631, 313, 2006, 1853, 1865, 1859, 1855, 865, 865, 865, 865, 865, 866, 208, 1862, 1204, 1873, 120, 1913, 1903, 221, 664, 1857, 4887, 2020, 1876, 1864, 1866, 2002, 2027, 209, 120, 1877, 865, 865, 865, 865, 865, 865, 867, 868, 868, 868, 868, 868, 868, 868, 868, 869, 2177, 2031, 2177, 1865, 1867, 1855, 868, 868, 868, 868, 868, 870, 208, 1124, 1204, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 120, 120, 1866, 2027, 2356, 209, 313, 1967, 868, 868, 868, 868, 868, 868, 873, 874, 874, 874, 874, 874, 874, 874, 874, 875, 974, 1598, 1996, 3480, 1867, 264, 874, 874, 874, 874, 874, 876, 120, 120, 2270, 416, 1126, 3507, 3072, 1792, 1793, 1793, 1792, 1792, 1792, 1792, 1792, 1792, 120, 2178, 120, 688, 874, 874, 874, 874, 874, 874, 119, 119, 120, 119, 119, 119, 119, 119, 119, 2024, 119, 119, 313, 313, 656, 120, 2305, 2181, 1658, 1873, 1873, 119, 119, 119, 119, 119, 119, 264, 1876, 1876, 974, 1903, 903, 432, 5599, 1877, 881, 247, 247, 1869, 1878, 1878, 120, 120, 120, 602, 656, 1933, 1216, 4009, 119, 119, 119, 882, 883, 883, 883, 883, 883, 883, 883, 883, 643, 416, 903, 120, 1879, 1879, 1869, 883, 883, 883, 883, 883, 884, 406, 1893, 1216, 389, 2186, 2896, 664, 664, 120, 1871, 1536, 2067, 2043, 1931, 1880, 390, 2070, 1899, 726, 1997, 883, 883, 883, 883, 883, 883, 885, 886, 886, 886, 886, 886, 886, 886, 886, 656, 1126, 1023, 2236, 664, 1881, 1893, 886, 886, 886, 886, 886, 887, 120, 792, 1536, 416, 2902, 903, 2373, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 2232, 416, 1039, 2191, 886, 886, 886, 886, 886, 888, 119, 119, 120, 119, 895, 119, 119, 119, 119, 120, 119, 119, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 119, 119, 119, 119, 119, 119, 119, 403, 664, 2108, 1938, 2197, 653, 2188, 602, 1265, 2066, 2329, 1742, 1458, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 119, 119, 119, 119, 119, 5151, 119, 895, 119, 119, 119, 119, 120, 119, 119, 406, 1266, 656, 1266, 664, 120, 366, 656, 1869, 119, 119, 119, 119, 119, 119, 119, 654, 1216, 1947, 1999, 903, 653, 1893, 2068, 1048, 903, 2348, 1575, 1631, 1880, 2190, 1536, 2246, 120, 120, 2005, 208, 120, 119, 119, 119, 119, 119, 1901, 656, 119, 119, 119, 119, 119, 2111, 119, 119, 209, 2214, 1881, 120, 1926, 2242, 2115, 2048, 1934, 119, 119, 119, 119, 119, 119, 119, 1902, 664, 1959, 2177, 2658, 448, 664, 2269, 2856, 2049, 2177, 900, 1905, 1905, 1905, 1905, 1905, 1906, 1907, 1907, 1907, 2050, 119, 119, 119, 119, 119, 2315, 313, 119, 119, 119, 119, 119, 136, 137, 119, 136, 136, 136, 136, 136, 136, 136, 136, 136, 119, 119, 119, 119, 119, 119, 119, 273, 273, 273, 273, 273, 274, 273, 273, 273, 273, 273, 901, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 119, 119, 119, 119, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 119, 119, 1086, 857, 119, 119, 119, 119, 119, 2191, 137, 119, 217, 2191, 2051, 2452, 2160, 2198, 656, 1893, 1087, 119, 119, 119, 119, 119, 119, 119, 1536, 2117, 2125, 120, 833, 138, 2354, 1899, 903, 2164, 2120, 1416, 1901, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 119, 119, 119, 119, 119, 119, 1918, 119, 119, 119, 119, 119, 119, 2160, 119, 119, 1902, 2360, 687, 2257, 656, 2052, 1597, 1999, 2304, 903, 119, 119, 119, 119, 119, 119, 1631, 2024, 1126, 2129, 664, 662, 903, 1087, 1598, 247, 1658, 247, 2132, 2253, 120, 555, 120, 2030, 1999, 833, 120, 1935, 119, 119, 119, 119, 119, 1631, 119, 119, 119, 119, 119, 119, 2005, 119, 119, 1965, 120, 2007, 2369, 2182, 1229, 1229, 1229, 2108, 903, 119, 119, 119, 119, 119, 119, 663, 1742, 2139, 664, 1265, 662, 1599, 1962, 2114, 366, 2303, 1428, 2008, 1945, 1946, 1946, 1945, 1945, 1945, 1945, 1945, 1945, 119, 119, 119, 119, 119, 1050, 656, 119, 119, 119, 119, 119, 1266, 119, 119, 120, 1712, 208, 1311, 1311, 1311, 1712, 2117, 2125, 903, 119, 119, 119, 119, 119, 119, 2120, 1416, 2143, 209, 2191, 665, 6323, 2121, 2127, 366, 2306, 2146, 1973, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 119, 119, 119, 119, 119, 1050, 656, 119, 119, 119, 119, 119, 1023, 119, 119, 237, 1304, 208, 2504, 2197, 555, 2197, 2423, 2129, 903, 119, 119, 119, 119, 119, 119, 666, 2132, 2157, 209, 120, 665, 726, 2021, 2133, 366, 120, 1780, 1973, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 119, 119, 119, 277, 277, 2009, 278, 277, 277, 277, 277, 277, 1023, 280, 277, 812, 2364, 208, 2179, 3922, 120, 1353, 120, 2180, 906, 277, 277, 277, 277, 277, 277, 120, 1062, 1354, 209, 416, 668, 2317, 1976, 1977, 1977, 1976, 1976, 1976, 1976, 1976, 1976, 1355, 1926, 814, 2046, 2485, 2183, 277, 277, 277, 669, 277, 277, 1023, 278, 277, 277, 277, 277, 277, 1999, 280, 277, 1334, 1334, 1334, 2184, 366, 1353, 1631, 366, 2044, 906, 277, 277, 277, 277, 277, 277, 670, 1354, 2007, 2139, 656, 668, 1050, 2316, 1151, 2009, 2326, 120, 1428, 361, 264, 1355, 361, 664, 208, 2141, 120, 208, 277, 277, 277, 669, 277, 277, 2008, 278, 277, 277, 277, 277, 277, 209, 277, 277, 209, 2370, 2054, 2372, 602, 1265, 2300, 2024, 2216, 906, 277, 277, 277, 277, 277, 277, 1658, 1492, 664, 3923, 1089, 677, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 569, 835, 1023, 406, 1266, 120, 664, 277, 277, 277, 119, 119, 2069, 119, 119, 119, 119, 119, 119, 1973, 137, 119, 2011, 2011, 2011, 2011, 2011, 2012, 2013, 2013, 2013, 903, 119, 119, 119, 119, 119, 119, 120, 2327, 2757, 1023, 208, 672, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2191, 120, 6326, 120, 2024, 120, 209, 119, 119, 119, 661, 119, 119, 1658, 119, 119, 119, 119, 119, 119, 2030, 137, 119, 2396, 2386, 2032, 2500, 2427, 2422, 2386, 2689, 2143, 903, 119, 119, 119, 119, 119, 119, 907, 2146, 1926, 1346, 2197, 672, 2174, 2502, 2147, 2484, 2314, 2197, 2033, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 119, 119, 119, 661, 119, 119, 120, 313, 119, 119, 119, 119, 119, 671, 137, 119, 671, 671, 671, 671, 671, 671, 671, 671, 671, 903, 119, 119, 119, 119, 119, 119, 673, 673, 673, 673, 673, 674, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 119, 119, 119, 661, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 277, 277, 1326, 278, 277, 277, 277, 277, 277, 455, 277, 277, 416, 1558, 1919, 1560, 1558, 1919, 2018, 2325, 1326, 906, 277, 277, 277, 277, 277, 277, 678, 2157, 2216, 2220, 1327, 677, 2024, 2017, 1326, 726, 1780, 1492, 2223, 120, 2307, 1658, 1920, 2163, 2218, 1920, 1327, 2569, 277, 277, 277, 119, 119, 2032, 119, 119, 119, 119, 119, 119, 2117, 910, 119, 120, 1328, 1023, 812, 313, 313, 2120, 6329, 2402, 119, 119, 119, 119, 119, 119, 119, 2033, 1328, 2122, 1611, 1062, 138, 1202, 1204, 2022, 2036, 2036, 2036, 2036, 2036, 2037, 2038, 2038, 2038, 120, 120, 2655, 814, 119, 119, 119, 119, 277, 277, 2123, 287, 277, 277, 277, 277, 277, 667, 280, 277, 916, 916, 916, 916, 916, 916, 916, 916, 916, 917, 277, 277, 277, 277, 277, 277, 918, 918, 918, 918, 918, 919, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669, 916, 916, 916, 916, 916, 916, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 278, 1350, 240, 3045, 2896, 2507, 120, 2488, 3046, 918, 918, 918, 918, 918, 918, 918, 918, 918, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2041, 2041, 2041, 2041, 2041, 2041, 2041, 2041, 124, 124, 124, 124, 124, 124, 124, 124, 124, 1435, 1435, 1435, 120, 2655, 2902, 120, 918, 918, 918, 918, 918, 918, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 378, 378, 378, 2655, 2108, 2117, 2220, 687, 687, 687, 687, 687, 690, 1742, 2120, 2223, 2230, 1153, 1072, 1074, 1074, 2121, 2227, 264, 416, 1850, 2122, 372, 416, 120, 220, 220, 220, 687, 687, 687, 687, 687, 687, 688, 688, 688, 688, 688, 688, 688, 688, 688, 120, 378, 378, 2357, 2123, 2125, 2129, 687, 687, 687, 687, 687, 690, 664, 1416, 2132, 221, 221, 221, 2034, 2034, 2240, 2133, 2655, 2583, 403, 372, 2134, 3020, 416, 1862, 220, 220, 688, 688, 688, 688, 688, 688, 921, 922, 922, 922, 922, 922, 922, 922, 922, 923, 313, 2579, 120, 2129, 2135, 2125, 922, 922, 922, 922, 922, 924, 2132, 1153, 1416, 2567, 221, 221, 2249, 264, 247, 2127, 2251, 2591, 2134, 120, 2136, 1511, 1511, 1511, 120, 1876, 922, 922, 922, 922, 922, 922, 928, 929, 929, 929, 929, 929, 929, 929, 929, 485, 2393, 2587, 2135, 2125, 2137, 2143, 929, 929, 929, 929, 929, 930, 1416, 1153, 2146, 2386, 120, 2167, 2273, 264, 2394, 2147, 2524, 264, 2136, 120, 2148, 1536, 416, 120, 378, 313, 929, 929, 929, 929, 929, 929, 932, 933, 933, 933, 933, 933, 933, 933, 933, 934, 1074, 1214, 2137, 2785, 2149, 2139, 933, 933, 933, 933, 933, 935, 220, 120, 1428, 569, 2157, 2216, 2230, 2277, 120, 2240, 2143, 5584, 2395, 1780, 1492, 1850, 2280, 416, 1862, 2146, 933, 933, 933, 933, 933, 933, 313, 2386, 416, 416, 416, 2148, 2386, 416, 221, 937, 938, 938, 938, 938, 938, 938, 938, 938, 313, 119, 313, 2601, 2655, 2139, 2139, 938, 938, 938, 938, 938, 939, 2149, 1428, 1428, 2167, 664, 1204, 119, 1216, 2141, 264, 247, 2859, 247, 2150, 2150, 120, 2597, 120, 313, 120, 938, 938, 938, 938, 938, 940, 943, 944, 944, 944, 944, 944, 944, 944, 944, 709, 1204, 313, 2612, 2151, 2151, 2157, 944, 944, 944, 944, 944, 945, 120, 2230, 1780, 416, 2430, 664, 2434, 2260, 2503, 2163, 1850, 2358, 3366, 1631, 2165, 2437, 2608, 2235, 208, 120, 944, 944, 944, 944, 944, 944, 946, 947, 947, 947, 947, 947, 947, 947, 947, 209, 2512, 2425, 237, 2157, 2166, 120, 947, 947, 947, 947, 947, 948, 1780, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 655, 3372, 2165, 120, 2652, 2656, 2653, 2654, 406, 2306, 947, 947, 947, 947, 947, 949, 966, 967, 967, 967, 967, 967, 967, 967, 967, 508, 120, 120, 2166, 120, 2655, 2666, 967, 967, 967, 967, 967, 968, 2169, 2169, 2169, 2169, 2169, 2170, 2171, 2171, 2171, 2171, 2171, 2171, 2171, 2171, 2171, 2171, 2171, 2171, 2658, 208, 967, 967, 967, 967, 967, 967, 970, 971, 971, 971, 971, 971, 971, 971, 971, 972, 209, 120, 5170, 2230, 2230, 2240, 971, 971, 971, 971, 971, 973, 1850, 1850, 1862, 2390, 726, 664, 2462, 2235, 2466, 2245, 2426, 2655, 2237, 2237, 2386, 1658, 120, 2469, 313, 2386, 971, 971, 971, 971, 971, 971, 980, 980, 980, 980, 980, 980, 980, 980, 980, 727, 1216, 602, 2238, 2238, 2251, 2271, 980, 980, 980, 980, 980, 981, 120, 1876, 2655, 416, 962, 2174, 2175, 2175, 2175, 2175, 2175, 2175, 2175, 2175, 2175, 120, 416, 3480, 2896, 406, 980, 980, 980, 980, 980, 980, 984, 120, 2298, 2298, 2298, 2298, 2298, 2298, 120, 985, 985, 985, 985, 985, 985, 985, 985, 985, 119, 2273, 3507, 2513, 2508, 120, 2902, 664, 119, 119, 1536, 119, 269, 119, 119, 119, 119, 270, 119, 119, 313, 313, 602, 208, 2657, 416, 2424, 2240, 2240, 119, 119, 119, 119, 119, 119, 119, 1862, 1862, 2249, 1216, 209, 456, 220, 2245, 2658, 247, 247, 998, 2247, 2247, 120, 120, 406, 2514, 2698, 2667, 1304, 4799, 119, 119, 119, 119, 119, 119, 2397, 119, 269, 119, 119, 119, 119, 270, 119, 119, 2248, 2248, 221, 2386, 389, 2489, 2693, 2457, 2386, 119, 119, 119, 119, 119, 119, 119, 390, 664, 313, 2780, 1265, 456, 2174, 2176, 2176, 2176, 2176, 2176, 2176, 2176, 2176, 2176, 6336, 2251, 2784, 1023, 2260, 2273, 119, 119, 119, 119, 1876, 247, 120, 2571, 1536, 1023, 120, 2256, 1266, 899, 1611, 2275, 1742, 726, 2328, 1001, 1004, 1004, 2403, 1004, 1005, 1004, 1004, 1004, 1004, 1006, 1004, 1004, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 792, 208, 120, 2915, 120, 1008, 2428, 2189, 2189, 2189, 2189, 2189, 2189, 2189, 2189, 2189, 2666, 1039, 209, 120, 2773, 899, 1004, 1004, 1004, 1004, 778, 778, 120, 778, 778, 778, 778, 778, 778, 1024, 778, 778, 2794, 220, 2861, 2668, 2453, 120, 2048, 2251, 2251, 778, 778, 778, 778, 778, 778, 778, 1876, 1876, 2277, 2655, 1712, 1026, 220, 2256, 2049, 1712, 2655, 2280, 2258, 2258, 656, 2361, 2362, 120, 2281, 221, 2050, 2562, 778, 778, 778, 778, 778, 778, 2363, 778, 778, 778, 778, 778, 778, 2454, 778, 778, 2259, 2259, 221, 2361, 2362, 2756, 1490, 2430, 1492, 778, 778, 778, 778, 778, 778, 778, 1631, 2363, 120, 119, 120, 1029, 2261, 2261, 2261, 2261, 2261, 2262, 2263, 2263, 2263, 555, 120, 120, 2430, 3924, 416, 119, 778, 778, 778, 778, 778, 1631, 778, 778, 778, 778, 778, 778, 2432, 778, 778, 2263, 2263, 2263, 2263, 2263, 2263, 2263, 2263, 2263, 778, 778, 778, 778, 778, 778, 778, 1030, 1558, 2790, 2896, 3012, 1029, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 664, 2805, 2434, 2575, 2318, 2462, 2571, 778, 778, 778, 366, 2437, 2578, 220, 1658, 1742, 2902, 1920, 2438, 1042, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 562, 569, 416, 1266, 2277, 2277, 2273, 1043, 1043, 1043, 1043, 1043, 1044, 2280, 2280, 1536, 1712, 664, 1414, 221, 2281, 1712, 2275, 2458, 264, 2282, 2282, 2284, 2563, 209, 120, 120, 5835, 1043, 1043, 1043, 1043, 1043, 1043, 1046, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1048, 2391, 1023, 2283, 2283, 2285, 2782, 1047, 1047, 1047, 1047, 1047, 1049, 1229, 1229, 1229, 1229, 1229, 1229, 1229, 1229, 1229, 2658, 2273, 2798, 2826, 120, 2878, 2048, 120, 2665, 2392, 1536, 1047, 1047, 1047, 1047, 1047, 1047, 378, 2819, 2494, 2386, 899, 2284, 2827, 2049, 2386, 1066, 1067, 1067, 1067, 1067, 1067, 1067, 1067, 1067, 577, 2050, 2049, 2803, 2655, 1023, 2655, 1067, 1067, 1067, 1067, 1067, 1068, 2285, 2050, 2493, 2703, 1492, 2290, 2291, 2292, 2293, 2293, 2293, 2293, 2293, 2293, 1086, 2884, 120, 664, 2585, 416, 1067, 1067, 1067, 1067, 1067, 1067, 120, 2120, 2496, 2704, 2951, 2048, 1087, 221, 1070, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1072, 833, 2997, 120, 2713, 2585, 2049, 1071, 1071, 1071, 1071, 1071, 1073, 2495, 2120, 2498, 3096, 1304, 2050, 1089, 1166, 1167, 1167, 1166, 1166, 1166, 1166, 1166, 1166, 416, 2714, 835, 1346, 1071, 1071, 1071, 1071, 1071, 1071, 119, 119, 120, 119, 119, 119, 119, 119, 119, 1098, 119, 119, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 119, 119, 119, 119, 119, 119, 119, 2595, 1089, 2462, 2374, 2801, 1100, 2375, 120, 2376, 2132, 2360, 1658, 2377, 835, 664, 2378, 2379, 2380, 2464, 2499, 2381, 6342, 119, 119, 119, 119, 119, 119, 2872, 119, 119, 119, 119, 119, 119, 124, 249, 119, 124, 124, 124, 124, 124, 124, 124, 124, 124, 119, 119, 119, 119, 119, 119, 264, 417, 417, 417, 417, 417, 418, 417, 417, 417, 417, 417, 1112, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 119, 119, 119, 119, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 119, 119, 2725, 857, 119, 119, 119, 119, 119, 1023, 249, 119, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 119, 119, 119, 119, 119, 119, 119, 2726, 2828, 2882, 208, 1023, 250, 1973, 2382, 2382, 2382, 2382, 2382, 2382, 2382, 2382, 2382, 2819, 2741, 2383, 416, 209, 2819, 119, 119, 119, 119, 119, 119, 1023, 119, 119, 119, 119, 119, 119, 2606, 1113, 119, 1326, 2883, 1023, 220, 1326, 2742, 2146, 2434, 2434, 119, 119, 119, 119, 119, 119, 119, 2437, 2437, 1326, 2668, 1712, 250, 1326, 2438, 2620, 1712, 2624, 2671, 2439, 2439, 1327, 2093, 2560, 1780, 1327, 2627, 2455, 2974, 119, 119, 119, 119, 1118, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 631, 726, 6348, 2440, 2440, 2430, 2430, 1119, 1119, 1119, 1119, 1119, 1120, 1328, 1631, 1631, 2456, 1328, 1416, 2691, 2702, 2432, 2896, 1023, 264, 2703, 2441, 2441, 2223, 2402, 120, 726, 812, 1119, 1119, 1119, 1119, 1119, 1119, 1122, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1124, 1062, 2896, 2704, 2442, 2442, 2466, 1123, 1123, 1123, 1123, 1123, 1125, 2902, 812, 2469, 2466, 2565, 814, 2706, 2459, 2718, 2470, 2766, 2460, 2469, 1023, 2471, 1850, 2902, 1862, 1062, 2470, 1123, 1123, 1123, 1123, 1123, 1123, 1127, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 814, 2762, 416, 2885, 2466, 2472, 264, 1128, 1128, 1128, 1128, 1128, 1129, 2469, 2571, 2575, 6354, 1712, 120, 2734, 1492, 2096, 1712, 1742, 2578, 2471, 2097, 247, 1876, 120, 2573, 2582, 120, 1128, 1128, 1128, 1128, 1128, 1130, 1133, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 875, 313, 3236, 2472, 2462, 2462, 2585, 1134, 1134, 1134, 1134, 1134, 1135, 1658, 1658, 2120, 3010, 2604, 2858, 1534, 2464, 2760, 2590, 264, 2561, 2473, 2473, 1712, 664, 120, 2280, 120, 1712, 1134, 1134, 1134, 1134, 1134, 1134, 1136, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 2095, 3070, 2823, 2474, 2474, 2595, 2606, 1137, 1137, 1137, 1137, 1137, 1138, 2819, 2132, 2146, 1023, 4246, 2819, 2383, 2384, 2384, 2384, 2384, 2384, 2384, 2384, 2384, 2384, 416, 416, 2896, 120, 1137, 1137, 1137, 1137, 1137, 1139, 119, 119, 1023, 119, 119, 119, 119, 119, 119, 2309, 119, 119, 2564, 2876, 1712, 1265, 1353, 2789, 2877, 1712, 2585, 119, 119, 119, 119, 119, 119, 264, 1354, 2120, 120, 3290, 1416, 432, 2092, 2902, 2590, 1353, 264, 1144, 2904, 2592, 1355, 2490, 120, 1266, 1086, 416, 2492, 1354, 119, 119, 119, 1145, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 643, 1355, 1087, 1168, 2585, 2593, 3324, 1146, 1146, 1146, 1146, 1146, 1147, 2120, 833, 1416, 2804, 2604, 2795, 2913, 2497, 264, 247, 264, 247, 2592, 664, 120, 1356, 120, 2939, 313, 2796, 1146, 1146, 1146, 1146, 1146, 1146, 1149, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1151, 1536, 2940, 2593, 2931, 2620, 2691, 1150, 1150, 1150, 1150, 1150, 1152, 120, 1780, 2223, 120, 416, 664, 2383, 2385, 2385, 2385, 2385, 2385, 2385, 2385, 2385, 2385, 416, 416, 120, 3421, 1150, 1150, 1150, 1150, 1150, 1150, 119, 119, 1023, 119, 119, 119, 119, 119, 119, 2595, 249, 119, 120, 2829, 2819, 2998, 313, 313, 2132, 2819, 2595, 119, 119, 119, 119, 119, 119, 264, 1265, 2132, 2602, 3000, 120, 266, 1536, 2769, 2600, 2334, 2335, 2335, 2334, 2334, 2334, 2334, 2334, 2334, 120, 120, 1426, 416, 119, 119, 119, 257, 264, 2486, 2603, 2950, 1266, 3024, 120, 1350, 2552, 2953, 2487, 2487, 2487, 2487, 2487, 2487, 2487, 2487, 2487, 120, 6360, 1159, 119, 119, 3366, 119, 119, 119, 119, 119, 119, 120, 249, 119, 2553, 406, 208, 1712, 119, 120, 3016, 2606, 1712, 119, 119, 119, 119, 119, 119, 264, 2146, 2862, 2559, 209, 120, 266, 119, 2611, 2447, 2448, 2449, 2450, 2450, 2450, 2450, 2450, 2450, 3372, 1558, 1919, 1428, 899, 119, 119, 119, 257, 264, 2595, 2862, 208, 2306, 120, 120, 1160, 119, 119, 2132, 119, 895, 119, 119, 119, 119, 2600, 119, 119, 209, 2799, 2602, 1920, 120, 664, 2786, 2620, 2624, 119, 119, 119, 119, 119, 119, 119, 1780, 2627, 2797, 3428, 2819, 653, 2835, 2622, 2628, 2819, 664, 1162, 2603, 2479, 2480, 2481, 2482, 2482, 2482, 2482, 2482, 2482, 119, 119, 119, 119, 119, 2999, 1168, 119, 119, 119, 119, 119, 220, 119, 119, 2616, 2616, 2616, 2616, 2616, 2616, 2616, 2616, 2616, 119, 119, 119, 119, 119, 119, 119, 1428, 2896, 1428, 4527, 2615, 448, 264, 247, 264, 2903, 264, 247, 120, 217, 120, 221, 120, 416, 1023, 6363, 4528, 2972, 119, 119, 119, 119, 119, 2914, 1169, 119, 119, 119, 119, 119, 136, 137, 119, 136, 136, 136, 136, 136, 136, 136, 136, 136, 119, 119, 119, 119, 119, 119, 119, 273, 273, 273, 273, 273, 274, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 119, 119, 119, 119, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 119, 119, 3050, 119, 119, 119, 119, 119, 119, 2957, 119, 119, 3323, 3051, 2312, 416, 120, 120, 2437, 2606, 2606, 903, 119, 119, 119, 119, 119, 119, 2146, 2146, 208, 1674, 2615, 662, 2624, 2611, 1353, 2982, 264, 1172, 2613, 2613, 2491, 2627, 120, 2963, 2469, 209, 1354, 3011, 119, 119, 119, 119, 119, 2629, 656, 119, 119, 119, 119, 119, 1355, 119, 119, 2954, 2614, 2614, 2970, 4635, 2830, 2959, 2975, 2691, 903, 119, 119, 119, 119, 119, 119, 2630, 2223, 2819, 2524, 120, 665, 3332, 2819, 2697, 1326, 208, 1173, 2616, 2616, 2616, 2616, 2616, 2617, 2618, 2618, 2618, 1327, 119, 119, 119, 119, 119, 209, 1171, 119, 119, 119, 119, 119, 119, 119, 119, 2618, 2618, 2618, 2618, 2618, 2618, 2618, 2618, 2618, 119, 119, 119, 119, 119, 119, 119, 1023, 4894, 1328, 6462, 120, 454, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 2712, 2865, 120, 3043, 2624, 2713, 2880, 119, 119, 119, 119, 119, 119, 2627, 119, 119, 119, 119, 119, 119, 2628, 137, 119, 120, 2724, 2629, 2881, 3044, 2865, 2725, 2706, 2714, 903, 119, 119, 119, 119, 119, 119, 1850, 2643, 2988, 3192, 2644, 672, 2645, 2708, 1174, 2917, 2646, 2922, 2630, 2647, 2648, 2649, 2726, 3019, 2650, 5838, 2927, 120, 119, 119, 119, 661, 119, 119, 2984, 313, 119, 119, 119, 119, 119, 671, 137, 119, 671, 671, 671, 671, 671, 671, 671, 671, 671, 903, 119, 119, 119, 119, 119, 119, 673, 673, 673, 673, 673, 674, 673, 673, 673, 673, 673, 1175, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 119, 119, 119, 661, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 277, 277, 3098, 954, 277, 277, 277, 277, 277, 2620, 280, 277, 1292, 695, 120, 3173, 313, 1023, 1780, 2706, 2718, 906, 277, 277, 277, 277, 277, 277, 1850, 1862, 2631, 2734, 389, 668, 1536, 3001, 2720, 237, 120, 2718, 1876, 247, 2879, 416, 390, 3015, 120, 2736, 1862, 2896, 277, 277, 277, 669, 119, 119, 2632, 119, 119, 119, 119, 119, 119, 416, 910, 119, 679, 679, 679, 679, 679, 679, 679, 679, 679, 119, 119, 119, 119, 119, 119, 119, 120, 119, 119, 6466, 2902, 138, 2902, 2637, 2638, 2639, 2640, 2640, 2640, 2640, 2640, 2640, 1761, 1761, 1761, 119, 119, 3182, 119, 119, 119, 119, 119, 119, 120, 119, 119, 119, 119, 119, 119, 2977, 910, 119, 679, 679, 679, 679, 679, 679, 679, 679, 679, 119, 119, 119, 119, 119, 119, 119, 2760, 120, 2800, 2802, 3911, 138, 3100, 2740, 220, 2280, 664, 664, 2741, 1265, 726, 2578, 2765, 3366, 2995, 2620, 3107, 2331, 119, 119, 119, 119, 119, 119, 1780, 656, 119, 119, 119, 119, 119, 2622, 119, 119, 2742, 2896, 2631, 220, 221, 1266, 3372, 727, 3102, 903, 119, 119, 119, 119, 119, 119, 2758, 2734, 2760, 2863, 2864, 665, 120, 3343, 962, 313, 1876, 2280, 2632, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 221, 119, 119, 119, 416, 416, 2769, 2902, 2863, 2864, 1712, 240, 120, 247, 2902, 3193, 1266, 3095, 120, 3018, 1180, 277, 277, 3202, 287, 277, 277, 277, 277, 277, 667, 280, 277, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 917, 277, 277, 277, 277, 277, 277, 1182, 1182, 1182, 1182, 1182, 1183, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669, 1181, 1181, 1181, 1181, 1181, 1181, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 119, 119, 1265, 1184, 119, 119, 119, 119, 119, 119, 119, 119, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 119, 119, 119, 119, 119, 119, 119, 416, 2048, 3006, 3411, 1266, 454, 2174, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 3070, 1740, 2957, 2049, 1087, 2806, 119, 119, 119, 119, 278, 2437, 120, 120, 1575, 2050, 833, 120, 2962, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 2755, 2755, 2755, 2755, 2755, 2755, 2755, 2755, 2755, 2770, 2770, 2770, 2770, 2770, 2770, 2770, 2770, 2770, 2770, 2770, 2770, 2770, 2770, 2771, 2772, 2772, 2772, 664, 664, 664, 664, 4916, 3366, 1182, 1182, 1182, 1182, 1182, 1182, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 119, 119, 3372, 119, 119, 119, 119, 119, 119, 661, 119, 119, 1186, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 923, 119, 119, 119, 119, 119, 119, 1187, 1187, 1187, 1187, 1187, 1188, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 119, 119, 119, 661, 1187, 1187, 1187, 1187, 1187, 1187, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 1171, 220, 667, 667, 667, 667, 6469, 3366, 1742, 701, 702, 702, 702, 702, 702, 702, 702, 702, 703, 3008, 120, 3112, 2706, 2706, 2718, 702, 702, 702, 702, 702, 704, 1850, 1850, 1862, 220, 221, 2978, 1089, 2708, 3115, 2720, 3122, 2973, 2715, 2715, 2727, 3372, 3113, 2120, 835, 2824, 702, 702, 702, 702, 702, 702, 1191, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 934, 3123, 221, 2716, 2716, 2728, 2718, 1192, 1192, 1192, 1192, 1192, 1193, 416, 2825, 1862, 2772, 2772, 2772, 2772, 2772, 2772, 2772, 2772, 2772, 2819, 688, 2727, 3134, 3976, 2819, 378, 366, 1192, 1192, 1192, 1192, 1192, 1192, 1194, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1196, 1656, 1629, 1815, 1815, 2728, 3135, 1195, 1195, 1195, 1195, 1195, 1197, 220, 208, 1815, 1815, 2773, 2870, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 3366, 1815, 1815, 209, 1353, 1195, 1195, 1195, 1195, 1195, 1195, 313, 120, 1815, 1815, 602, 1354, 2870, 2871, 221, 1200, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1202, 1355, 3150, 3372, 2734, 2734, 2760, 1201, 1201, 1201, 1201, 1201, 1203, 1876, 1876, 2280, 406, 1742, 6475, 3025, 2736, 3127, 2765, 3143, 247, 2743, 2743, 2767, 3151, 120, 2132, 366, 2146, 1201, 1201, 1201, 1201, 1201, 1201, 1208, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 709, 1631, 3166, 2744, 2744, 2768, 2760, 1209, 1209, 1209, 1209, 1209, 1210, 208, 1742, 2280, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2927, 120, 2767, 3162, 416, 209, 366, 366, 1209, 1209, 1209, 1209, 1209, 1209, 1212, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1214, 1631, 2966, 3247, 2917, 2768, 2922, 1213, 1213, 1213, 1213, 1213, 1215, 208, 208, 2927, 555, 2524, 2773, 416, 2293, 2293, 2293, 2293, 2293, 2774, 2290, 2290, 2290, 3248, 209, 209, 120, 1213, 1213, 1213, 1213, 1213, 1213, 119, 119, 120, 119, 269, 119, 119, 119, 119, 270, 119, 119, 3111, 2935, 1815, 1815, 3184, 3112, 726, 1353, 208, 119, 119, 119, 119, 119, 119, 119, 2952, 2867, 1778, 1354, 120, 456, 1023, 4893, 264, 209, 3160, 1222, 1815, 1815, 120, 3113, 3003, 1355, 120, 2627, 3189, 812, 119, 119, 119, 119, 277, 277, 2867, 954, 277, 277, 277, 277, 277, 1023, 277, 277, 1062, 3183, 3433, 3121, 120, 3178, 2980, 2957, 3122, 906, 277, 277, 277, 277, 277, 277, 2437, 814, 6479, 3433, 2773, 677, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 555, 3366, 1023, 3123, 1893, 1893, 1893, 277, 277, 277, 119, 119, 120, 119, 119, 119, 119, 119, 119, 120, 465, 119, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 903, 119, 119, 119, 119, 119, 119, 3433, 3187, 3187, 3384, 3316, 672, 3185, 2778, 2778, 2778, 2778, 2778, 2778, 2778, 2778, 2778, 120, 3510, 1346, 4850, 120, 120, 119, 119, 119, 661, 277, 277, 120, 278, 277, 277, 277, 277, 277, 3480, 280, 277, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 906, 277, 277, 277, 277, 277, 277, 2982, 2887, 3176, 3207, 2888, 668, 2889, 3177, 3238, 2469, 2890, 3210, 2982, 2891, 2892, 2893, 2987, 2223, 2894, 2048, 378, 2469, 277, 277, 277, 669, 1228, 1229, 1229, 1229, 1229, 1229, 1229, 1229, 1229, 972, 569, 2049, 1658, 3254, 1716, 3480, 1229, 1229, 1229, 1229, 1229, 1230, 1712, 2050, 220, 3523, 3005, 1265, 2928, 2928, 2928, 2928, 2928, 2929, 2930, 2930, 2930, 2927, 2099, 3255, 726, 726, 1229, 1229, 1229, 1229, 1229, 1229, 1231, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1266, 221, 2917, 857, 2922, 3193, 2836, 1232, 1232, 1232, 1232, 1232, 1233, 2927, 792, 812, 3205, 1947, 3207, 3366, 2936, 3002, 3133, 2955, 2979, 1023, 1575, 3134, 3193, 3211, 1023, 1039, 1062, 1232, 1232, 1232, 1232, 1232, 1234, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 3433, 814, 2937, 1353, 3261, 3135, 1483, 1240, 1240, 1240, 1240, 1240, 1241, 247, 378, 1354, 3372, 3442, 120, 2874, 2875, 2875, 2874, 2874, 2874, 2874, 2874, 2874, 2048, 1355, 3262, 3193, 1658, 1240, 1240, 1240, 1240, 1240, 1240, 1247, 1023, 1086, 3004, 3179, 220, 1265, 2049, 569, 687, 687, 687, 687, 687, 687, 687, 687, 687, 3149, 2050, 1087, 3190, 3191, 3150, 3269, 687, 687, 687, 687, 687, 690, 2807, 833, 2493, 2808, 416, 2809, 3293, 2957, 221, 2810, 3007, 120, 2811, 2812, 2813, 2280, 2437, 2814, 3151, 3270, 687, 687, 687, 687, 687, 687, 119, 119, 2964, 119, 269, 119, 119, 119, 119, 270, 119, 119, 2967, 2967, 2967, 2967, 2967, 2968, 2969, 2969, 2969, 119, 119, 119, 119, 119, 119, 119, 2965, 1999, 1999, 1999, 120, 456, 3446, 2886, 2886, 2886, 2886, 2886, 2886, 2886, 2886, 2886, 3374, 3455, 1255, 6483, 1023, 5049, 119, 119, 119, 119, 1004, 1004, 1023, 1265, 1004, 1004, 1004, 1004, 1004, 1267, 1004, 1004, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 3188, 3188, 3188, 3383, 3433, 1269, 2383, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 1023, 3366, 2024, 2024, 2024, 120, 1004, 1004, 1004, 1004, 1004, 1004, 1023, 1265, 1004, 1004, 1004, 1004, 1004, 1023, 1004, 1004, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 3372, 3978, 3372, 1023, 3433, 1272, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2927, 3434, 120, 3100, 3984, 6071, 3433, 1004, 1004, 1004, 1004, 1004, 2578, 1265, 1004, 1004, 1004, 1004, 1004, 3106, 1004, 1004, 3212, 120, 378, 1023, 366, 366, 378, 378, 3215, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1273, 2917, 3592, 2922, 1658, 1272, 1631, 2966, 2991, 2991, 3321, 372, 2927, 361, 361, 372, 220, 120, 208, 208, 220, 220, 1004, 1004, 1004, 688, 688, 688, 688, 688, 688, 688, 688, 688, 416, 209, 209, 1275, 2932, 1716, 2957, 687, 687, 687, 687, 687, 690, 1712, 3115, 2437, 221, 3090, 120, 3749, 221, 221, 2962, 2120, 1111, 3280, 2933, 2964, 3300, 1712, 3117, 2934, 1023, 688, 688, 688, 688, 688, 688, 119, 119, 1688, 1278, 119, 119, 119, 119, 119, 119, 119, 119, 3281, 1023, 2965, 3301, 3443, 120, 1326, 2982, 2982, 119, 119, 119, 119, 119, 119, 119, 2469, 2469, 3127, 1780, 3169, 454, 3441, 2987, 1326, 264, 264, 2132, 2989, 2989, 3333, 120, 120, 120, 3129, 3100, 1327, 1023, 119, 119, 119, 119, 277, 277, 2578, 278, 277, 277, 277, 277, 277, 3480, 277, 277, 2990, 2990, 3246, 2976, 3342, 416, 120, 3247, 3115, 906, 277, 277, 277, 277, 277, 277, 1328, 2120, 3507, 4027, 2524, 677, 2992, 2992, 2992, 2992, 2992, 2993, 2994, 2994, 2994, 3418, 416, 3248, 3420, 6292, 120, 3066, 277, 277, 277, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 1284, 1285, 1285, 1023, 1286, 1285, 1285, 1285, 1285, 1285, 3420, 1285, 1285, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1289, 1285, 1285, 1285, 1285, 1285, 1285, 1780, 3433, 3366, 1716, 2486, 1290, 264, 247, 1558, 3327, 3373, 1712, 120, 2487, 2487, 2487, 2487, 2487, 2487, 2487, 2487, 2487, 1285, 1285, 1285, 778, 778, 1712, 778, 778, 778, 778, 778, 778, 120, 778, 778, 3253, 1304, 1920, 6487, 1089, 3254, 1265, 3525, 3115, 778, 778, 778, 778, 778, 778, 778, 835, 2120, 416, 1716, 3604, 1294, 3067, 3260, 3117, 3009, 1716, 1712, 3261, 3124, 3419, 3255, 120, 2098, 1712, 120, 1266, 3068, 778, 778, 778, 778, 778, 1712, 778, 778, 778, 778, 778, 778, 1712, 778, 778, 3180, 3262, 3125, 3419, 313, 120, 3354, 3607, 3115, 778, 778, 778, 778, 778, 778, 778, 1295, 2120, 1780, 1716, 3181, 1294, 1848, 3268, 264, 3169, 3593, 1712, 3269, 3124, 120, 264, 247, 416, 120, 3069, 6508, 120, 778, 778, 778, 778, 778, 1712, 1297, 778, 778, 778, 778, 778, 3489, 778, 778, 313, 3270, 3125, 3610, 313, 1265, 3492, 3127, 3127, 1298, 778, 778, 778, 778, 778, 778, 2132, 2132, 1850, 1716, 3143, 1029, 1850, 3129, 726, 1023, 2096, 1712, 3136, 2146, 120, 2097, 416, 120, 120, 1266, 3145, 416, 778, 778, 778, 778, 778, 1712, 1297, 778, 778, 778, 778, 778, 1023, 778, 778, 416, 3137, 727, 3291, 3433, 313, 3433, 3348, 1023, 1298, 778, 778, 778, 778, 778, 778, 1030, 1265, 1716, 962, 1716, 1029, 3437, 1850, 3143, 2816, 1712, 2096, 1712, 3439, 247, 3088, 2097, 2146, 3089, 120, 3160, 3238, 778, 778, 778, 366, 1712, 3034, 1712, 2627, 2223, 1266, 416, 3440, 1310, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1048, 416, 416, 1023, 3127, 3143, 3143, 1311, 1311, 1311, 1311, 1311, 1312, 2132, 2146, 2146, 3617, 3279, 3299, 3664, 3550, 3145, 3280, 3300, 1265, 3136, 3152, 3152, 3444, 209, 3665, 3511, 217, 1311, 1311, 1311, 1311, 1311, 1311, 1313, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 3281, 3301, 2191, 3137, 3153, 3153, 1266, 1314, 1314, 1314, 1314, 1314, 1315, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 120, 3160, 3522, 3427, 6514, 3352, 2191, 209, 1265, 3160, 2627, 1314, 1314, 1314, 1314, 1314, 1316, 378, 2627, 313, 1023, 313, 3167, 4068, 3524, 3165, 1333, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1072, 313, 3263, 1266, 1860, 120, 3238, 1334, 1334, 1334, 1334, 1334, 1335, 3168, 120, 2223, 120, 3446, 3293, 3263, 1023, 3091, 3240, 3092, 3350, 3453, 247, 2280, 3526, 1712, 1265, 120, 3093, 1334, 1334, 1334, 1334, 1334, 1334, 3094, 208, 120, 416, 3749, 3351, 1712, 221, 1336, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 3435, 209, 1265, 416, 1266, 3436, 3602, 1337, 1337, 1337, 1337, 1337, 1338, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3171, 3172, 3172, 3172, 2842, 1266, 1337, 1337, 1337, 1337, 1337, 1339, 3353, 3160, 3385, 2524, 220, 220, 313, 221, 119, 119, 2627, 1368, 119, 119, 119, 119, 119, 3165, 1369, 119, 3394, 3657, 3167, 3392, 1862, 3041, 3627, 3402, 3293, 119, 119, 119, 119, 119, 119, 119, 120, 2280, 221, 221, 2852, 1370, 3394, 3555, 3295, 3658, 313, 3403, 3168, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 119, 119, 119, 119, 119, 119, 1862, 1368, 119, 119, 119, 119, 119, 247, 1369, 119, 3456, 3659, 120, 1265, 313, 1089, 3660, 3494, 3459, 119, 119, 119, 119, 119, 119, 119, 3500, 835, 3425, 120, 3590, 1372, 1862, 3186, 3186, 3186, 3186, 3186, 3186, 3186, 3186, 3186, 1265, 1266, 120, 2191, 2524, 416, 119, 119, 119, 661, 119, 119, 120, 1368, 119, 119, 119, 119, 119, 3530, 1369, 119, 4523, 313, 1265, 1576, 3355, 3630, 2437, 2191, 1266, 119, 119, 119, 119, 119, 119, 119, 1373, 313, 3480, 3271, 3173, 1372, 2640, 2640, 2640, 2640, 2640, 2640, 2640, 2640, 2640, 120, 1266, 3349, 1023, 1874, 3454, 2524, 119, 119, 119, 661, 1381, 120, 313, 3507, 313, 120, 3173, 1382, 2640, 2640, 2640, 2640, 2640, 3174, 2637, 2637, 2637, 313, 1346, 3446, 3271, 1383, 1876, 1384, 3579, 1385, 3346, 247, 1386, 120, 3433, 3347, 120, 1387, 120, 3282, 1388, 3433, 1389, 4885, 1390, 120, 1391, 1392, 1393, 119, 119, 120, 119, 119, 119, 119, 119, 119, 3173, 3480, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 3454, 119, 119, 119, 119, 119, 119, 119, 1350, 3507, 3749, 3507, 120, 1397, 3582, 3188, 3188, 3188, 3188, 3188, 3188, 3188, 3188, 3188, 656, 3456, 2157, 2157, 2157, 3920, 119, 119, 119, 119, 119, 119, 120, 857, 119, 119, 119, 119, 119, 124, 249, 119, 124, 124, 124, 124, 124, 124, 124, 124, 124, 119, 119, 119, 119, 119, 119, 264, 417, 417, 417, 417, 417, 418, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 119, 119, 119, 119, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 119, 3422, 4265, 3536, 2524, 120, 120, 119, 3537, 1399, 1400, 1401, 1402, 1402, 1402, 1402, 1402, 1402, 2240, 2240, 2240, 6296, 726, 3978, 119, 119, 119, 3422, 119, 119, 119, 119, 119, 119, 3538, 1113, 119, 860, 860, 860, 860, 860, 860, 860, 860, 860, 119, 119, 119, 119, 119, 119, 119, 792, 3528, 3985, 1023, 120, 250, 3272, 3272, 3272, 3272, 3272, 3272, 3272, 3272, 3272, 3337, 120, 1039, 208, 1350, 4853, 899, 119, 119, 119, 119, 119, 119, 3473, 119, 119, 119, 119, 119, 119, 209, 1113, 119, 860, 860, 860, 860, 860, 860, 860, 860, 860, 119, 119, 119, 119, 119, 119, 119, 3753, 3753, 3527, 3599, 120, 250, 3272, 3272, 3272, 3272, 3272, 3273, 3274, 3274, 3274, 3366, 3480, 2251, 2251, 2251, 120, 656, 119, 119, 119, 119, 1403, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1124, 3749, 3537, 3749, 3394, 120, 3507, 1404, 1404, 1404, 1404, 1404, 1405, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3222, 1292, 3372, 3566, 3405, 3394, 1023, 3538, 3225, 3372, 3394, 3749, 1404, 1404, 1404, 1404, 1404, 1404, 1406, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1408, 6548, 3567, 3926, 3438, 119, 120, 1407, 1407, 1407, 1407, 1407, 1409, 3274, 3274, 3274, 3274, 3274, 3274, 3274, 3274, 3274, 3283, 3283, 3283, 3283, 3283, 3283, 3283, 3283, 3283, 3580, 313, 1407, 1407, 1407, 1407, 1407, 1407, 1412, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1414, 313, 1876, 120, 3293, 3394, 264, 1413, 1413, 1413, 1413, 1413, 1415, 2280, 120, 3559, 3399, 416, 3756, 1876, 3295, 3489, 120, 6555, 2469, 3302, 247, 3394, 3581, 3774, 3492, 120, 3394, 1413, 1413, 1413, 1413, 1413, 1413, 1420, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 875, 313, 3594, 3303, 3293, 3394, 3489, 1421, 1421, 1421, 1421, 1421, 1422, 2280, 3406, 3492, 403, 3508, 2920, 3282, 3489, 2524, 3497, 3565, 3603, 3302, 247, 3394, 3566, 3492, 120, 120, 3394, 1421, 1421, 1421, 1421, 1421, 1421, 1424, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1426, 3629, 6587, 3303, 3749, 3687, 3567, 1425, 1425, 1425, 1425, 1425, 1427, 3283, 3283, 3283, 3283, 3283, 3284, 3285, 3285, 3285, 3285, 3285, 3285, 3285, 3285, 3285, 3285, 3285, 3285, 3688, 3530, 1425, 1425, 1425, 1425, 1425, 1425, 119, 119, 2437, 857, 119, 119, 119, 119, 119, 3532, 119, 119, 3289, 3289, 3289, 3289, 3289, 3289, 3289, 3289, 3289, 119, 119, 119, 119, 119, 119, 264, 3754, 3754, 3754, 1089, 6019, 432, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 835, 3591, 120, 120, 2524, 120, 120, 119, 119, 119, 1434, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1151, 664, 656, 4214, 3317, 4515, 3749, 1435, 1435, 1435, 1435, 1435, 1436, 664, 664, 664, 664, 664, 664, 664, 664, 664, 903, 3426, 3749, 2773, 2191, 2290, 2290, 2290, 2290, 2290, 2290, 1435, 1435, 1435, 1435, 1435, 1435, 1437, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 120, 3426, 3676, 3619, 2191, 3489, 3530, 1438, 1438, 1438, 1438, 1438, 1439, 2524, 3492, 2437, 3925, 1558, 1919, 3598, 3309, 3310, 3311, 3312, 3312, 3312, 3312, 3312, 3312, 3509, 555, 237, 120, 1438, 1438, 1438, 1438, 1438, 1440, 119, 119, 120, 119, 119, 119, 119, 119, 119, 1920, 249, 119, 4206, 6574, 120, 3325, 120, 120, 3601, 2524, 389, 119, 119, 119, 119, 119, 119, 264, 3583, 3480, 240, 3551, 390, 266, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 220, 3625, 3909, 3694, 3559, 3489, 3400, 119, 119, 119, 257, 3507, 120, 2469, 3492, 1446, 119, 119, 3507, 119, 119, 119, 119, 119, 119, 3394, 249, 119, 569, 3695, 6587, 3204, 602, 1326, 221, 120, 3401, 119, 119, 119, 119, 119, 119, 264, 2666, 1265, 1597, 3394, 3508, 266, 3880, 1326, 3394, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 406, 1327, 1598, 1712, 119, 119, 119, 257, 3609, 247, 3394, 3672, 120, 1266, 120, 3749, 3750, 3404, 120, 2836, 120, 6630, 1447, 119, 119, 220, 857, 895, 119, 119, 119, 119, 3394, 119, 119, 1328, 3620, 3394, 6550, 1575, 120, 3554, 3530, 120, 119, 119, 119, 119, 119, 119, 119, 2437, 3552, 3675, 2524, 1265, 653, 120, 3532, 221, 373, 3817, 3621, 3539, 3344, 3345, 3345, 3344, 3344, 3344, 3344, 3344, 3344, 119, 119, 119, 119, 119, 4006, 119, 119, 119, 119, 119, 119, 1266, 119, 119, 120, 3540, 2104, 6630, 664, 3944, 1111, 1265, 3559, 119, 119, 119, 119, 119, 119, 119, 1463, 2469, 3678, 1464, 2524, 1465, 3701, 3752, 3561, 1466, 2524, 2578, 1467, 1468, 1469, 2531, 3357, 1470, 3043, 3358, 2534, 3359, 119, 119, 119, 3360, 3623, 3970, 3361, 3362, 3363, 120, 3702, 3364, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3044, 1023, 1471, 119, 119, 1023, 857, 119, 119, 119, 119, 119, 1023, 119, 119, 3484, 3485, 3486, 3487, 3487, 3487, 3487, 3487, 3487, 903, 119, 119, 119, 119, 119, 119, 2524, 1712, 3727, 3673, 1265, 662, 664, 6575, 3052, 1712, 4027, 2627, 4027, 3356, 3356, 3356, 3356, 3356, 3356, 3356, 3356, 3356, 119, 119, 119, 119, 119, 3624, 1168, 119, 119, 119, 119, 119, 1266, 119, 119, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 903, 119, 119, 119, 119, 119, 119, 120, 3978, 3632, 120, 2970, 665, 2447, 2447, 2447, 2447, 2447, 2447, 3430, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 119, 119, 119, 119, 119, 208, 119, 119, 119, 119, 119, 119, 1023, 137, 119, 3899, 3749, 2524, 3985, 4190, 2524, 2524, 209, 3749, 903, 119, 119, 119, 119, 119, 119, 2531, 3045, 3709, 6630, 6587, 672, 3046, 120, 4215, 3633, 2920, 1472, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3492, 119, 119, 119, 661, 119, 119, 3710, 1169, 119, 119, 119, 119, 119, 671, 137, 119, 671, 671, 671, 671, 671, 671, 671, 671, 671, 903, 119, 119, 119, 119, 119, 119, 673, 673, 673, 673, 673, 674, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 119, 119, 119, 661, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 119, 119, 3720, 313, 119, 119, 119, 119, 119, 3978, 137, 119, 2024, 2024, 2024, 2024, 2024, 2024, 2024, 2024, 2024, 119, 119, 119, 119, 119, 119, 119, 3721, 119, 6587, 6587, 3775, 138, 3430, 3432, 3432, 3432, 3432, 3432, 3432, 3432, 3432, 3432, 120, 3987, 3985, 119, 3985, 1023, 119, 119, 119, 119, 119, 119, 1023, 313, 119, 119, 119, 119, 119, 857, 137, 119, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 119, 119, 119, 119, 119, 119, 119, 4025, 4026, 3908, 5308, 3996, 138, 3756, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3734, 3430, 2524, 4024, 120, 1023, 119, 119, 119, 119, 119, 119, 1023, 1477, 119, 119, 119, 119, 119, 3755, 119, 119, 2524, 1023, 3686, 1023, 3735, 3778, 120, 3687, 3628, 903, 119, 119, 119, 119, 119, 119, 3782, 4525, 664, 3048, 2920, 665, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3492, 3044, 3688, 4821, 3756, 6552, 217, 119, 119, 119, 277, 277, 3759, 287, 277, 277, 277, 277, 277, 667, 280, 277, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 917, 277, 277, 277, 277, 277, 277, 1479, 1479, 1479, 1479, 1479, 1480, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669, 1478, 1478, 1478, 1478, 1478, 1478, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 278, 3693, 857, 3978, 3978, 3034, 3694, 1353, 2048, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 2920, 1354, 3499, 3499, 3499, 3499, 3499, 3499, 2049, 3778, 3760, 3492, 3678, 3585, 3695, 1355, 1712, 2096, 3764, 3778, 2050, 2578, 2097, 3783, 1712, 3674, 3587, 3781, 3680, 3985, 4211, 3786, 3985, 1479, 1479, 1479, 1479, 1479, 1479, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 119, 119, 1326, 119, 119, 119, 119, 119, 119, 3530, 119, 119, 1023, 3828, 1023, 6587, 6748, 726, 2437, 1023, 1326, 119, 119, 119, 119, 119, 119, 119, 1482, 1086, 3539, 1464, 1327, 1465, 4722, 4027, 4027, 1466, 3553, 3829, 1467, 1468, 1469, 3620, 726, 1470, 3559, 1087, 812, 3556, 119, 119, 119, 4027, 2524, 2469, 3540, 3783, 2118, 833, 3589, 2524, 3561, 3631, 264, 1062, 1328, 3568, 3787, 3621, 120, 4797, 1471, 119, 119, 812, 119, 119, 119, 119, 119, 119, 814, 119, 119, 3040, 602, 3626, 3837, 6832, 2048, 120, 1062, 3569, 923, 119, 119, 119, 119, 119, 119, 3559, 3586, 3557, 416, 2120, 662, 3788, 2049, 814, 2469, 264, 3678, 120, 3838, 3791, 406, 120, 3918, 1086, 2050, 2578, 3568, 119, 119, 119, 1484, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 934, 416, 1087, 3846, 2221, 3927, 3978, 1485, 1485, 1485, 1485, 1485, 1486, 3569, 833, 604, 120, 3588, 2120, 3798, 2223, 3700, 3608, 3803, 264, 247, 3701, 3802, 1356, 3847, 120, 3806, 120, 1485, 1485, 1485, 1485, 1485, 1485, 1488, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1490, 3708, 3978, 3985, 3702, 3727, 3709, 1489, 1489, 1489, 1489, 1489, 1491, 3719, 2627, 3859, 2223, 3873, 3720, 3546, 3547, 3548, 3549, 3549, 3549, 3549, 3549, 3549, 120, 416, 3985, 416, 3710, 1489, 1489, 1489, 1489, 1489, 1489, 313, 208, 3860, 3733, 3874, 3721, 4595, 3886, 3734, 1493, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 209, 120, 3952, 3905, 2524, 3893, 3727, 1494, 1494, 1494, 1494, 1494, 1495, 2120, 3703, 2627, 3735, 3703, 2130, 264, 264, 247, 3729, 264, 264, 120, 120, 3944, 416, 120, 120, 3894, 120, 1494, 1494, 1494, 1494, 1494, 1496, 1499, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1202, 899, 3912, 4886, 688, 3952, 3727, 1500, 1500, 1500, 1500, 1500, 1501, 2132, 2132, 2627, 2132, 3711, 1265, 264, 264, 247, 264, 264, 247, 120, 120, 3736, 120, 120, 3954, 416, 120, 1500, 1500, 1500, 1500, 1500, 1500, 1502, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1266, 3823, 3978, 6815, 120, 3737, 3828, 1503, 1503, 1503, 1503, 1503, 1504, 3711, 2144, 2146, 2146, 1023, 3722, 264, 264, 264, 264, 247, 264, 120, 120, 120, 120, 3985, 120, 4013, 3829, 1503, 1503, 1503, 1503, 1503, 1505, 1510, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1214, 3832, 4867, 4069, 1023, 237, 3837, 1511, 1511, 1511, 1511, 1511, 1512, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3713, 3714, 3714, 3714, 4027, 3838, 1511, 1511, 1511, 1511, 1511, 1511, 1513, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 3841, 1558, 3913, 3944, 4029, 3846, 2223, 1514, 1514, 1514, 1514, 1514, 1515, 247, 3953, 4041, 2524, 6817, 120, 4043, 3575, 3576, 3577, 3578, 3578, 3578, 3578, 3578, 3578, 1265, 4047, 3847, 1920, 1514, 1514, 1514, 1514, 1514, 1516, 277, 277, 220, 278, 277, 277, 277, 277, 277, 1523, 280, 277, 2995, 120, 2479, 2479, 2479, 2479, 2479, 2479, 1266, 906, 277, 277, 277, 277, 277, 277, 2595, 2595, 2595, 6815, 5582, 668, 1265, 220, 221, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 1575, 4191, 313, 313, 277, 277, 277, 669, 1528, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 972, 1266, 1265, 2278, 2280, 4028, 221, 1529, 1529, 1529, 1529, 1529, 1530, 2146, 3722, 120, 120, 120, 3854, 264, 264, 247, 3868, 3859, 3931, 120, 120, 3873, 416, 1023, 6817, 4534, 1266, 1529, 1529, 1529, 1529, 1529, 1529, 1532, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1534, 3860, 1265, 4199, 2524, 3874, 3931, 1533, 1533, 1533, 1533, 1533, 1535, 3723, 3723, 3723, 3723, 3723, 3723, 3723, 3723, 3723, 3723, 3723, 3723, 3723, 3723, 3724, 3725, 3725, 3725, 4222, 1266, 1533, 1533, 1533, 1533, 1533, 1533, 1542, 1543, 1544, 1545, 1545, 1545, 1545, 1545, 1545, 664, 3892, 2606, 2606, 2606, 3939, 3893, 733, 733, 733, 733, 733, 737, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 726, 3894, 733, 733, 733, 733, 733, 733, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 313, 1023, 120, 6885, 3727, 119, 4076, 1546, 1546, 1546, 1546, 1546, 1547, 2627, 727, 1353, 1023, 3887, 3895, 1448, 3729, 3584, 4646, 119, 1265, 3736, 1265, 1354, 2306, 1265, 120, 962, 4133, 1546, 1546, 1546, 1546, 1546, 1546, 119, 119, 1355, 119, 269, 119, 119, 119, 119, 270, 119, 119, 3737, 313, 6887, 1266, 120, 1266, 4007, 4027, 1266, 119, 119, 119, 119, 119, 119, 119, 3907, 2372, 120, 2280, 2666, 456, 3743, 3744, 3745, 3746, 3746, 3746, 3746, 3746, 3746, 120, 3931, 5615, 416, 899, 120, 3931, 119, 119, 119, 119, 4029, 120, 3916, 4076, 3931, 1550, 687, 687, 687, 687, 687, 687, 687, 687, 687, 1265, 3904, 3904, 3904, 3904, 3904, 3904, 687, 687, 687, 687, 687, 690, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 120, 3944, 3954, 2760, 2760, 2760, 120, 3798, 1266, 3951, 3957, 687, 687, 687, 687, 687, 687, 1552, 1557, 1557, 1558, 119, 1559, 1557, 1557, 1557, 1557, 1560, 1557, 1557, 3173, 3204, 2637, 2637, 2637, 2637, 2637, 2637, 4087, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 120, 3492, 4516, 6885, 3931, 1562, 1111, 120, 3751, 3751, 3751, 3751, 3751, 3751, 3751, 3751, 3751, 899, 4869, 3386, 3978, 240, 1557, 1557, 1557, 1557, 2306, 3973, 3986, 120, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 1563, 4007, 1564, 119, 119, 1265, 119, 269, 119, 119, 119, 119, 270, 119, 119, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 119, 119, 119, 119, 119, 119, 119, 120, 313, 4134, 313, 1266, 456, 3754, 3754, 3754, 3754, 3754, 3754, 3754, 3754, 3754, 3476, 3476, 3476, 1265, 2280, 3494, 3895, 119, 119, 119, 119, 247, 120, 247, 3500, 6887, 120, 120, 120, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 1023, 3931, 1574, 1004, 1004, 1266, 1265, 1004, 1004, 1004, 1004, 1004, 120, 1004, 1004, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 3204, 4027, 4029, 4027, 3776, 1578, 3931, 664, 3931, 3072, 4038, 3193, 4535, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 3777, 1004, 1004, 1004, 1004, 1004, 2524, 1265, 1004, 1004, 1004, 1004, 1004, 120, 1004, 1004, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1579, 4638, 4217, 5598, 1265, 1578, 3896, 3896, 3896, 3896, 3896, 3897, 3898, 3898, 3898, 120, 120, 120, 120, 2957, 2957, 2957, 1004, 1004, 1004, 1004, 1004, 4008, 1581, 1004, 1004, 1004, 1004, 1004, 1266, 1004, 1004, 3898, 3898, 3898, 3898, 3898, 3898, 3898, 3898, 3898, 1582, 1004, 1004, 1004, 1004, 1004, 1004, 4536, 4008, 4433, 4196, 3899, 1272, 3312, 3312, 3312, 3312, 3312, 3312, 3312, 3312, 3312, 1265, 4264, 3931, 6885, 3072, 120, 3932, 1004, 1004, 1004, 1004, 1004, 120, 1581, 1004, 1004, 1004, 1004, 1004, 4343, 1004, 1004, 4076, 120, 1265, 4152, 1265, 1265, 1265, 4111, 1266, 1582, 1004, 1004, 1004, 1004, 1004, 1004, 1273, 4623, 1023, 120, 3899, 1272, 3312, 3312, 3312, 3312, 3312, 3900, 3309, 3309, 3309, 1576, 1266, 217, 1266, 1266, 1266, 5595, 1004, 1004, 1004, 119, 119, 120, 119, 119, 119, 119, 119, 119, 119, 119, 119, 4647, 6887, 6815, 1265, 3935, 3941, 1265, 1265, 3936, 119, 119, 119, 119, 119, 119, 119, 3940, 4007, 4011, 4144, 3899, 454, 3309, 3309, 3309, 3309, 3309, 3309, 3309, 3309, 3309, 1265, 2842, 1266, 4043, 2666, 1266, 1266, 119, 119, 119, 119, 4046, 120, 1265, 4145, 2658, 3978, 1585, 688, 688, 688, 688, 688, 688, 688, 688, 688, 3977, 2658, 4113, 1266, 3942, 3392, 4349, 687, 687, 687, 687, 687, 690, 3931, 3933, 2658, 1266, 3971, 4048, 3934, 3931, 4070, 2852, 2524, 3937, 6817, 4051, 4889, 2658, 4075, 120, 4091, 3985, 688, 688, 688, 688, 688, 688, 3985, 4094, 1586, 119, 119, 3938, 119, 119, 119, 119, 119, 119, 1462, 119, 119, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 119, 119, 119, 119, 119, 119, 119, 1482, 1462, 1462, 1464, 1462, 1465, 1462, 1462, 1462, 1466, 1462, 1462, 1467, 1468, 1469, 1588, 1589, 1470, 1462, 1462, 1462, 1462, 119, 119, 119, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1590, 1462, 1462, 1462, 1462, 1462, 1471, 1462, 1462, 1462, 1462, 1462, 1462, 277, 277, 1265, 278, 277, 277, 277, 277, 277, 2658, 280, 277, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 4243, 906, 277, 277, 277, 277, 277, 277, 1265, 3997, 3070, 4012, 1266, 668, 120, 1023, 2658, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 2920, 4087, 4087, 4096, 277, 277, 277, 669, 120, 3997, 3492, 3492, 1266, 6815, 1591, 277, 277, 4089, 278, 277, 277, 277, 277, 277, 4102, 277, 277, 4027, 4597, 3998, 4174, 4175, 2524, 4157, 4027, 4604, 906, 277, 277, 277, 277, 277, 277, 4091, 4015, 220, 4104, 4016, 677, 4017, 4096, 4076, 4094, 4018, 4087, 4107, 4019, 4020, 4021, 4099, 120, 4022, 4112, 3492, 4881, 277, 277, 277, 3430, 4023, 4023, 4023, 4023, 4023, 4023, 4023, 4023, 4023, 4100, 221, 4351, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 1023, 4355, 1596, 1285, 1285, 5946, 1602, 1285, 1285, 1285, 1285, 1285, 1023, 1285, 1285, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1603, 1285, 1285, 1285, 1285, 1285, 1285, 4040, 4076, 4113, 1304, 3454, 1290, 2982, 2982, 2982, 4100, 4118, 6648, 4135, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 1285, 1285, 1285, 778, 778, 4165, 778, 1607, 778, 778, 778, 778, 1023, 778, 778, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 1346, 778, 778, 778, 778, 778, 778, 778, 4166, 4173, 120, 1089, 120, 1294, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 835, 120, 4822, 4189, 6817, 220, 2524, 778, 778, 778, 778, 778, 4136, 778, 1607, 778, 778, 778, 778, 4930, 778, 778, 4083, 4083, 4083, 4083, 4083, 4084, 4085, 4085, 4085, 778, 778, 778, 778, 778, 778, 778, 1295, 221, 4852, 4200, 208, 1294, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 403, 120, 4150, 4104, 5578, 6815, 209, 778, 778, 778, 778, 778, 4107, 1297, 778, 778, 778, 778, 778, 4108, 778, 778, 4143, 217, 4109, 208, 4192, 4144, 4137, 2666, 4104, 1298, 778, 778, 778, 778, 778, 778, 4087, 4107, 208, 4164, 209, 1029, 726, 1350, 4165, 3492, 3595, 1613, 4110, 4109, 120, 4145, 4176, 5523, 4194, 209, 2524, 237, 778, 778, 778, 778, 778, 366, 1297, 778, 778, 778, 778, 778, 4166, 778, 778, 792, 2531, 4110, 4138, 366, 366, 2534, 1089, 2435, 1298, 778, 778, 778, 778, 778, 778, 5561, 1039, 4622, 835, 208, 1029, 2437, 4146, 4195, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 208, 208, 4153, 209, 778, 778, 778, 4061, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 209, 209, 4188, 237, 4203, 3070, 1614, 366, 366, 4198, 4185, 1023, 4154, 378, 778, 220, 1623, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1048, 2437, 366, 2049, 3604, 4249, 2467, 1624, 1624, 1624, 1624, 1624, 1625, 208, 240, 2050, 555, 220, 220, 120, 2437, 3490, 6817, 6815, 221, 4518, 4714, 361, 4722, 209, 209, 726, 208, 1624, 1624, 1624, 1624, 1624, 1624, 1627, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1629, 209, 366, 221, 221, 3604, 4177, 1628, 1628, 1628, 1628, 1628, 1630, 4202, 812, 4351, 4356, 4158, 389, 4533, 4146, 602, 4216, 4354, 4362, 2524, 3070, 361, 4238, 664, 390, 1062, 208, 1628, 1628, 1628, 1628, 1628, 1628, 1637, 1638, 1639, 1640, 1640, 1640, 1640, 1640, 1640, 814, 209, 4171, 406, 2524, 4220, 4253, 798, 798, 798, 798, 798, 802, 4147, 4147, 4147, 4147, 4147, 4148, 4149, 4149, 4149, 1716, 1716, 120, 220, 120, 664, 6817, 209, 4239, 1712, 1353, 798, 798, 798, 798, 798, 798, 378, 3070, 4178, 4204, 6578, 1354, 5007, 1712, 1712, 1650, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1072, 1355, 221, 4864, 4591, 3655, 4251, 1651, 1651, 1651, 1651, 1651, 1652, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4364, 120, 1651, 1651, 1651, 1651, 1651, 1651, 4367, 1326, 378, 378, 378, 378, 120, 221, 1654, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1656, 1326, 1326, 2469, 4167, 2469, 2469, 1655, 1655, 1655, 1655, 1655, 1657, 372, 1327, 220, 220, 220, 220, 1326, 569, 3070, 4383, 4155, 3160, 3160, 3160, 5158, 1023, 4252, 4386, 1327, 726, 1655, 1655, 1655, 1655, 1655, 1655, 1664, 1665, 1666, 1667, 1667, 1667, 1667, 1667, 1667, 1328, 221, 221, 221, 221, 3658, 4156, 819, 819, 819, 819, 819, 823, 2048, 5308, 812, 3070, 1328, 4168, 4168, 4168, 4168, 4168, 4169, 4170, 4170, 4170, 4184, 3664, 2576, 2578, 2049, 1062, 819, 819, 819, 819, 819, 819, 4242, 2524, 120, 120, 2050, 4159, 1086, 221, 119, 119, 814, 119, 119, 119, 119, 119, 119, 3070, 119, 119, 602, 4276, 2524, 3045, 1087, 3666, 2524, 378, 3046, 119, 119, 119, 119, 119, 119, 119, 833, 4737, 4205, 4187, 4218, 1370, 2578, 6905, 4248, 4167, 4741, 4277, 3045, 247, 406, 3047, 372, 3046, 120, 4221, 4388, 220, 119, 119, 119, 119, 119, 119, 4391, 1368, 119, 119, 119, 119, 119, 3070, 1369, 119, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 119, 119, 119, 119, 119, 119, 119, 1689, 221, 3070, 4356, 4254, 1370, 3072, 4675, 4256, 4383, 1086, 4180, 4743, 3077, 4363, 4285, 4339, 4244, 3080, 1023, 4387, 4746, 119, 119, 119, 119, 119, 119, 1087, 1368, 119, 119, 119, 119, 119, 3070, 1369, 119, 4240, 120, 833, 4286, 4181, 4245, 3070, 3070, 1712, 903, 119, 119, 119, 119, 119, 119, 4182, 3077, 2524, 5606, 4393, 1372, 3659, 4753, 1712, 3070, 4257, 3660, 4396, 4294, 4183, 4307, 4107, 4223, 4255, 4224, 4186, 857, 119, 119, 119, 661, 119, 119, 4225, 1368, 119, 119, 119, 119, 119, 4226, 1369, 119, 4244, 4295, 3654, 4308, 2524, 4238, 4388, 4321, 4351, 903, 119, 119, 119, 119, 119, 119, 1373, 4392, 3070, 3043, 3070, 1372, 1716, 1716, 4258, 4333, 4245, 120, 3657, 1716, 1712, 1712, 2090, 4322, 4227, 4260, 4247, 4259, 119, 119, 119, 661, 1381, 3044, 4250, 2578, 1712, 1712, 1716, 1382, 4271, 4334, 3658, 1712, 4238, 4276, 1712, 120, 1304, 555, 416, 5509, 4393, 1383, 4280, 1384, 1716, 1385, 4631, 4285, 1386, 4289, 1712, 4397, 1712, 1387, 4294, 120, 1388, 4261, 1389, 4277, 1390, 1716, 1391, 1392, 1393, 1696, 1716, 4262, 1712, 1712, 1381, 4302, 4263, 4286, 1712, 1716, 4307, 1382, 4448, 4380, 4295, 4350, 2096, 1712, 4398, 1712, 3776, 2097, 4408, 4316, 1712, 1383, 4401, 1384, 4321, 1385, 4411, 6925, 1386, 1712, 4344, 4345, 4308, 1387, 4449, 2625, 1388, 4408, 1389, 120, 1390, 264, 1391, 1392, 1393, 1381, 120, 120, 4413, 857, 4322, 120, 1382, 2595, 2595, 2595, 2595, 2595, 2595, 2595, 2595, 2595, 4332, 2627, 313, 2627, 1383, 4333, 1384, 264, 1385, 264, 247, 1386, 4383, 120, 4800, 120, 1387, 208, 2627, 1388, 2700, 1389, 857, 1390, 264, 1391, 1392, 1393, 1697, 1381, 120, 4334, 120, 416, 209, 4414, 1382, 2606, 2606, 2606, 2606, 2606, 2606, 2606, 2606, 2606, 4418, 4388, 4489, 4335, 1383, 4414, 1384, 1698, 1385, 264, 247, 1386, 4335, 4417, 4419, 120, 1387, 120, 264, 1388, 3776, 1389, 4422, 1390, 120, 1391, 1392, 1393, 1381, 4381, 4381, 4382, 120, 4498, 899, 1382, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4520, 119, 4436, 120, 1383, 120, 1384, 4448, 1385, 4551, 1699, 1386, 3109, 4530, 4499, 4493, 1387, 4560, 264, 1388, 4498, 1389, 6737, 1390, 120, 1391, 1392, 1393, 1381, 313, 313, 4521, 313, 4449, 4551, 1382, 4336, 4336, 4336, 4336, 4336, 4337, 4338, 4338, 4338, 4563, 4499, 2700, 2700, 1383, 4455, 1384, 120, 1385, 247, 120, 1386, 247, 1111, 120, 120, 1387, 120, 416, 1388, 2805, 1389, 4529, 1390, 3492, 1391, 1392, 1700, 1381, 313, 313, 4722, 313, 2306, 4863, 1382, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4551, 1265, 4455, 2710, 1383, 2710, 1384, 120, 1385, 3928, 1346, 1386, 247, 5543, 120, 120, 1387, 120, 1701, 1388, 4810, 1389, 1265, 1390, 1265, 1391, 1392, 1393, 1381, 313, 313, 1266, 4546, 3343, 4339, 1382, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 313, 4811, 2710, 4461, 1702, 120, 1384, 1266, 1385, 1266, 247, 1386, 120, 4551, 120, 120, 1387, 416, 4461, 1388, 4839, 1389, 899, 1390, 4565, 1391, 1392, 1393, 1703, 1381, 120, 313, 4568, 313, 4549, 4339, 1382, 3746, 3746, 3746, 3746, 3746, 4340, 3743, 3743, 3743, 4840, 4513, 4565, 2722, 1383, 2722, 1384, 569, 1385, 4653, 4570, 1704, 120, 4569, 6993, 120, 1705, 120, 4573, 1388, 416, 1389, 1265, 1390, 1023, 1391, 1392, 1393, 1381, 313, 313, 1023, 313, 4605, 4339, 1382, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 4644, 1265, 2722, 4470, 1383, 4470, 1384, 1266, 1385, 247, 247, 1386, 120, 4597, 120, 120, 1387, 120, 1706, 1388, 4645, 1389, 1265, 1390, 120, 1391, 1392, 1393, 1381, 313, 313, 1266, 313, 1265, 4341, 1382, 3747, 3747, 3747, 3747, 3747, 3747, 3747, 3747, 3747, 4549, 4798, 2738, 2738, 1383, 2738, 1384, 1266, 1385, 4549, 247, 1386, 120, 4597, 120, 120, 1387, 120, 1266, 1388, 416, 1389, 3072, 1390, 4606, 1391, 1392, 1393, 1707, 1708, 4346, 4346, 4346, 4346, 4346, 4346, 4346, 4346, 4346, 5304, 4347, 4347, 4347, 4347, 4347, 4347, 4347, 4347, 4347, 4549, 1265, 120, 4549, 1381, 313, 313, 6739, 4605, 1265, 120, 1382, 120, 4348, 4348, 4348, 4348, 4348, 4348, 4348, 4348, 4348, 1023, 4479, 4479, 1383, 120, 1384, 5596, 1385, 247, 1266, 1386, 4607, 120, 120, 120, 1387, 1265, 1266, 1388, 1171, 1389, 120, 1390, 4648, 1391, 1392, 1393, 1381, 4485, 4485, 4485, 4485, 4485, 4485, 1382, 4412, 4412, 4412, 4412, 4412, 4412, 4412, 4412, 4412, 1265, 4549, 1266, 1265, 1383, 120, 1384, 4408, 1709, 4547, 4548, 1386, 4597, 4549, 2842, 726, 1387, 1265, 4876, 1710, 4603, 1389, 416, 1390, 4549, 1391, 1392, 1393, 1381, 4634, 1266, 3204, 120, 1266, 120, 1382, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 3392, 727, 1266, 4596, 1711, 4590, 1384, 4607, 1385, 4490, 4634, 1386, 4639, 4656, 6996, 4610, 1387, 2852, 962, 1388, 4549, 1389, 4549, 1390, 4674, 1391, 1392, 1393, 1713, 4462, 4462, 4462, 4462, 4462, 4463, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 416, 1023, 3899, 1714, 3309, 3309, 3309, 3309, 3309, 3309, 1715, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4651, 4651, 4678, 4683, 1716, 120, 1717, 4656, 1718, 4654, 4655, 1719, 3756, 4682, 4687, 4659, 1720, 4640, 1265, 1721, 1023, 1722, 4641, 1723, 4550, 1724, 1725, 1726, 119, 119, 1023, 1727, 119, 119, 119, 119, 119, 4471, 4471, 4471, 4471, 4471, 4472, 4473, 4473, 4473, 1023, 4715, 1266, 119, 119, 119, 119, 119, 119, 119, 3072, 5306, 4721, 1023, 120, 1397, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4642, 1292, 5133, 4911, 2372, 2372, 1023, 119, 119, 119, 119, 119, 119, 4649, 1727, 119, 119, 119, 119, 119, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4656, 4678, 4643, 119, 119, 119, 119, 119, 119, 119, 1728, 6312, 4926, 1712, 4722, 1397, 4480, 4480, 4480, 4480, 4480, 4481, 4482, 4482, 4482, 4750, 3079, 1712, 120, 7002, 4660, 3081, 119, 119, 119, 119, 119, 119, 4664, 119, 119, 119, 119, 119, 119, 1023, 249, 119, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 119, 119, 119, 119, 119, 119, 264, 4652, 4652, 4652, 5167, 4763, 250, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4770, 3256, 3256, 3256, 5308, 4678, 1023, 119, 119, 119, 119, 119, 119, 4681, 119, 119, 119, 119, 119, 119, 3072, 249, 119, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 119, 119, 119, 119, 119, 119, 264, 5000, 5000, 1712, 1089, 4927, 250, 2760, 2760, 2760, 2760, 2760, 2760, 2760, 2760, 2760, 835, 1712, 2842, 416, 4756, 120, 1265, 119, 119, 119, 119, 1734, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1124, 1350, 6313, 4860, 5547, 4760, 4683, 1735, 1735, 1735, 1735, 1735, 1736, 3392, 4686, 4688, 1266, 4698, 4703, 1023, 4715, 4722, 4871, 4691, 4724, 4702, 4706, 4713, 4718, 4727, 2852, 4756, 4751, 1735, 1735, 1735, 1735, 1735, 1735, 1738, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1740, 1483, 857, 120, 403, 120, 4549, 1739, 1739, 1739, 1739, 1739, 1741, 4549, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 4763, 4771, 4945, 4722, 4722, 4862, 4870, 3034, 4768, 4776, 1739, 1739, 1739, 1739, 1739, 1739, 1743, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 4805, 4987, 4801, 4946, 2524, 4810, 264, 1744, 1744, 1744, 1744, 1744, 1745, 4580, 4580, 4580, 4580, 4580, 4580, 4580, 4580, 4580, 4765, 4865, 120, 4880, 2524, 4988, 2524, 4583, 4796, 4811, 208, 1744, 1744, 1744, 1744, 1744, 1746, 1749, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1414, 209, 4888, 237, 4868, 1004, 3492, 1750, 1750, 1750, 1750, 1750, 1751, 4722, 4743, 120, 4753, 5008, 4882, 602, 2524, 4727, 4632, 4746, 4891, 4107, 2524, 4633, 5012, 5585, 4747, 120, 4759, 1750, 1750, 1750, 1750, 1750, 1750, 1752, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 4632, 406, 4824, 5001, 5001, 5001, 4633, 1753, 1753, 1753, 1753, 1753, 1754, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 3045, 5160, 120, 5565, 4874, 3046, 403, 4698, 4895, 726, 4825, 1753, 1753, 1753, 1753, 1753, 1755, 1760, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1426, 857, 4829, 857, 4743, 4040, 4743, 1761, 1761, 1761, 1761, 1761, 1762, 4746, 792, 4746, 2524, 3070, 4826, 4834, 4747, 5008, 4802, 3070, 4839, 4748, 5008, 4748, 5013, 5011, 6979, 1039, 220, 1761, 1761, 1761, 1761, 1761, 1761, 1763, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 4875, 4856, 4840, 4749, 4753, 4749, 4753, 1764, 1764, 1764, 1764, 1764, 1765, 4107, 5393, 4107, 5013, 3038, 221, 2049, 3070, 3079, 4759, 1023, 5022, 4892, 4917, 4761, 416, 857, 406, 2050, 1023, 1764, 1764, 1764, 1764, 1764, 1766, 1772, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1151, 726, 4908, 857, 4753, 4762, 5008, 1773, 1773, 1773, 1773, 1773, 1774, 4107, 2957, 2957, 2957, 2957, 2957, 2957, 2957, 2957, 2957, 4854, 3079, 4761, 5308, 120, 5008, 3081, 120, 2524, 812, 1773, 1773, 1773, 1773, 1773, 1773, 1776, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1778, 1062, 1089, 4762, 5013, 389, 1712, 1777, 1777, 1777, 1777, 1777, 1779, 4928, 835, 5023, 5024, 390, 4831, 5173, 1712, 5851, 4861, 4180, 5027, 4150, 4890, 3546, 3546, 3546, 3546, 3546, 3546, 1777, 1777, 1777, 1777, 1777, 1777, 1786, 1787, 1788, 1789, 1789, 1789, 1789, 1789, 1789, 208, 3242, 3044, 1353, 4855, 5024, 1353, 886, 886, 886, 886, 886, 890, 120, 6989, 1354, 5028, 209, 1354, 5008, 4505, 4506, 4507, 4508, 4508, 4508, 4508, 4508, 4508, 1355, 5012, 120, 1355, 886, 886, 886, 886, 886, 886, 119, 119, 120, 119, 119, 119, 119, 119, 119, 120, 249, 119, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 3070, 119, 119, 119, 119, 119, 119, 264, 3264, 3264, 3264, 3242, 120, 266, 4512, 4512, 4512, 4512, 4512, 4512, 4512, 4512, 4512, 120, 4180, 4180, 416, 5081, 120, 5292, 119, 119, 119, 257, 1111, 120, 1790, 119, 119, 120, 119, 119, 119, 119, 119, 119, 120, 249, 119, 3016, 1673, 1674, 3079, 1023, 726, 1353, 1353, 3081, 119, 119, 119, 119, 119, 119, 264, 1326, 1265, 1354, 1354, 3662, 266, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 5308, 1355, 1355, 1326, 5833, 812, 5008, 119, 119, 119, 257, 4537, 1023, 4830, 4538, 1327, 4539, 5012, 5029, 857, 4540, 3070, 1062, 4541, 4542, 4543, 5032, 4933, 4544, 1791, 119, 119, 4945, 119, 119, 119, 119, 119, 119, 814, 119, 119, 120, 4828, 5051, 1712, 3275, 3275, 3275, 1328, 4924, 119, 119, 119, 119, 119, 119, 119, 4946, 1712, 6457, 3070, 120, 1816, 4652, 4652, 4652, 4652, 4652, 4652, 4652, 4652, 4652, 3079, 120, 1023, 7006, 5944, 3081, 4912, 119, 119, 119, 119, 119, 1023, 119, 119, 119, 119, 119, 119, 857, 119, 119, 2982, 2982, 2982, 2982, 2982, 2982, 2982, 2982, 2982, 119, 119, 119, 119, 119, 119, 119, 857, 1326, 3079, 5301, 5308, 1816, 5056, 3081, 4915, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 5008, 1326, 5008, 120, 119, 119, 119, 5008, 5011, 5248, 5011, 4982, 1023, 1327, 4827, 4171, 4987, 3575, 3575, 3575, 3575, 3575, 3575, 1817, 120, 3070, 6978, 5752, 1818, 119, 119, 4040, 119, 119, 119, 119, 119, 119, 220, 119, 119, 5051, 4988, 5169, 3070, 416, 313, 1328, 664, 5054, 119, 119, 119, 119, 119, 119, 119, 5050, 5050, 5050, 5050, 5050, 1828, 4846, 4847, 4848, 4849, 4849, 4849, 4849, 4849, 4849, 221, 4909, 1829, 5051, 120, 3079, 120, 119, 119, 119, 3081, 5054, 220, 3070, 2048, 1830, 4180, 5051, 120, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 7010, 5055, 1829, 119, 119, 2049, 119, 119, 119, 119, 119, 119, 120, 119, 119, 1086, 5067, 2050, 5051, 221, 1353, 5008, 5148, 4857, 119, 119, 119, 119, 119, 119, 119, 2493, 1354, 1087, 4910, 120, 1828, 3070, 3079, 5051, 5056, 1675, 602, 3081, 4872, 833, 1355, 5008, 1829, 1023, 5055, 5060, 120, 119, 119, 119, 3070, 4817, 4818, 4819, 4820, 4820, 4820, 4820, 4820, 4820, 3070, 1023, 4858, 6010, 416, 5308, 406, 2524, 1086, 1829, 119, 119, 208, 857, 119, 119, 119, 119, 119, 4913, 137, 119, 247, 3079, 5308, 857, 1087, 120, 3081, 209, 3661, 903, 119, 119, 119, 119, 119, 119, 833, 237, 604, 5168, 3079, 672, 3109, 5559, 4859, 3081, 3077, 3070, 264, 4914, 3079, 3080, 5154, 120, 120, 3081, 5051, 416, 119, 119, 119, 661, 119, 119, 5054, 313, 119, 119, 119, 119, 119, 3040, 137, 119, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 119, 119, 119, 119, 119, 119, 119, 3109, 7014, 4918, 5056, 4919, 138, 264, 247, 5008, 3079, 5008, 5059, 120, 4920, 3081, 3072, 5011, 5008, 3072, 5601, 4921, 5012, 119, 119, 119, 119, 119, 119, 5012, 313, 119, 119, 119, 119, 119, 120, 137, 119, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 119, 119, 119, 119, 119, 119, 119, 5312, 5312, 6985, 3070, 5392, 138, 5149, 4929, 4929, 4929, 4929, 4929, 4929, 4929, 4929, 4929, 1023, 3696, 3696, 3696, 1023, 5605, 119, 119, 119, 119, 277, 277, 120, 287, 277, 277, 277, 277, 277, 667, 280, 277, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 917, 277, 277, 277, 277, 277, 277, 1832, 1832, 1832, 1832, 1832, 1833, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669, 1831, 1831, 1831, 1831, 1831, 1831, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 278, 4339, 120, 3743, 3743, 3743, 3743, 3743, 3743, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 4676, 120, 120, 3704, 3704, 3704, 120, 5556, 5172, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 664, 4952, 1023, 5008, 6012, 6806, 5008, 264, 247, 5152, 3070, 5011, 1023, 120, 5011, 1832, 1832, 1832, 1832, 1832, 1832, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 1837, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1490, 602, 5161, 4872, 5190, 3072, 3657, 1838, 1838, 1838, 1838, 1838, 1839, 3079, 4952, 5208, 3119, 3119, 3081, 1265, 264, 4922, 264, 264, 247, 3072, 120, 2805, 120, 120, 3658, 406, 4527, 1838, 1838, 1838, 1838, 1838, 1838, 1840, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1842, 1266, 5008, 5600, 5190, 5062, 5190, 1841, 1841, 1841, 1841, 1841, 1843, 4958, 5193, 3119, 5161, 604, 2805, 264, 2094, 264, 1376, 5603, 5182, 120, 1712, 120, 4925, 313, 416, 5062, 1265, 1841, 1841, 1841, 1841, 1841, 1841, 313, 1712, 5162, 240, 5212, 2095, 3072, 4527, 3297, 1846, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1848, 4007, 120, 5855, 5265, 1266, 5194, 1847, 1847, 1847, 1847, 1847, 1849, 4958, 5198, 3131, 3131, 5563, 4967, 264, 247, 264, 264, 247, 264, 120, 5180, 120, 120, 5254, 120, 120, 5597, 1847, 1847, 1847, 1847, 1847, 1847, 1854, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1202, 4520, 5155, 664, 2524, 416, 5267, 1855, 1855, 1855, 1855, 1855, 1856, 4959, 4959, 4959, 4959, 4959, 4959, 4959, 4959, 4959, 4959, 4959, 4959, 4959, 4959, 4960, 4961, 4961, 4961, 5254, 4521, 1855, 1855, 1855, 1855, 1855, 1855, 1858, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1860, 5580, 5307, 120, 7018, 5303, 2524, 1859, 1859, 1859, 1859, 1859, 1861, 4961, 4961, 4961, 4961, 4961, 4961, 4961, 4961, 4961, 4968, 4968, 4968, 4968, 4968, 4968, 4968, 4968, 4968, 5303, 120, 1859, 1859, 1859, 1859, 1859, 1859, 1868, 1869, 1869, 1869, 1869, 1869, 1869, 1869, 1869, 1214, 5579, 5343, 2524, 416, 5212, 2372, 1869, 1869, 1869, 1869, 1869, 1870, 3131, 4967, 3242, 5216, 3147, 4976, 264, 264, 247, 247, 264, 264, 120, 120, 120, 416, 120, 120, 5314, 1023, 1869, 1869, 1869, 1869, 1869, 1869, 1872, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1874, 2531, 4676, 3715, 3715, 3715, 5581, 1873, 1873, 1873, 1873, 1873, 1875, 4968, 4968, 4968, 4968, 4968, 4969, 4970, 4970, 4970, 4970, 4970, 4970, 4970, 4970, 4970, 4970, 4970, 4970, 726, 1023, 1873, 1873, 1873, 1873, 1873, 1873, 1882, 1883, 1884, 1885, 1885, 1885, 1885, 1885, 1885, 3072, 120, 5134, 1023, 3888, 3888, 3888, 947, 947, 947, 947, 947, 951, 3147, 727, 3147, 4976, 5081, 899, 264, 247, 264, 264, 247, 247, 120, 5171, 120, 120, 120, 416, 962, 5592, 947, 947, 947, 947, 947, 947, 119, 119, 5308, 656, 119, 119, 119, 119, 119, 5308, 119, 119, 4977, 4977, 4977, 4977, 4977, 4977, 4977, 4977, 4977, 903, 119, 119, 119, 119, 119, 119, 5313, 5313, 5313, 208, 3422, 665, 1886, 4977, 4977, 4977, 4977, 4977, 4978, 4979, 4979, 4979, 5511, 120, 7034, 5212, 209, 1023, 119, 119, 119, 277, 277, 5215, 278, 277, 277, 277, 277, 277, 667, 280, 277, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 906, 277, 277, 277, 277, 277, 277, 667, 667, 667, 667, 667, 668, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 277, 277, 277, 669, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 1892, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1534, 5857, 3476, 3476, 3476, 664, 7034, 1893, 1893, 1893, 1893, 1893, 1894, 4979, 4979, 4979, 4979, 4979, 4979, 4979, 4979, 4979, 3160, 3160, 3160, 3160, 3160, 3160, 3160, 3160, 3160, 313, 313, 1893, 1893, 1893, 1893, 1893, 1893, 1895, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1265, 3297, 5140, 2372, 5217, 120, 5254, 1896, 1896, 1896, 1896, 1896, 1897, 120, 120, 5221, 416, 5264, 5268, 4994, 4995, 4996, 4997, 4997, 4997, 4997, 4997, 4997, 5346, 5272, 1266, 5839, 7069, 1896, 1896, 1896, 1896, 1896, 1898, 1904, 120, 971, 971, 971, 971, 971, 971, 971, 971, 971, 974, 4520, 5155, 2372, 5302, 5176, 120, 971, 971, 971, 971, 971, 973, 5039, 5039, 5039, 5039, 5039, 5039, 5039, 5039, 5039, 1265, 120, 1265, 120, 5309, 5157, 5351, 5042, 5302, 1265, 4521, 971, 971, 971, 971, 971, 971, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1265, 1576, 1023, 5314, 1266, 119, 1266, 1908, 1908, 1908, 1908, 1908, 1909, 1266, 5318, 5558, 3072, 5570, 5209, 7069, 5001, 5001, 5001, 5001, 5001, 5001, 5001, 5001, 5001, 5183, 1266, 5177, 120, 1908, 1908, 1908, 1908, 1908, 1908, 119, 119, 120, 119, 119, 119, 119, 119, 119, 5181, 119, 119, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 119, 119, 119, 119, 119, 119, 119, 6308, 5311, 7069, 5856, 5319, 665, 5002, 5002, 5002, 5002, 5002, 5002, 5002, 5002, 5002, 5326, 857, 1265, 1265, 5425, 313, 313, 119, 119, 119, 1023, 5346, 120, 5005, 5005, 5005, 5005, 5005, 5005, 5005, 5005, 5005, 5350, 3297, 5140, 5429, 5394, 857, 1912, 1914, 247, 247, 1266, 1266, 120, 120, 120, 120, 687, 687, 687, 687, 687, 687, 687, 687, 687, 857, 7034, 7034, 120, 5425, 5401, 5178, 687, 687, 687, 687, 687, 690, 5061, 5061, 5061, 5061, 5061, 5061, 5061, 5061, 5061, 5174, 5165, 1265, 5456, 5179, 5175, 5508, 5056, 3034, 5166, 5187, 687, 687, 687, 687, 687, 687, 1557, 1557, 1558, 1919, 1557, 1557, 1557, 1557, 1557, 1922, 1557, 1557, 5217, 1023, 3204, 1266, 366, 403, 1265, 5351, 5220, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 5185, 5185, 5355, 5573, 5356, 1924, 3264, 3264, 3264, 3264, 3264, 3264, 3264, 3264, 3264, 5360, 120, 5308, 208, 5308, 1266, 6280, 1557, 1557, 1557, 1557, 1557, 1557, 1558, 1919, 1557, 1557, 1557, 1557, 1557, 209, 1557, 1557, 3275, 3275, 3275, 3275, 3275, 3275, 3275, 3275, 3275, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 5222, 5232, 5237, 5254, 5268, 1927, 7034, 5683, 5225, 5236, 5240, 5263, 5271, 5006, 5006, 5006, 5006, 5006, 5006, 5006, 5006, 5006, 1557, 1557, 1557, 1557, 1557, 1558, 1919, 1557, 1557, 1557, 1557, 1557, 120, 1557, 1557, 5141, 5141, 5141, 5141, 5141, 5141, 5141, 5141, 5141, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1928, 4139, 4139, 4139, 5371, 1927, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5376, 4160, 4160, 4160, 120, 7034, 220, 1557, 1557, 1557, 119, 119, 120, 119, 269, 119, 119, 119, 119, 270, 119, 119, 5141, 5141, 5141, 5141, 5141, 5142, 5143, 5143, 5143, 119, 119, 119, 119, 119, 119, 119, 5524, 6022, 221, 7086, 5377, 456, 5128, 5128, 5128, 5128, 5128, 5128, 5128, 5128, 5128, 5381, 5434, 120, 5273, 5686, 120, 120, 119, 119, 119, 119, 5276, 120, 5143, 5143, 5143, 5143, 5143, 5143, 5143, 5143, 5143, 5438, 264, 6023, 695, 5314, 5562, 120, 120, 1265, 1932, 1004, 1004, 5317, 1265, 1943, 1004, 1004, 1004, 1004, 1265, 1004, 1004, 120, 6272, 1023, 6273, 5434, 4878, 5186, 5186, 5186, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1266, 5319, 5327, 5420, 313, 1578, 2842, 6223, 5247, 5325, 5330, 1266, 5423, 4508, 4508, 4508, 4508, 4508, 4508, 4508, 4508, 4508, 1004, 1004, 1004, 1004, 1004, 5394, 1265, 1943, 1004, 1004, 1004, 1004, 120, 1004, 1004, 3392, 5398, 3045, 5688, 5688, 5689, 5253, 3046, 7128, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1579, 2852, 5346, 5351, 313, 1578, 237, 416, 120, 5546, 5349, 5354, 5557, 4508, 4508, 4508, 4508, 4508, 5144, 4505, 4505, 4505, 1004, 1004, 1004, 1004, 1004, 5401, 1581, 1004, 1004, 1004, 1004, 1004, 120, 1004, 1004, 5356, 5408, 120, 7132, 6275, 120, 3072, 416, 5359, 1582, 1004, 1004, 1004, 1004, 1004, 1004, 5361, 5371, 5377, 5431, 313, 1272, 7151, 120, 5364, 5374, 5380, 1949, 4746, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 1004, 1004, 1004, 119, 119, 5403, 119, 119, 119, 119, 119, 119, 120, 119, 119, 5382, 5441, 6024, 6025, 6277, 3072, 5456, 5465, 5385, 119, 119, 119, 119, 119, 119, 119, 5161, 5463, 5472, 3654, 120, 662, 857, 1023, 7194, 5163, 5164, 5164, 5163, 5163, 5163, 5163, 5163, 5163, 5394, 5401, 5403, 5456, 119, 119, 119, 1265, 5397, 5406, 5409, 5461, 4527, 5694, 5602, 5693, 5184, 5184, 5184, 5184, 5184, 5184, 5184, 5184, 5184, 1951, 688, 688, 688, 688, 688, 688, 688, 688, 688, 2524, 3072, 1266, 3658, 5420, 5431, 5431, 687, 687, 687, 687, 687, 690, 5423, 4746, 4746, 5443, 5447, 1265, 120, 5428, 4676, 5437, 6294, 5758, 4107, 5450, 5188, 5189, 416, 5344, 5344, 5345, 688, 688, 1952, 688, 688, 688, 119, 119, 5458, 119, 119, 119, 119, 119, 119, 1266, 119, 119, 1023, 5506, 857, 120, 7196, 2524, 6554, 6304, 5443, 119, 119, 119, 119, 119, 119, 119, 1954, 4107, 5458, 5443, 1265, 1816, 7231, 7310, 5445, 6297, 5464, 5699, 4107, 5186, 5186, 5186, 5186, 5186, 5186, 5186, 5186, 5186, 119, 119, 119, 119, 119, 416, 119, 119, 119, 119, 119, 119, 1266, 119, 119, 5411, 5411, 5411, 5411, 5411, 5411, 5411, 5411, 5411, 119, 119, 119, 119, 119, 119, 119, 5465, 5473, 5467, 5210, 6029, 1816, 6949, 7310, 5470, 5478, 5489, 6950, 5211, 5211, 5211, 5211, 5211, 5211, 5211, 5211, 5211, 5490, 119, 119, 119, 7353, 120, 220, 1023, 5495, 1955, 277, 277, 1266, 278, 277, 277, 277, 277, 277, 5530, 280, 277, 5412, 5412, 5412, 5412, 5412, 5413, 5414, 5414, 5414, 906, 277, 277, 277, 277, 277, 277, 5431, 366, 221, 4824, 857, 668, 120, 120, 6731, 4746, 5235, 5235, 5235, 5235, 5235, 5235, 5235, 5235, 5235, 3534, 208, 5439, 277, 277, 277, 669, 5232, 6808, 6559, 5717, 1023, 208, 726, 4825, 1957, 119, 119, 209, 119, 269, 119, 119, 119, 119, 270, 119, 119, 5440, 209, 6261, 4562, 5512, 5510, 1089, 5555, 5564, 119, 119, 119, 119, 119, 119, 119, 792, 120, 835, 835, 4826, 456, 5310, 5310, 5310, 5310, 5310, 5310, 5310, 5310, 5310, 4824, 857, 1039, 5594, 4328, 4328, 4328, 119, 119, 119, 119, 3072, 1023, 5313, 5313, 5313, 5313, 5313, 5313, 5313, 5313, 5313, 5554, 3072, 120, 5526, 5694, 120, 7353, 470, 4825, 1932, 277, 277, 1023, 278, 277, 1961, 277, 277, 277, 4824, 277, 277, 5414, 5414, 5414, 5414, 5414, 5414, 5414, 5414, 5414, 906, 277, 277, 277, 277, 277, 277, 5447, 3682, 6729, 6549, 4826, 677, 5447, 3682, 4824, 5450, 378, 4825, 3652, 120, 247, 5450, 5451, 3072, 6644, 120, 5604, 120, 277, 277, 277, 277, 277, 5452, 278, 277, 277, 277, 277, 277, 5443, 280, 277, 5525, 4825, 5548, 220, 6645, 389, 4107, 3682, 4826, 906, 277, 277, 277, 277, 277, 277, 5453, 390, 5454, 120, 120, 668, 416, 6309, 6571, 1086, 5375, 5375, 5375, 5375, 5375, 5375, 5375, 5375, 5375, 4826, 5527, 221, 277, 277, 277, 669, 5371, 1087, 5455, 1969, 778, 778, 602, 778, 1607, 778, 778, 778, 778, 833, 778, 778, 1086, 2524, 6946, 602, 7353, 5629, 366, 5431, 4040, 778, 778, 778, 778, 778, 778, 778, 4746, 120, 5553, 7310, 406, 1294, 5687, 5437, 3534, 3035, 5566, 1972, 5439, 5575, 833, 361, 5552, 406, 120, 120, 208, 7310, 778, 778, 778, 778, 778, 366, 778, 778, 778, 778, 778, 778, 5694, 778, 778, 209, 5440, 120, 3072, 366, 5697, 5694, 5850, 3534, 778, 778, 778, 778, 778, 778, 778, 1979, 5698, 5568, 1980, 208, 1981, 5518, 555, 5699, 1982, 5447, 5443, 1983, 1984, 1985, 5844, 5702, 1986, 208, 5450, 4107, 209, 778, 778, 778, 5703, 5451, 5445, 5699, 366, 5717, 5452, 5454, 5706, 5613, 209, 6314, 120, 5720, 5716, 5614, 120, 726, 5804, 1987, 778, 778, 5518, 1988, 778, 778, 778, 778, 778, 361, 778, 778, 5453, 5455, 208, 120, 5531, 1353, 120, 602, 5549, 1298, 778, 778, 778, 778, 778, 778, 812, 1354, 6990, 209, 3072, 1029, 5519, 5519, 5519, 5519, 5519, 5519, 5519, 5519, 5519, 1355, 5717, 1062, 5569, 6369, 7310, 406, 778, 778, 778, 778, 778, 5721, 1989, 778, 778, 778, 778, 778, 814, 778, 778, 5519, 5519, 5519, 5519, 5519, 5520, 5521, 5521, 5521, 1298, 778, 778, 778, 778, 778, 778, 6315, 7310, 604, 120, 5753, 1029, 5521, 5521, 5521, 5521, 5521, 5521, 5521, 5521, 5521, 3731, 120, 2524, 7472, 120, 2805, 264, 778, 778, 778, 119, 119, 120, 1990, 119, 119, 119, 119, 119, 119, 119, 119, 1326, 2805, 1326, 2805, 6573, 313, 2048, 5852, 5865, 119, 119, 119, 119, 119, 119, 119, 378, 726, 1326, 5722, 1326, 454, 7474, 3043, 2049, 5267, 5897, 5725, 5902, 3072, 1327, 5576, 1327, 5528, 3563, 120, 2050, 5678, 119, 119, 119, 119, 366, 264, 2048, 5551, 220, 3044, 812, 120, 5952, 1998, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 1629, 5529, 2049, 120, 1328, 1062, 1328, 1999, 1999, 1999, 1999, 1999, 2000, 6981, 2050, 5532, 3070, 5550, 5629, 3659, 221, 2524, 814, 1065, 3660, 247, 6020, 5607, 2493, 209, 120, 120, 5858, 1999, 1999, 1999, 1999, 1999, 1999, 2001, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 378, 378, 378, 5722, 6020, 5727, 5694, 2002, 2002, 2002, 2002, 2002, 2003, 5730, 5726, 3731, 3043, 5698, 3563, 5538, 5538, 264, 247, 5836, 5577, 372, 372, 120, 120, 209, 220, 220, 220, 2002, 2002, 2002, 2002, 2002, 2004, 2010, 3044, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1050, 5267, 5003, 120, 7555, 120, 6009, 1047, 1047, 1047, 1047, 1047, 1049, 378, 221, 221, 221, 5539, 5539, 5539, 5539, 5539, 5539, 5539, 5539, 5539, 5975, 4520, 5155, 313, 5865, 3563, 120, 1047, 1047, 1047, 1047, 1047, 1047, 378, 7195, 5869, 313, 220, 5842, 5003, 569, 3825, 2023, 2024, 2024, 2024, 2024, 2024, 2024, 2024, 2024, 1656, 4521, 120, 3825, 5841, 5737, 5742, 2024, 2024, 2024, 2024, 2024, 2025, 5741, 5745, 120, 120, 120, 416, 120, 221, 5539, 5539, 5539, 5539, 5539, 5540, 5541, 5541, 5541, 120, 5694, 664, 2024, 2024, 2024, 2024, 2024, 2024, 5697, 6579, 5854, 5853, 3072, 6018, 5870, 221, 2026, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 5877, 4450, 4450, 4450, 4456, 4456, 4456, 2027, 2027, 2027, 2027, 2027, 2028, 5541, 5541, 5541, 5541, 5541, 5541, 5541, 5541, 5541, 5798, 5798, 5798, 5798, 5798, 5798, 5897, 5902, 4918, 5799, 4919, 2027, 2027, 2027, 2027, 2027, 2029, 5901, 5906, 5593, 555, 120, 6741, 6741, 221, 2035, 4921, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1074, 5161, 1265, 4465, 4465, 4465, 1023, 1071, 1071, 1071, 1071, 1071, 1073, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3704, 3704, 3704, 3704, 3704, 3704, 3704, 3704, 3704, 4527, 1266, 1071, 1071, 1071, 1071, 1071, 1071, 2060, 5907, 4092, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 5911, 1265, 120, 3070, 5859, 6986, 5845, 2060, 2060, 2060, 2060, 2060, 2061, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 119, 119, 1266, 1368, 119, 119, 119, 119, 119, 1023, 1369, 119, 3715, 3715, 3715, 3715, 3715, 3715, 3715, 3715, 3715, 119, 119, 119, 119, 119, 119, 119, 3731, 5859, 7571, 5922, 5678, 1370, 264, 6086, 2064, 5865, 264, 247, 120, 5870, 5927, 416, 120, 5868, 119, 3072, 120, 5876, 119, 119, 119, 119, 119, 119, 119, 1368, 119, 119, 119, 119, 119, 5694, 1369, 119, 5679, 5679, 5679, 5679, 5679, 5679, 5679, 5679, 5679, 903, 119, 119, 119, 119, 119, 119, 4094, 5878, 1265, 119, 5544, 1372, 120, 7548, 5860, 5881, 6310, 2065, 120, 5545, 5545, 5545, 5545, 5545, 5545, 5545, 5545, 5545, 119, 119, 119, 661, 1381, 569, 313, 2071, 313, 1265, 1266, 1382, 120, 5679, 5679, 5679, 5679, 5679, 5680, 5681, 5681, 5681, 6577, 313, 3825, 1383, 3834, 1384, 1265, 1385, 1265, 247, 1386, 2192, 5862, 2192, 120, 1387, 120, 1266, 1388, 3834, 1389, 2193, 1390, 2193, 1391, 1392, 1393, 2072, 5161, 1265, 247, 120, 1381, 120, 416, 120, 1266, 5894, 1266, 1382, 5681, 5681, 5681, 5681, 5681, 5681, 5681, 5681, 5681, 7632, 2195, 5859, 2195, 2073, 5897, 1384, 2192, 1385, 4527, 1266, 1386, 5846, 5900, 5902, 6108, 1387, 2193, 1266, 1388, 416, 1389, 5905, 1390, 5423, 1391, 1392, 1393, 1381, 120, 313, 5859, 416, 5210, 6262, 1382, 119, 4997, 4997, 4997, 4997, 4997, 4997, 4997, 4997, 4997, 2195, 313, 3834, 1383, 5859, 1384, 264, 1385, 119, 247, 1386, 6376, 120, 5907, 120, 2074, 120, 1266, 1388, 3843, 1389, 5910, 1390, 120, 1391, 1392, 1393, 1381, 313, 313, 120, 120, 6073, 7219, 1382, 6030, 4997, 4997, 4997, 4997, 4997, 5682, 4994, 4994, 4994, 664, 3843, 3843, 1383, 217, 1384, 264, 1385, 247, 5837, 1386, 2075, 120, 120, 120, 1387, 6030, 416, 1388, 5928, 1389, 5952, 1390, 1265, 1391, 1392, 1393, 1381, 313, 313, 5932, 313, 5970, 6239, 1382, 7645, 4994, 4994, 4994, 4994, 4994, 4994, 4994, 4994, 4994, 1265, 3856, 3856, 1711, 3856, 1384, 264, 1385, 1266, 247, 1386, 264, 120, 120, 120, 1387, 120, 120, 1388, 416, 1389, 5975, 2076, 2192, 1391, 1392, 1393, 1381, 313, 313, 1266, 313, 5979, 2193, 1382, 5685, 5685, 5685, 5685, 5685, 5685, 5685, 5685, 5685, 5859, 120, 3870, 3870, 1383, 3870, 1384, 617, 1385, 2372, 247, 1386, 120, 6111, 120, 120, 1387, 120, 2195, 1388, 416, 2077, 6115, 1390, 5859, 1391, 1392, 1393, 1381, 726, 5805, 7695, 1265, 1265, 6030, 1382, 4438, 5690, 5690, 5690, 5690, 5690, 5690, 5690, 5690, 5690, 5912, 5922, 120, 1383, 695, 1384, 1698, 1385, 5915, 5925, 1386, 2078, 120, 5928, 727, 1387, 1266, 1266, 1388, 5980, 1389, 5931, 1390, 1089, 1391, 1392, 1393, 2072, 1265, 5933, 5984, 962, 1381, 2842, 5267, 835, 1265, 5936, 5859, 1382, 5740, 5740, 5740, 5740, 5740, 5740, 5740, 5740, 5740, 5859, 7710, 5859, 1265, 2073, 5943, 1384, 5737, 1385, 1266, 4591, 1386, 857, 5863, 5863, 3392, 1387, 1266, 2372, 1388, 2192, 1389, 2079, 1390, 6270, 1391, 1392, 1393, 1381, 5952, 2193, 3204, 2852, 1266, 6030, 1382, 3070, 5955, 120, 6085, 5956, 6983, 120, 6035, 1111, 6034, 6035, 5859, 5960, 1383, 5975, 1384, 5980, 1385, 5859, 4094, 1386, 6045, 5978, 2195, 5983, 1387, 247, 1701, 2080, 1171, 1389, 120, 1390, 1023, 1391, 1392, 1393, 1381, 5798, 5798, 5798, 5798, 5798, 5798, 1382, 5775, 5775, 5775, 5775, 5775, 5775, 5775, 5775, 5775, 7724, 2842, 5985, 1265, 2081, 120, 1384, 5995, 1385, 5999, 5988, 1386, 5864, 5864, 5864, 5998, 1387, 6002, 7738, 1388, 6046, 1389, 6030, 1390, 6030, 1391, 1392, 1393, 1703, 1381, 6033, 6050, 3392, 1266, 4105, 6034, 1382, 5775, 5775, 5775, 5775, 5775, 5776, 5777, 5777, 5777, 120, 6035, 6046, 2852, 1383, 6051, 1384, 6030, 1385, 6044, 6049, 1386, 5971, 6054, 6030, 2842, 1387, 3504, 6034, 1388, 313, 1389, 6033, 1390, 2082, 1391, 1392, 1393, 1381, 4505, 4505, 4505, 4505, 4505, 4505, 1382, 5777, 5777, 5777, 5777, 5777, 5777, 5777, 5777, 5777, 416, 3392, 6030, 5210, 1383, 120, 1384, 5974, 1385, 2372, 6033, 1386, 5895, 5895, 5896, 7766, 1387, 3652, 2852, 2083, 2372, 1389, 6073, 1390, 6073, 1391, 1392, 1393, 1381, 2372, 6076, 6982, 6076, 1266, 6030, 1382, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 6030, 6073, 6073, 120, 1383, 2372, 1384, 6073, 1385, 6073, 6078, 1386, 6077, 6077, 1575, 6076, 1387, 120, 6081, 1388, 6078, 1389, 6030, 1390, 6030, 1391, 1392, 1393, 1381, 2372, 6078, 6082, 6033, 6034, 6030, 1382, 5781, 5781, 5781, 5781, 5781, 5782, 5783, 5783, 5783, 6034, 6274, 6030, 6087, 1383, 2084, 1384, 6030, 1385, 6030, 6033, 1386, 6087, 6117, 6091, 6033, 1387, 7831, 6282, 1388, 6090, 1389, 6120, 1390, 857, 1391, 1392, 1700, 2085, 5783, 5783, 5783, 5783, 5783, 5783, 5783, 5783, 5783, 5787, 5787, 5787, 5787, 5787, 5787, 5787, 5787, 5787, 6030, 406, 6087, 6084, 6318, 1381, 6072, 6072, 6072, 6072, 6072, 6093, 1382, 5787, 5787, 5787, 5787, 5787, 5788, 5789, 5789, 5789, 6100, 6093, 6095, 6095, 1383, 1023, 1384, 6084, 1385, 6098, 6101, 1704, 120, 6117, 6102, 6108, 1705, 4094, 4107, 1388, 857, 1389, 6120, 1390, 5423, 1391, 1392, 1393, 1381, 120, 120, 6114, 416, 857, 6122, 1382, 5789, 5789, 5789, 5789, 5789, 5789, 5789, 5789, 5789, 6093, 6117, 3504, 6125, 1383, 6129, 1384, 1698, 1385, 6139, 6120, 1386, 4746, 6095, 6132, 6123, 2086, 6121, 5450, 1388, 120, 1389, 6122, 1390, 857, 1391, 1392, 1393, 1713, 5793, 5793, 5793, 5793, 5793, 5793, 5793, 5793, 5793, 5793, 5793, 5793, 5793, 5793, 5794, 5795, 5795, 5795, 6150, 6123, 6150, 1714, 6373, 6373, 6374, 7364, 6155, 237, 1715, 5795, 5795, 5795, 5795, 5795, 5795, 5795, 5795, 5795, 6108, 6117, 6150, 6152, 1716, 120, 1717, 6152, 1718, 5423, 6120, 1719, 6160, 6157, 6159, 6158, 1720, 6121, 6276, 1721, 6165, 1722, 240, 1723, 416, 1724, 1725, 1726, 1713, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 6162, 120, 1265, 1714, 6278, 4474, 4474, 4474, 6168, 6160, 1715, 5861, 5861, 5861, 5861, 5861, 5861, 5861, 5861, 5861, 6167, 6125, 6169, 6815, 1716, 6125, 1717, 6740, 1718, 6129, 4746, 1719, 1266, 6176, 4746, 857, 1720, 6127, 6132, 1721, 6279, 1722, 1265, 1723, 120, 1724, 2087, 1726, 1713, 416, 6134, 5864, 5864, 5864, 5864, 5864, 5864, 5864, 5864, 5864, 6160, 4107, 7217, 6149, 120, 2088, 6169, 6897, 247, 120, 1714, 6643, 1266, 120, 6174, 120, 6135, 1715, 5926, 5926, 5926, 5926, 5926, 5926, 5926, 5926, 5926, 4107, 6129, 6162, 3504, 1716, 3504, 1717, 5922, 1718, 6125, 6132, 1719, 120, 6195, 6177, 416, 1720, 6133, 4746, 1721, 7965, 1722, 6182, 1723, 8038, 1724, 1725, 1726, 1713, 3504, 6136, 4562, 6026, 6026, 6026, 6026, 6026, 6026, 6026, 6026, 6026, 6027, 6027, 6027, 6027, 6027, 6027, 6027, 6027, 6027, 1714, 6139, 6139, 1023, 6196, 6171, 6137, 1715, 6196, 2524, 5450, 5450, 1023, 6194, 6204, 6203, 6201, 6145, 208, 6198, 6142, 1716, 6209, 1717, 1304, 1718, 416, 6221, 1719, 120, 8048, 1346, 6224, 1720, 6290, 209, 1721, 220, 1722, 6260, 1723, 6146, 1724, 1725, 1726, 2089, 1713, 6225, 6028, 6028, 6028, 6028, 6028, 6028, 6028, 6028, 6028, 6061, 6061, 6061, 6061, 6061, 6061, 6061, 6061, 6061, 6240, 6142, 1714, 1023, 208, 221, 7365, 6064, 120, 1715, 6226, 6072, 6072, 6072, 6072, 6072, 6072, 6072, 6072, 6072, 6129, 209, 120, 1716, 8048, 1717, 2090, 1718, 220, 6132, 1719, 778, 1023, 120, 6246, 1720, 6133, 6551, 1721, 899, 1722, 6134, 1723, 6734, 1724, 1725, 1726, 1713, 6083, 6083, 6083, 6083, 6083, 6083, 6083, 6083, 6083, 120, 6149, 602, 120, 6284, 221, 1350, 6078, 247, 3034, 6135, 4824, 1714, 120, 6263, 6504, 4824, 6287, 2524, 1715, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 6930, 3504, 4040, 406, 1716, 7463, 1717, 1023, 1718, 6139, 2091, 1719, 4825, 6125, 6291, 6139, 1720, 4825, 5450, 1721, 6242, 1722, 4746, 1723, 5450, 1724, 1725, 1726, 1713, 6127, 6147, 6145, 726, 6227, 6136, 6283, 6147, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4826, 6241, 3072, 6243, 1714, 4826, 1326, 726, 6247, 366, 6148, 1715, 120, 1326, 6137, 6553, 6148, 792, 4817, 4817, 4817, 4817, 4817, 4817, 1326, 1716, 3648, 1717, 8083, 1718, 6305, 1326, 1719, 4825, 1039, 6943, 1327, 1720, 812, 208, 1721, 2524, 1722, 1327, 1723, 120, 1724, 1725, 2092, 1713, 1086, 6244, 726, 6248, 2524, 1062, 209, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 3042, 4826, 1087, 389, 6245, 1714, 814, 6269, 4865, 378, 120, 1328, 1715, 6298, 833, 390, 6380, 812, 4846, 4846, 4846, 4846, 4846, 4846, 6383, 1087, 1716, 899, 1717, 8083, 1718, 5590, 7191, 1719, 1062, 6264, 237, 833, 1720, 220, 2093, 1721, 1365, 1722, 5544, 1723, 2048, 1724, 1725, 1726, 1713, 814, 6268, 5545, 5545, 5545, 5545, 5545, 5545, 5545, 5545, 5545, 2048, 1353, 2049, 120, 6271, 2524, 602, 120, 2524, 6265, 1714, 221, 120, 1354, 2050, 6267, 3072, 1715, 2049, 3659, 3043, 8083, 1089, 3038, 3660, 7634, 3072, 1355, 6295, 3072, 2050, 2094, 6320, 1717, 835, 1718, 406, 6293, 1719, 120, 602, 1716, 4872, 1720, 3044, 3646, 1721, 120, 1722, 1712, 1723, 4273, 1724, 1725, 1726, 2095, 1713, 264, 6316, 3657, 1716, 6316, 4238, 120, 6266, 1712, 5611, 6306, 1712, 3657, 406, 6281, 120, 1716, 7199, 3077, 1694, 6307, 1714, 6379, 6311, 1712, 5691, 3658, 1712, 1715, 4282, 1023, 6317, 6380, 217, 8048, 264, 3658, 6377, 6377, 6378, 1712, 120, 1716, 6384, 1717, 1716, 1718, 604, 1716, 2096, 7220, 6809, 8048, 1712, 2097, 120, 1712, 1721, 120, 1722, 857, 1723, 6385, 1724, 1725, 1726, 1713, 7557, 5691, 1712, 6388, 6385, 1712, 6319, 6319, 6319, 6319, 6319, 6319, 6319, 6319, 6319, 6389, 120, 4273, 6380, 4273, 7376, 1714, 6390, 264, 247, 264, 4282, 120, 1715, 120, 6393, 120, 264, 247, 416, 4282, 120, 6390, 120, 4291, 6730, 264, 1716, 4438, 1717, 264, 1718, 120, 6394, 1719, 416, 120, 6395, 1023, 1720, 120, 2098, 1721, 416, 1722, 6398, 1723, 857, 1724, 1725, 1726, 1713, 6337, 6337, 6337, 6337, 6337, 6337, 6337, 6337, 6337, 6337, 6337, 6337, 6337, 6337, 6338, 6339, 6339, 6339, 7465, 6411, 6385, 1714, 6375, 6375, 6375, 6375, 6375, 6414, 1715, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 8048, 4304, 8048, 4291, 1716, 120, 1717, 264, 1718, 264, 247, 1719, 6416, 120, 6421, 120, 1720, 120, 4291, 1721, 6419, 1722, 6424, 1723, 264, 1724, 1725, 1726, 2099, 2100, 120, 1713, 857, 416, 6343, 6343, 6343, 6343, 6343, 6343, 6343, 6343, 6343, 6343, 6343, 6343, 6343, 6343, 6344, 6345, 6345, 6345, 2524, 1714, 6463, 8117, 6942, 6411, 2524, 6411, 1715, 6345, 6345, 6345, 6345, 6345, 6345, 6345, 6345, 6345, 6415, 4318, 6540, 4304, 1716, 6738, 1717, 264, 1718, 264, 247, 1719, 120, 120, 120, 120, 1720, 120, 4304, 1721, 6416, 1722, 857, 1723, 264, 1724, 1725, 1726, 1713, 416, 120, 6420, 6421, 416, 6349, 6349, 6349, 6349, 6349, 6349, 6349, 6349, 6349, 6425, 6426, 6436, 6442, 6416, 3070, 120, 1714, 313, 6429, 6439, 6445, 6980, 6436, 1715, 6349, 6349, 6349, 6349, 6349, 6350, 6351, 6351, 6351, 6441, 6442, 4495, 4318, 1716, 6447, 1717, 6572, 2101, 264, 247, 1719, 6446, 6450, 120, 120, 1720, 4520, 119, 2102, 8104, 1722, 8237, 1723, 8327, 1724, 1725, 1726, 1713, 6351, 6351, 6351, 6351, 6351, 6351, 6351, 6351, 6351, 6557, 4318, 4438, 726, 6525, 2805, 6531, 264, 5161, 247, 4521, 313, 1714, 120, 120, 6536, 416, 5161, 120, 1715, 6355, 6355, 6355, 6355, 6355, 6355, 6355, 6355, 6355, 4495, 6587, 6505, 6587, 2103, 727, 1717, 247, 1718, 4527, 6898, 1719, 120, 3070, 6591, 695, 1720, 120, 4527, 1721, 3656, 1722, 962, 1723, 6561, 1724, 1725, 1726, 119, 119, 313, 1727, 119, 119, 119, 119, 119, 6355, 6355, 6355, 6355, 6355, 6356, 6357, 6357, 6357, 6576, 6560, 4495, 119, 119, 119, 119, 119, 119, 119, 120, 7200, 120, 8376, 120, 1397, 6807, 416, 2105, 6357, 6357, 6357, 6357, 6357, 6357, 6357, 6357, 6357, 1023, 899, 120, 7586, 119, 119, 119, 119, 119, 119, 6558, 119, 119, 119, 119, 119, 119, 120, 249, 119, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 119, 119, 119, 119, 119, 119, 264, 6742, 6742, 6742, 6528, 6592, 250, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 6602, 7825, 6525, 7824, 6531, 2524, 1023, 119, 119, 119, 119, 119, 119, 6536, 119, 119, 119, 119, 119, 119, 6543, 249, 119, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 119, 119, 119, 119, 119, 119, 264, 4947, 4947, 4947, 8240, 6603, 250, 6470, 6470, 6470, 6470, 6470, 6470, 6470, 6470, 6470, 6607, 416, 4520, 5155, 6642, 6941, 220, 119, 119, 119, 119, 2107, 2108, 2108, 2108, 2108, 2108, 2108, 2108, 2108, 1740, 4994, 4994, 4994, 4994, 4994, 4994, 2108, 2108, 2108, 2108, 2108, 2109, 4521, 1266, 120, 264, 8377, 7182, 6556, 7558, 6587, 120, 6470, 6470, 6470, 6470, 6470, 6471, 6472, 6472, 6472, 6591, 2108, 2108, 2108, 2108, 2108, 2108, 2110, 2111, 2111, 2111, 2111, 2111, 2111, 2111, 2111, 2112, 6458, 6458, 6458, 6458, 6458, 6458, 2111, 2111, 2111, 2111, 2111, 2113, 6440, 6440, 6440, 6440, 6440, 6440, 6440, 6440, 6440, 120, 6587, 6592, 2805, 2805, 2805, 7181, 6436, 8501, 6590, 6601, 2111, 2111, 2111, 2111, 2111, 2111, 2116, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2118, 2842, 6592, 6587, 6587, 3204, 264, 2117, 2117, 2117, 2117, 2117, 2119, 6472, 6472, 6472, 6472, 6472, 6472, 6472, 6472, 6472, 4450, 4450, 4450, 4450, 4450, 4450, 4450, 4450, 4450, 120, 3392, 2117, 2117, 2117, 2117, 2117, 2117, 2124, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 1414, 2852, 8505, 403, 7588, 6679, 2805, 2125, 2125, 2125, 2125, 2125, 2126, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 6630, 6951, 2125, 2125, 2125, 2125, 2125, 2125, 2128, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2130, 5798, 5798, 5798, 5798, 5798, 5798, 2129, 2129, 2129, 2129, 2129, 2131, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 120, 6503, 6503, 6503, 6503, 6503, 6503, 6503, 6503, 6503, 8506, 2129, 2129, 2129, 2129, 2129, 2129, 2138, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 1426, 7181, 6630, 6587, 6528, 6587, 6641, 2139, 2139, 2139, 2139, 2139, 2140, 6509, 6509, 6509, 6509, 6509, 6509, 6509, 6509, 6509, 6509, 6509, 6509, 6509, 6509, 6510, 6511, 6511, 6511, 6587, 6641, 2139, 2139, 2139, 2139, 2139, 2139, 2142, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2144, 2842, 5972, 4953, 4953, 4953, 8508, 2143, 2143, 2143, 2143, 2143, 2145, 6511, 6511, 6511, 6511, 6511, 6511, 6511, 6511, 6511, 6535, 6535, 6535, 6535, 6535, 6535, 6535, 6535, 6535, 6536, 3392, 2143, 2143, 2143, 2143, 2143, 2143, 2152, 2153, 2154, 2155, 2155, 2155, 2155, 2155, 2155, 2524, 2852, 4962, 4962, 4962, 7472, 2524, 1137, 1137, 1137, 1137, 1137, 1141, 6537, 6537, 6537, 6537, 6537, 6538, 6539, 6539, 6539, 6536, 6539, 6539, 6539, 6539, 6539, 6539, 6539, 6539, 6539, 6536, 1137, 1137, 1137, 1137, 1137, 1137, 2156, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 1778, 2524, 7547, 6966, 237, 6603, 6608, 2157, 2157, 2157, 2157, 2157, 2158, 6606, 6611, 6587, 6587, 6630, 5161, 1265, 1265, 6587, 1265, 6590, 6590, 6633, 5847, 6580, 6586, 6581, 6582, 6944, 6591, 2157, 2157, 2157, 2157, 2157, 2157, 2159, 2160, 2160, 2160, 2160, 2160, 2160, 2160, 2160, 4527, 1266, 1266, 6630, 1266, 6630, 6630, 2160, 2160, 2160, 2160, 2160, 2161, 6633, 6634, 8519, 8241, 6634, 6635, 6371, 6371, 6371, 6371, 6371, 6371, 6371, 6371, 6371, 2805, 6639, 4971, 4971, 4971, 2160, 2160, 2160, 2160, 2160, 2162, 2168, 120, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1153, 1265, 6646, 6635, 6587, 6630, 6635, 1150, 1150, 1150, 1150, 1150, 1152, 6633, 6638, 6591, 5068, 5068, 5068, 6587, 6372, 6372, 6372, 6372, 6372, 6372, 6372, 6372, 6372, 2805, 6591, 1266, 6644, 1150, 1150, 1150, 1150, 1150, 1150, 119, 119, 120, 119, 119, 119, 119, 119, 119, 6628, 249, 119, 6587, 8523, 6885, 6587, 6645, 6815, 1575, 1265, 6590, 119, 119, 119, 119, 119, 119, 264, 6629, 6629, 6629, 6629, 6629, 266, 6375, 6375, 6375, 6375, 6375, 6375, 6375, 6375, 6375, 6815, 120, 120, 6587, 120, 6587, 1266, 119, 119, 119, 257, 6590, 120, 6590, 6495, 6495, 6495, 6495, 6495, 6495, 6495, 6495, 6495, 237, 8224, 2172, 119, 119, 6651, 119, 119, 119, 119, 119, 119, 120, 249, 119, 6651, 6655, 7215, 7030, 7030, 7031, 7222, 6656, 6654, 119, 119, 119, 119, 119, 119, 264, 1265, 5161, 6663, 7590, 120, 266, 6899, 5267, 120, 6583, 6583, 6583, 6583, 6583, 6583, 6583, 6583, 6583, 1304, 6656, 6664, 7627, 119, 119, 119, 257, 6562, 6662, 6667, 6563, 1266, 6564, 6651, 6683, 2842, 6565, 5267, 6683, 6566, 6567, 6568, 6686, 120, 6569, 7367, 2173, 119, 119, 6687, 119, 119, 119, 119, 119, 119, 6688, 119, 2192, 5267, 8187, 120, 6683, 1304, 6691, 6688, 3392, 6693, 2193, 119, 119, 119, 119, 119, 119, 6682, 6692, 6693, 6697, 1265, 2194, 2524, 8524, 2852, 6688, 6696, 6728, 2524, 6584, 6584, 6584, 6584, 6584, 6584, 6584, 6584, 6584, 2195, 119, 119, 119, 119, 6708, 119, 119, 119, 119, 119, 119, 1266, 119, 2192, 6698, 6712, 7848, 2372, 5135, 5135, 5135, 664, 6701, 2193, 119, 119, 119, 119, 119, 119, 2196, 6708, 6713, 6718, 1265, 2194, 3476, 3476, 3476, 6711, 6716, 6721, 6748, 6585, 6585, 6585, 6585, 6585, 6585, 6585, 6585, 6585, 2195, 119, 119, 119, 119, 6713, 119, 119, 119, 119, 119, 119, 1266, 119, 2192, 6748, 6717, 2372, 2372, 8526, 6748, 119, 208, 6751, 2193, 119, 119, 119, 119, 119, 119, 6752, 6753, 6757, 6901, 1265, 2200, 120, 8535, 209, 6756, 6760, 6753, 6771, 6629, 6629, 6629, 6629, 6629, 6629, 6629, 6629, 6629, 2195, 119, 119, 119, 119, 6753, 119, 119, 119, 119, 119, 119, 1266, 119, 2192, 6771, 6770, 7830, 7099, 7099, 7100, 6771, 7215, 6774, 2193, 119, 119, 119, 119, 119, 119, 2201, 6775, 6776, 6776, 6781, 2200, 2842, 5972, 120, 6748, 6779, 6791, 6784, 6796, 6780, 2372, 6680, 6680, 6681, 6795, 6752, 6799, 2195, 119, 119, 119, 119, 6810, 119, 119, 119, 119, 119, 119, 6748, 119, 2192, 3392, 6814, 8474, 6748, 8207, 6751, 8535, 1346, 6810, 2193, 119, 119, 119, 119, 119, 119, 6813, 2852, 857, 857, 119, 2203, 7081, 2204, 6742, 6742, 6742, 6742, 6742, 6742, 6742, 6742, 6742, 6815, 6817, 6815, 6817, 6815, 2205, 2206, 2206, 6820, 6823, 6810, 6815, 1023, 6822, 6824, 6822, 2207, 277, 277, 120, 287, 277, 277, 277, 277, 277, 667, 280, 277, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 917, 277, 277, 277, 277, 277, 277, 2210, 2210, 2210, 2210, 2210, 2211, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669, 2209, 2209, 2209, 2209, 2209, 2209, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 278, 2524, 5513, 5513, 5513, 8570, 8570, 2524, 4878, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 6743, 6743, 6743, 6743, 6743, 6743, 6743, 6743, 6743, 6746, 6746, 6746, 6746, 6746, 6746, 6746, 6746, 6746, 6834, 6845, 6856, 1023, 6868, 6872, 5533, 5533, 5533, 6837, 6120, 6132, 1023, 5450, 6875, 2210, 2210, 2210, 2210, 2210, 2210, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 2215, 2216, 2216, 2216, 2216, 2216, 2216, 2216, 2216, 1490, 857, 6839, 6848, 120, 8570, 120, 2216, 2216, 2216, 2216, 2216, 2217, 6618, 6618, 6618, 6618, 6618, 6618, 6618, 6618, 6618, 6815, 6843, 6852, 3070, 6817, 8209, 7192, 6621, 6820, 6859, 6987, 2216, 2216, 2216, 2216, 2216, 2216, 2219, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2221, 6839, 6848, 4744, 6863, 1004, 2897, 2220, 2220, 2220, 2220, 2220, 2222, 726, 6528, 120, 2898, 4746, 120, 6747, 6747, 6747, 6747, 6747, 6747, 6747, 6747, 6747, 1023, 120, 6859, 6866, 3504, 2220, 2220, 2220, 2220, 2220, 2220, 313, 1023, 6902, 7189, 120, 792, 2900, 3504, 6817, 2224, 2224, 2224, 2224, 2224, 2224, 2224, 2224, 2224, 857, 6824, 857, 3504, 1039, 8535, 7826, 2224, 2224, 2224, 2224, 2224, 2225, 6640, 6640, 6640, 6640, 6640, 6640, 6640, 6640, 6640, 6817, 6815, 6817, 6815, 857, 6817, 120, 6635, 6823, 6820, 6823, 2224, 2224, 2224, 2224, 2224, 2226, 2229, 2230, 2230, 2230, 2230, 2230, 2230, 2230, 2230, 1848, 857, 857, 6815, 8535, 4562, 7370, 2230, 2230, 2230, 2230, 2230, 2231, 6794, 6794, 6794, 6794, 6794, 6794, 6794, 6794, 6794, 6885, 6887, 6885, 6887, 6885, 6817, 6817, 6791, 6890, 6893, 6890, 2230, 2230, 2230, 2230, 2230, 2230, 2232, 2232, 2232, 2232, 2232, 2232, 2232, 2232, 2232, 857, 217, 237, 240, 120, 4040, 6817, 2232, 2232, 2232, 2232, 2232, 2233, 778, 6825, 6825, 6825, 6825, 6825, 6825, 6825, 6825, 6825, 778, 6885, 6815, 6909, 6945, 6947, 6959, 6748, 8535, 6890, 2232, 2232, 2232, 2232, 2232, 2234, 2239, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 1860, 8535, 6815, 6817, 778, 6895, 6896, 2240, 2240, 2240, 2240, 2240, 2241, 6826, 6826, 6826, 6826, 6826, 6827, 6828, 6828, 6828, 6828, 6828, 6828, 6828, 6828, 6828, 6828, 6828, 6828, 6895, 6896, 2240, 2240, 2240, 2240, 2240, 2240, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 8210, 120, 8585, 1350, 6834, 6845, 6845, 2242, 2242, 2242, 2242, 2242, 2243, 6837, 6120, 6120, 6856, 6815, 6817, 6887, 6842, 6851, 120, 6815, 857, 6132, 7033, 6893, 6822, 6824, 416, 6820, 6862, 2242, 2242, 2242, 2242, 2242, 2244, 2250, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 1874, 6380, 7214, 4746, 6845, 6845, 6885, 2251, 2251, 2251, 2251, 2251, 2252, 6120, 6120, 120, 6885, 6892, 416, 6887, 6851, 6817, 664, 6815, 857, 6853, 6853, 6892, 7221, 6823, 6894, 6820, 3504, 2251, 2251, 2251, 2251, 2251, 2251, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 7379, 7034, 6815, 6854, 6854, 6856, 6856, 2253, 2253, 2253, 2253, 2253, 2254, 6822, 6132, 6132, 6868, 6815, 6815, 5616, 5616, 5616, 6862, 6817, 1023, 5450, 6820, 6864, 6822, 416, 2897, 6823, 6870, 2253, 2253, 2253, 2253, 2253, 2255, 1904, 2898, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1216, 208, 1023, 6865, 6856, 1606, 6868, 1213, 1213, 1213, 1213, 1213, 1215, 6132, 7165, 5450, 6817, 6929, 209, 2900, 220, 726, 6919, 6536, 8707, 6864, 6900, 6824, 5613, 1346, 416, 2897, 6916, 1213, 1213, 1213, 1213, 1213, 1213, 119, 119, 2898, 656, 119, 119, 119, 119, 119, 1292, 119, 119, 6865, 6920, 1023, 221, 120, 6932, 120, 6872, 389, 903, 119, 119, 119, 119, 119, 119, 6875, 1350, 6921, 2900, 390, 665, 4935, 6876, 2264, 6906, 6906, 6906, 6906, 6906, 6906, 6906, 6906, 6906, 120, 6922, 8719, 6933, 119, 119, 119, 277, 277, 8027, 2265, 277, 277, 277, 277, 277, 667, 280, 277, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 906, 277, 277, 277, 277, 277, 277, 667, 667, 667, 667, 667, 668, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 2267, 667, 667, 667, 277, 277, 277, 669, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 2272, 2273, 2273, 2273, 2273, 2273, 2273, 2273, 2273, 1534, 4824, 1679, 8254, 6872, 6872, 1089, 2273, 2273, 2273, 2273, 2273, 2274, 6875, 6875, 6940, 2524, 4935, 835, 6380, 4746, 6876, 2524, 120, 247, 6877, 6877, 247, 220, 120, 6384, 4825, 120, 2273, 2273, 2273, 2273, 2273, 2273, 2276, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2278, 3504, 366, 6878, 6878, 6910, 6868, 2277, 2277, 2277, 2277, 2277, 2279, 1089, 221, 5450, 7148, 4826, 7034, 6866, 4807, 602, 6870, 120, 6911, 835, 247, 6879, 120, 7038, 6965, 120, 208, 2277, 2277, 2277, 2277, 2277, 2277, 2286, 2287, 2288, 2289, 2289, 2289, 2289, 2289, 2289, 3504, 209, 366, 406, 6868, 6880, 4935, 1232, 1232, 1232, 1232, 1232, 1236, 5450, 8186, 6939, 240, 4984, 120, 8780, 4807, 416, 2524, 264, 120, 6879, 7293, 361, 2524, 120, 6952, 6644, 208, 1232, 1232, 1232, 1232, 1232, 1232, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 974, 209, 7592, 6880, 6964, 7022, 6645, 1229, 1229, 1229, 1229, 1229, 1230, 6906, 6906, 6906, 6906, 6906, 6907, 6908, 6908, 6908, 6908, 6908, 6908, 6908, 6908, 6908, 6908, 6908, 6908, 366, 4824, 1229, 1229, 1229, 1229, 1229, 1229, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 857, 4807, 7763, 857, 7039, 7136, 8790, 2295, 2295, 2295, 2295, 2295, 2296, 208, 4825, 7043, 555, 2524, 6380, 7034, 6912, 4824, 313, 2524, 7039, 7039, 6383, 7037, 7034, 857, 209, 2897, 7042, 2295, 2295, 2295, 2295, 2295, 2295, 119, 119, 2898, 656, 119, 119, 119, 119, 119, 4826, 119, 119, 4825, 120, 1023, 7034, 726, 1598, 6934, 1326, 1970, 903, 119, 119, 119, 119, 119, 119, 602, 120, 1353, 2900, 857, 665, 2524, 2372, 378, 6914, 5525, 120, 2524, 1326, 1354, 2897, 6917, 6913, 4826, 812, 6970, 1327, 119, 119, 119, 2898, 4836, 2524, 1355, 7069, 406, 1326, 7069, 2524, 8697, 7034, 1062, 1023, 220, 7535, 2299, 119, 119, 1327, 119, 2301, 119, 119, 119, 119, 270, 119, 119, 814, 2900, 1328, 857, 378, 1086, 6958, 7539, 7034, 119, 119, 119, 119, 119, 119, 119, 6967, 6915, 7044, 221, 7044, 456, 4836, 1087, 1328, 1645, 7047, 6954, 7074, 372, 8802, 7048, 6968, 7535, 220, 833, 2048, 2048, 119, 119, 119, 119, 687, 687, 687, 687, 687, 687, 687, 687, 687, 120, 8818, 120, 2049, 2049, 120, 6955, 687, 687, 687, 687, 687, 690, 2524, 7034, 2050, 2050, 221, 6936, 2524, 7049, 3657, 6937, 7034, 7644, 7038, 378, 3070, 7052, 6984, 7034, 7037, 6956, 687, 687, 687, 687, 687, 687, 6935, 6957, 7038, 7574, 7833, 4836, 3658, 2302, 1557, 1557, 1558, 1919, 1557, 1557, 1557, 1557, 1557, 220, 1557, 1557, 569, 1023, 208, 7034, 313, 313, 7080, 7069, 7034, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 7037, 6969, 7073, 209, 313, 2310, 6926, 6926, 6926, 6926, 6926, 6926, 6926, 6926, 6926, 221, 7080, 8098, 120, 120, 7550, 416, 1557, 1557, 1557, 1557, 1557, 1558, 1919, 1557, 1557, 1557, 1557, 1557, 120, 1557, 1557, 6926, 6926, 6926, 6926, 6926, 6927, 6928, 6928, 6928, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 2311, 5673, 5673, 5673, 7069, 2310, 6928, 6928, 6928, 6928, 6928, 6928, 6928, 6928, 6928, 7073, 120, 120, 3034, 7604, 120, 8910, 1557, 1557, 1557, 1557, 1557, 1558, 2312, 1557, 1557, 1557, 1557, 1557, 7074, 1557, 1557, 6931, 6931, 6931, 6931, 6931, 6931, 6931, 6931, 7078, 2313, 1557, 1557, 1557, 1557, 1557, 1557, 3034, 7602, 7847, 7628, 120, 1927, 120, 7034, 7034, 6961, 6961, 6961, 6961, 6961, 6961, 6961, 6961, 6961, 7038, 7038, 8922, 8922, 1557, 1557, 1557, 1557, 1557, 1558, 2312, 1557, 1557, 1557, 1557, 1557, 7734, 1557, 1557, 6997, 6997, 6997, 6997, 6997, 6997, 6997, 6997, 6997, 2313, 1557, 1557, 1557, 1557, 1557, 1557, 1928, 667, 667, 667, 667, 1927, 6997, 6997, 6997, 6997, 6997, 6998, 6999, 6999, 6999, 857, 7027, 7027, 7027, 7027, 7027, 120, 1557, 1557, 1557, 119, 119, 1086, 119, 269, 119, 119, 119, 119, 270, 119, 119, 120, 313, 8927, 7034, 1677, 313, 7380, 313, 1087, 119, 119, 119, 119, 119, 119, 119, 8927, 6938, 1023, 7839, 833, 456, 6999, 6999, 6999, 6999, 6999, 6999, 6999, 6999, 6999, 120, 247, 7231, 1356, 120, 4984, 120, 119, 119, 119, 119, 264, 247, 7235, 2322, 1004, 1004, 120, 1265, 1943, 1004, 1004, 1004, 1004, 120, 1004, 1004, 4947, 4947, 4947, 4947, 4947, 4947, 4947, 4947, 4947, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 7032, 7032, 7032, 7032, 7032, 1578, 2805, 2805, 8927, 120, 7190, 2330, 4953, 4953, 4953, 4953, 4953, 4953, 4953, 4953, 4953, 120, 1004, 1004, 1004, 1265, 8922, 313, 7124, 120, 8372, 7231, 7236, 2331, 2332, 2332, 2332, 2332, 2332, 2332, 2332, 2332, 2332, 4962, 4962, 4962, 4962, 4962, 4962, 4962, 4962, 4962, 7069, 7069, 7069, 1266, 1265, 120, 120, 313, 7072, 7072, 7072, 7939, 2331, 2333, 2333, 2333, 2333, 2333, 2333, 2333, 2333, 2333, 4971, 4971, 4971, 4971, 4971, 4971, 4971, 4971, 4971, 120, 247, 8922, 1266, 1004, 1004, 120, 1265, 1004, 1004, 1004, 1004, 1004, 313, 1004, 1004, 7019, 7019, 7019, 7019, 7019, 7019, 7019, 7019, 7019, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 2337, 120, 2805, 2338, 4984, 2339, 247, 7074, 8025, 2340, 264, 120, 2341, 2342, 2343, 7077, 120, 2344, 7034, 416, 7034, 7034, 1004, 1004, 1004, 120, 7037, 7254, 7037, 7037, 7236, 2345, 7019, 7019, 7019, 7019, 7019, 7020, 7021, 7021, 7021, 7253, 8033, 313, 2346, 1004, 1004, 7202, 2347, 1004, 1004, 1004, 1004, 1004, 7292, 1004, 1004, 7021, 7021, 7021, 7021, 7021, 7021, 7021, 7021, 7021, 1582, 1004, 1004, 1004, 1004, 1004, 1004, 120, 6019, 7136, 416, 4527, 1272, 7024, 7024, 7024, 7024, 7024, 7024, 7024, 7024, 7024, 3070, 120, 8413, 8922, 120, 237, 3070, 1004, 1004, 1004, 119, 119, 120, 119, 119, 119, 119, 119, 119, 8922, 119, 119, 5068, 5068, 5068, 5068, 5068, 5068, 5068, 5068, 5068, 903, 119, 119, 119, 119, 119, 119, 8026, 8222, 313, 313, 313, 662, 7027, 7027, 7027, 7027, 7027, 7027, 7027, 7027, 7027, 7254, 7028, 7028, 7028, 7028, 7028, 7028, 119, 119, 119, 7029, 7258, 120, 247, 247, 2349, 287, 120, 120, 120, 416, 120, 120, 313, 313, 688, 688, 688, 688, 688, 688, 688, 688, 688, 7032, 7032, 7032, 7032, 7032, 7032, 7032, 7032, 7032, 7082, 7082, 7082, 7082, 7082, 7082, 7082, 7082, 7082, 7168, 120, 120, 120, 416, 416, 7231, 3070, 8945, 7174, 8039, 695, 120, 3070, 7234, 2350, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 119, 119, 313, 2351, 119, 119, 119, 119, 119, 119, 119, 119, 313, 7381, 7381, 7382, 1171, 7133, 7133, 7139, 7139, 119, 119, 119, 119, 119, 119, 119, 7144, 7144, 8988, 7165, 120, 454, 1023, 416, 7149, 247, 5161, 7104, 6536, 7236, 120, 6491, 6492, 6491, 6492, 7171, 120, 7239, 119, 119, 119, 119, 119, 119, 5161, 119, 119, 119, 119, 119, 119, 7216, 119, 2192, 7240, 6644, 4527, 120, 7940, 6529, 120, 7165, 7243, 2193, 119, 119, 119, 119, 119, 119, 6536, 7254, 7259, 7105, 4527, 2194, 8031, 416, 6645, 7257, 7262, 7205, 2352, 7101, 7101, 7101, 7101, 7101, 7101, 7101, 7101, 7101, 2195, 119, 119, 119, 119, 7211, 119, 119, 119, 119, 119, 119, 120, 119, 2192, 7123, 7123, 7123, 7123, 7123, 7123, 7123, 7123, 7123, 2193, 119, 119, 119, 119, 119, 119, 726, 2805, 6139, 6139, 6139, 2194, 8588, 4520, 7197, 7059, 7059, 7059, 7059, 7059, 7059, 7059, 7059, 7059, 7165, 5267, 5267, 217, 2195, 119, 119, 7062, 7231, 6536, 2353, 277, 277, 727, 278, 277, 277, 277, 277, 277, 4521, 280, 277, 264, 7181, 8595, 7310, 7315, 7259, 120, 962, 119, 906, 277, 277, 277, 277, 277, 277, 7263, 7264, 7274, 7279, 8191, 668, 7125, 7764, 5161, 7267, 7278, 7282, 7079, 7079, 7079, 7079, 7079, 7079, 7079, 7079, 7079, 403, 277, 277, 277, 669, 4520, 5155, 7074, 5135, 5135, 5135, 5135, 5135, 5135, 5135, 5135, 5135, 4527, 2355, 119, 119, 1265, 119, 119, 119, 119, 119, 119, 119, 119, 119, 3204, 120, 1265, 8229, 120, 4521, 1265, 7209, 7290, 119, 119, 119, 119, 119, 119, 119, 7223, 7223, 5267, 7136, 1266, 454, 7143, 7143, 7143, 7143, 7143, 7143, 7143, 7143, 7143, 7144, 1266, 7366, 7198, 7289, 1266, 7763, 119, 119, 119, 119, 8219, 7310, 2359, 119, 119, 7765, 119, 119, 119, 119, 119, 119, 1462, 119, 119, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 119, 119, 119, 119, 119, 119, 119, 1463, 1462, 1462, 2365, 2366, 1465, 1462, 1462, 1462, 1466, 1462, 1462, 1467, 1468, 1469, 1462, 2367, 1470, 1462, 1462, 1462, 1462, 119, 119, 119, 1462, 1462, 1462, 1462, 2368, 2366, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 2367, 1471, 1462, 1462, 1462, 1462, 1462, 1462, 277, 277, 5161, 278, 277, 277, 277, 277, 277, 119, 280, 277, 7160, 7161, 7162, 7163, 7163, 7163, 7163, 7163, 7163, 2371, 277, 277, 277, 277, 277, 277, 7637, 7637, 7638, 120, 4527, 668, 7145, 7145, 7145, 7145, 7145, 7146, 7147, 7147, 7147, 7144, 5161, 120, 120, 5267, 8504, 120, 277, 277, 277, 669, 778, 778, 5161, 2372, 1607, 778, 778, 778, 778, 7231, 778, 778, 120, 7201, 5161, 5162, 5161, 7234, 7310, 1265, 4527, 778, 778, 778, 778, 778, 778, 778, 7224, 7224, 7224, 8221, 4527, 1294, 7147, 7147, 7147, 7147, 7147, 7147, 7147, 7147, 7147, 7144, 4527, 7206, 4527, 7950, 9174, 1266, 778, 778, 778, 778, 778, 7231, 778, 778, 778, 778, 778, 778, 7942, 778, 778, 9177, 7235, 7951, 7203, 7212, 1265, 7310, 7315, 7204, 778, 778, 778, 778, 778, 778, 778, 7210, 7314, 7325, 8599, 6529, 2387, 7173, 7173, 7173, 7173, 7173, 7173, 7173, 7173, 7173, 6536, 7291, 1004, 120, 1266, 9195, 6644, 778, 778, 778, 778, 778, 1004, 778, 778, 778, 778, 778, 778, 7231, 778, 778, 3070, 2842, 9288, 8610, 5161, 8220, 7326, 6645, 1575, 778, 778, 778, 778, 778, 778, 778, 7294, 7330, 237, 1004, 6529, 2387, 7173, 7173, 7173, 7173, 7173, 7173, 7173, 7173, 7173, 6536, 3392, 7352, 4527, 5267, 8588, 8906, 778, 778, 778, 6529, 7310, 7173, 7173, 7173, 7173, 7173, 7173, 2852, 7313, 7315, 6536, 7326, 7310, 7207, 5267, 2388, 8223, 7324, 7353, 7329, 2389, 778, 778, 7314, 778, 778, 778, 778, 778, 778, 7331, 778, 778, 7208, 8042, 8042, 8043, 8596, 7334, 7358, 7310, 7310, 778, 778, 778, 778, 778, 778, 778, 7313, 7310, 7314, 7353, 7353, 2399, 1023, 1265, 7353, 7313, 1265, 1265, 7356, 2805, 7357, 3367, 7356, 2400, 3367, 3367, 9288, 3367, 778, 778, 778, 3368, 7353, 7353, 3368, 3368, 2401, 3368, 2842, 7353, 7356, 1576, 7310, 1266, 7357, 8127, 1266, 1266, 9322, 1266, 2400, 778, 778, 2328, 778, 778, 778, 778, 778, 778, 3370, 778, 778, 3370, 3370, 1171, 3370, 5267, 7310, 3392, 7358, 8123, 778, 778, 778, 778, 778, 778, 778, 1265, 7358, 7362, 7310, 7310, 2399, 7310, 2852, 3367, 7361, 7310, 7313, 7310, 7310, 7313, 7314, 120, 2400, 3368, 7350, 7313, 7314, 778, 778, 778, 7386, 7386, 7391, 7391, 5421, 1266, 7396, 7396, 1942, 7389, 7394, 7390, 7372, 9322, 7395, 7399, 120, 7400, 9322, 2400, 119, 119, 3370, 119, 119, 119, 119, 119, 119, 2404, 119, 119, 2405, 2406, 2407, 2408, 2408, 2408, 2408, 2408, 2408, 2409, 119, 119, 119, 119, 119, 119, 2410, 2411, 2411, 2412, 2411, 2413, 2414, 2414, 2414, 2415, 2414, 2414, 2416, 2417, 2418, 2414, 2414, 2419, 2414, 2414, 2414, 2414, 119, 119, 119, 1462, 2411, 2411, 2411, 2411, 2411, 2411, 2414, 2414, 2414, 2414, 2414, 2420, 2414, 2414, 2414, 2414, 2414, 2414, 2421, 2414, 2414, 2414, 2414, 2414, 2414, 366, 3070, 7310, 120, 9034, 7363, 9288, 3070, 5590, 2429, 2430, 2430, 2430, 2430, 2430, 2430, 2430, 2430, 1629, 7377, 2372, 2372, 119, 7791, 8883, 2430, 2430, 2430, 2430, 2430, 2431, 7363, 7277, 7277, 7277, 7277, 7277, 7277, 7277, 7277, 7277, 6744, 7401, 2372, 7796, 7386, 7391, 209, 7274, 120, 7404, 2430, 2430, 2430, 2430, 2430, 2430, 2433, 2434, 2434, 2434, 2434, 2434, 2434, 2434, 2434, 2435, 2372, 7417, 7417, 7791, 1023, 4562, 2434, 2434, 2434, 2434, 2434, 2436, 7417, 7421, 7422, 7427, 2842, 6744, 264, 1023, 7420, 120, 7425, 7430, 120, 7422, 7351, 7351, 7351, 7351, 7351, 7846, 2434, 2434, 2434, 2434, 2434, 2434, 2443, 2444, 2445, 2446, 2446, 2446, 2446, 2446, 2446, 3392, 7466, 7422, 7427, 7442, 7448, 857, 1314, 1314, 1314, 1314, 1314, 1318, 7426, 7431, 7447, 7452, 2852, 5423, 7378, 7378, 7378, 7378, 7378, 7378, 7378, 7378, 7378, 857, 209, 120, 7467, 8588, 1314, 1314, 1314, 1314, 1314, 1314, 2010, 1023, 2451, 2451, 2451, 2451, 2451, 2451, 2451, 2451, 2451, 1050, 208, 9288, 7472, 7467, 7472, 7432, 1311, 1311, 1311, 1311, 1311, 1312, 5161, 7435, 7471, 7479, 857, 209, 857, 7474, 8596, 7213, 7213, 7213, 7213, 7213, 7213, 7213, 7213, 7213, 7481, 7442, 1311, 1311, 1311, 1311, 1311, 1311, 378, 7445, 8188, 7474, 4527, 7472, 7549, 5423, 5448, 2461, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 1656, 120, 120, 9288, 416, 7472, 7448, 2462, 2462, 2462, 2462, 2462, 2463, 1265, 7451, 7573, 7479, 857, 1304, 3504, 3070, 2524, 7224, 7224, 7224, 7224, 7224, 7224, 7224, 7224, 7224, 7453, 7467, 2462, 2462, 2462, 2462, 2462, 2462, 7456, 7470, 119, 7474, 1266, 240, 1346, 221, 2465, 2466, 2466, 2466, 2466, 2466, 2466, 2466, 2466, 2467, 7464, 7464, 7464, 7464, 7464, 7464, 2466, 2466, 2466, 2466, 2466, 2468, 7446, 7446, 7446, 7446, 7446, 7446, 7446, 7446, 7446, 1023, 7472, 7474, 120, 120, 8907, 8225, 7442, 8242, 7477, 7480, 2466, 2466, 2466, 2466, 2466, 2466, 2475, 2476, 2477, 2478, 2478, 2478, 2478, 2478, 2478, 9288, 8500, 7587, 7474, 1089, 4040, 7483, 1337, 1337, 1337, 1337, 1337, 1341, 1265, 7481, 6837, 835, 403, 8235, 5821, 5821, 5821, 7225, 7225, 7225, 7225, 7225, 7225, 7225, 7225, 7225, 7486, 5423, 1337, 1337, 1337, 1337, 1337, 1337, 247, 7490, 7584, 7596, 1266, 120, 7577, 221, 2035, 5450, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 1074, 9424, 120, 416, 9430, 7483, 7492, 1334, 1334, 1334, 1334, 1334, 1335, 1265, 6837, 7495, 7551, 1350, 8135, 3504, 8599, 7489, 7229, 7229, 7229, 7229, 7229, 7229, 7229, 7229, 7229, 7492, 7500, 1334, 1334, 1334, 1334, 1334, 1334, 2505, 7495, 6120, 7952, 1266, 8131, 2060, 208, 7496, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 7942, 9437, 237, 416, 8611, 7942, 209, 2060, 2060, 2060, 2060, 2060, 2061, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 119, 119, 7589, 1368, 119, 119, 119, 119, 119, 120, 1369, 119, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 119, 119, 119, 119, 119, 119, 119, 7500, 7504, 9444, 7504, 7483, 1370, 7514, 7645, 7518, 6120, 7507, 2509, 7507, 6837, 120, 6132, 7502, 7521, 7649, 7508, 416, 8703, 119, 119, 119, 119, 119, 119, 416, 2510, 119, 119, 119, 119, 119, 7492, 1369, 119, 9452, 119, 8046, 8046, 8047, 7591, 7495, 5450, 7514, 903, 119, 119, 119, 119, 119, 119, 1265, 6132, 7497, 120, 120, 1372, 416, 1023, 7516, 7230, 7230, 7230, 7230, 7230, 7230, 7230, 7230, 7230, 7532, 7542, 3504, 7472, 119, 119, 119, 661, 1381, 6875, 7498, 7477, 1266, 120, 2516, 1382, 7383, 7383, 7383, 7383, 7383, 7383, 7383, 7383, 7383, 8709, 7492, 9245, 416, 1383, 3504, 1384, 8509, 1385, 7500, 7495, 1386, 1023, 7593, 6954, 7504, 1387, 7496, 6120, 1388, 7504, 1389, 7497, 1390, 7507, 1391, 1392, 1393, 1381, 7507, 602, 7508, 7474, 416, 7500, 1382, 7509, 7500, 7518, 9254, 7480, 7509, 6950, 6120, 6955, 2048, 6120, 7521, 7498, 1383, 7502, 1384, 2517, 1385, 7522, 7511, 1386, 4824, 7511, 7523, 406, 1387, 7510, 2049, 1388, 7518, 1389, 7510, 1390, 7514, 1391, 1392, 1393, 1381, 7521, 2050, 9463, 416, 6132, 7518, 1382, 7512, 7514, 7514, 7512, 7524, 7523, 4825, 7521, 7597, 9477, 6132, 6132, 416, 1383, 7522, 1384, 2518, 1385, 7516, 7645, 1386, 7560, 7525, 7525, 7562, 1387, 5450, 7648, 1388, 7580, 1389, 7524, 1390, 247, 1391, 1392, 1393, 1381, 120, 3070, 7559, 7532, 1326, 7532, 1382, 3070, 120, 7532, 7526, 7526, 6875, 4825, 6875, 3070, 1327, 3504, 6875, 7538, 1702, 3070, 1384, 7650, 1385, 7538, 7542, 1386, 2519, 416, 7540, 7532, 1387, 247, 7654, 1388, 119, 1389, 120, 1390, 6875, 1391, 1392, 1393, 1703, 2520, 119, 4826, 7593, 8910, 1328, 9184, 7540, 7472, 1089, 3504, 7541, 7544, 7544, 7544, 7544, 7544, 7544, 7544, 7544, 7544, 835, 120, 726, 1381, 7563, 7625, 7593, 7618, 7564, 3504, 1382, 6950, 7541, 7544, 7544, 7544, 7544, 7544, 7545, 7546, 7546, 7546, 1326, 4824, 1383, 7594, 1384, 119, 1385, 7655, 7595, 1386, 7585, 792, 1327, 6950, 1387, 119, 220, 1388, 7659, 1389, 389, 1390, 7474, 1391, 1392, 1393, 1381, 726, 1039, 726, 6919, 4825, 390, 1382, 7546, 7546, 7546, 7546, 7546, 7546, 7546, 7546, 7546, 7552, 3504, 7578, 1328, 1383, 6954, 1384, 221, 1385, 7561, 9566, 1386, 7636, 3034, 7604, 812, 1387, 6920, 4824, 1388, 7605, 1389, 4826, 1390, 120, 1391, 1392, 1393, 1707, 1381, 7598, 120, 1062, 7579, 6921, 6955, 1382, 5513, 5513, 5513, 5513, 5513, 5513, 5513, 5513, 5513, 119, 7565, 4825, 814, 1383, 6922, 1384, 2521, 1385, 857, 7639, 1386, 2048, 8028, 726, 6919, 1387, 1353, 1706, 1388, 7660, 1389, 120, 1390, 7650, 1391, 1392, 1393, 1381, 1354, 2049, 7664, 7653, 6954, 7645, 1382, 4826, 602, 726, 6919, 7567, 3070, 2050, 1355, 8499, 6920, 3070, 3070, 7025, 1383, 7581, 1384, 3070, 1385, 726, 6919, 1386, 1086, 6954, 1086, 2522, 1387, 6921, 6955, 1388, 857, 1389, 406, 1390, 6920, 1391, 1392, 1393, 1381, 7655, 1087, 7619, 1087, 120, 6922, 1382, 8265, 7658, 857, 6954, 6920, 6921, 833, 6955, 833, 7650, 7025, 7601, 3070, 1383, 7566, 1384, 6957, 1385, 3070, 9578, 1386, 6921, 6922, 7622, 120, 1387, 120, 7655, 1388, 2523, 1389, 7582, 1390, 6955, 1391, 1392, 1393, 1381, 6922, 7568, 7583, 120, 7599, 7645, 1382, 5533, 5533, 5533, 5533, 5533, 5533, 5533, 5533, 5533, 7649, 7834, 7660, 3070, 1383, 7691, 1384, 3070, 1385, 3070, 7663, 1704, 3070, 3070, 7600, 8208, 1705, 120, 3070, 1388, 7620, 1389, 7133, 1390, 7701, 1391, 1392, 1393, 2525, 2526, 7575, 264, 247, 7144, 1380, 695, 120, 120, 9580, 7576, 7576, 7576, 7576, 7576, 7576, 7576, 7576, 7576, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 7665, 7621, 2527, 120, 7623, 264, 264, 247, 7668, 2528, 264, 120, 120, 7675, 416, 7608, 120, 9342, 7624, 416, 7104, 7679, 264, 2529, 7680, 2530, 2531, 2532, 120, 7645, 2533, 2534, 7683, 264, 247, 2535, 119, 7648, 2536, 120, 2537, 857, 2538, 264, 2539, 2540, 2541, 1381, 247, 120, 120, 8588, 416, 120, 1382, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 7829, 264, 7645, 8331, 1383, 7809, 1384, 120, 1385, 264, 247, 1386, 264, 7814, 264, 120, 1387, 2542, 120, 1388, 120, 1389, 313, 1390, 264, 1391, 1392, 1393, 1381, 1023, 120, 8346, 313, 416, 8596, 1382, 8502, 4886, 7610, 4878, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 1383, 7749, 1384, 120, 1385, 264, 247, 1704, 247, 8097, 7144, 120, 1705, 120, 2543, 1388, 7133, 1389, 7715, 1390, 264, 1391, 1392, 1393, 1381, 313, 120, 7144, 9595, 416, 7859, 1382, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 7863, 264, 247, 264, 1383, 8339, 1384, 120, 1385, 120, 7859, 1386, 416, 7752, 120, 7782, 2544, 416, 7862, 1388, 120, 1389, 7758, 1390, 6536, 1391, 1392, 1393, 1381, 7028, 7028, 7028, 7028, 7028, 7028, 1382, 8842, 120, 7610, 6969, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2545, 120, 2546, 7137, 1385, 7749, 9338, 1386, 7864, 8364, 120, 2547, 1387, 7827, 7144, 1388, 7867, 1389, 2548, 1390, 3761, 1391, 1392, 1393, 1381, 7641, 7641, 7641, 7641, 7641, 2193, 1382, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 7749, 120, 7869, 7786, 1702, 120, 1384, 7874, 1385, 7144, 7872, 1386, 7789, 7798, 8363, 7877, 1387, 9620, 2195, 2549, 5161, 1389, 7801, 1390, 7763, 1391, 1392, 1393, 1703, 1713, 5616, 5616, 5616, 5616, 5616, 5616, 5616, 5616, 5616, 5673, 5673, 5673, 5673, 5673, 5673, 5673, 5673, 5673, 7611, 7890, 4527, 1714, 7711, 7711, 7711, 7711, 7711, 7893, 1715, 7640, 7640, 7640, 7640, 7640, 7640, 7640, 7640, 7640, 7840, 416, 7864, 9871, 1716, 120, 1717, 3761, 2101, 120, 7895, 1719, 120, 7868, 4520, 5155, 1720, 2193, 7898, 2550, 7837, 1722, 5161, 1723, 247, 1724, 1725, 1726, 1713, 120, 7641, 7641, 7641, 7641, 7641, 7641, 7641, 7641, 7641, 7642, 7642, 7642, 7642, 7642, 7642, 4521, 2195, 6529, 7643, 7782, 1714, 120, 4527, 2551, 9612, 8256, 726, 1715, 6536, 7869, 120, 7678, 7678, 7678, 7678, 7678, 7678, 7678, 7678, 7678, 7873, 1716, 906, 1717, 3761, 1718, 5161, 7675, 1719, 7832, 7844, 3761, 120, 1720, 2193, 7835, 1721, 727, 1722, 857, 1723, 2193, 1724, 1725, 1726, 1713, 120, 3761, 119, 416, 7133, 3204, 7701, 120, 962, 7749, 4527, 2193, 119, 617, 120, 7144, 2552, 2195, 7144, 7645, 7735, 1714, 7708, 120, 2195, 7755, 5161, 656, 1715, 7690, 7690, 7690, 7690, 7690, 7690, 7690, 7690, 7690, 7782, 7782, 2195, 119, 2553, 7900, 1717, 7905, 1718, 6536, 6536, 1719, 120, 7903, 7837, 7908, 1720, 7784, 4527, 1721, 9874, 1722, 5161, 1723, 7181, 1724, 1725, 1726, 1713, 7704, 7704, 7704, 7704, 7704, 7704, 7704, 7704, 7704, 7144, 7705, 7705, 7705, 7705, 7705, 7706, 7707, 7707, 7707, 7144, 120, 1714, 5161, 4527, 8525, 7837, 2805, 120, 1715, 7707, 7707, 7707, 7707, 7707, 7707, 7707, 7707, 7707, 7144, 7786, 7954, 120, 1716, 3070, 1717, 7849, 1718, 1111, 7789, 1719, 7837, 7859, 4527, 7942, 2554, 7794, 8695, 1721, 7942, 1722, 5161, 1723, 2805, 1724, 1725, 1726, 1713, 5839, 7711, 7711, 7711, 7711, 7711, 7711, 7711, 7711, 7711, 7718, 7718, 7718, 7718, 7718, 7718, 7718, 7718, 7718, 7144, 7864, 1714, 120, 4527, 8588, 7837, 5161, 2805, 1715, 7719, 7719, 7719, 7719, 7719, 7720, 7721, 7721, 7721, 7144, 7798, 7890, 8908, 1716,10017, 1717, 7837, 1718, 5161, 7801, 1719, 2555, 7894, 7890, 7838, 1720, 7802, 4527, 1721, 8612, 1722, 7803, 1723, 2805, 1724, 1725, 1726, 1713, 7721, 7721, 7721, 7721, 7721, 7721, 7721, 7721, 7721, 7144, 4527, 7133, 7837, 7715, 7731, 7731, 7732, 661, 661, 7804, 7895, 1714, 7144, 903, 8119, 7104, 5161, 5267, 1715, 7722, 7895, 7842, 119, 8122, 661, 661, 661, 661, 661, 7798, 7900, 7899, 2103, 903, 1717, 7915, 1718, 7915, 7801, 1719, 9951, 7904, 7965, 7918, 1720, 5161, 4527, 1721, 7920, 1722, 7803, 2556, 7843, 1724, 1725, 1726, 1713, 7733, 7733, 7733, 7733, 7733, 7733, 7733, 7733, 7733, 7744, 7745, 7746, 7747, 7747, 7747, 7747, 7747, 7747, 4527, 7804, 264, 1714,10012, 7837, 120, 1265, 120, 7137, 1715, 7757, 7757, 7757, 7757, 7757, 7757, 7757, 7757, 7757, 7144, 7921, 7921,10080, 1716, 7852, 1717, 7926, 1718, 7924, 7965, 1719, 7837, 7925, 7837, 7929, 1720, 1266, 7968, 1721, 8984, 2557, 8588, 1723, 1265, 1724, 1725, 1726, 1713, 7137, 7851, 7757, 7757, 7757, 7757, 7757, 7757, 7757, 7757, 7757, 7144, 7137, 1265, 7757, 7757, 7757, 7757, 7757, 7757, 8596, 1714, 1265, 7144, 6644, 1266, 5161, 7965, 1715, 7777, 7777, 7777, 7777, 7777, 7777, 7777, 7777, 7777, 7969,10090, 7970, 7936, 1716, 1266, 1717, 2090, 1718, 6645, 7973, 1719, 2558, 7970, 1266, 7941, 1720, 7226, 4527, 1721, 9259, 1722, 7974, 1723, 7987, 1724, 1725, 1726, 119, 119, 7977, 1727, 119, 119, 119, 119, 119, 7778, 7778, 7778, 7778, 7778, 7779, 7780, 7780, 7780, 7938, 1266, 7947, 119, 119, 119, 119, 119, 119, 119, 7837, 9263, 7988, 7942, 7228, 1397, 8588, 7837, 7942, 7948, 7991, 2568, 7780, 7780, 7780, 7780, 7780, 7780, 7780, 7780, 7780,10090, 119, 119, 119, 119, 2570, 2571, 2571, 2571, 2571, 2571, 2571, 2571, 2571, 1740, 5267, 7988, 8596, 7949,10095, 5267, 2571, 2571, 2571, 2571, 2571, 2572, 7992, 7960, 7942, 7953, 7942, 7942, 1265, 7942, 8095, 7942, 7942, 7993, 8352, 7970, 5267, 7853, 7853, 7854, 7988, 7996, 2571, 2571, 2571, 2571, 2571, 2571, 2574, 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2576, 1266, 7993, 1023, 7965, 8365, 7998, 2575, 2575, 2575, 2575, 2575, 2577, 7997, 8001, 8008, 8012, 7965, 7386, 1265, 7965, 7386, 8233, 8011, 8015, 7968, 7389, 1575, 7853, 7853, 7854, 7969, 7390, 2575, 2575, 2575, 2575, 2575, 2575, 2579, 2579, 2579, 2579, 2579, 2579, 2579, 2579, 2579, 2372, 1266, 2372, 2372, 6955,10095, 264, 2579, 2579, 2579, 2579, 2579, 2580, 7919, 7919, 7919, 7919, 7919, 7919, 7919, 7919, 7919, 7384,10095, 8048, 7386, 8588, 8048, 8053, 7915, 2842, 2842, 8051, 2579, 2579, 2579, 2579, 2579, 2581, 2584, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2118, 2842, 8023, 8045, 1023, 4562, 8597, 2585, 2585, 2585, 2585, 2585, 2586, 3392, 3392, 1023, 8024, 7384, 5161, 8053, 8058, 8063,10090, 366,10090, 2372, 120, 8056, 8061, 8066, 2852, 2852, 3392, 2585, 2585, 2585, 2585, 2585, 2585, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 4527, 2852, 8048, 8048, 8053, 208, 7836, 2587, 2587, 2587, 2587, 2587, 2588, 2841, 8052, 8057, 8022, 8058, 8048, 8048, 8048, 9525, 209, 2841, 8048, 2372, 5845, 8051, 8062, 8052, 7965, 8052, 8051, 2587, 2587, 2587, 2587, 2587, 2589, 2594, 2595, 2595, 2595, 2595, 2595, 2595, 2595, 2595, 2130, 2372, 8048, 8083, 2852, 8083, 8083, 2595, 2595, 2595, 2595, 2595, 2596, 8086, 8087, 8083, 8083, 8087, 1265, 264, 247,10090,10090, 8086, 8086, 120, 8083, 7937, 7937, 7937, 7937, 7937, 7937, 2595, 2595, 2595, 2595, 2595, 2595, 2597, 2597, 2597, 2597, 2597, 2597, 2597, 2597, 2597, 1266, 8044, 8044, 8044, 8044, 8044, 2372, 2597, 2597, 2597, 2597, 2597, 2598, 8073, 8073, 8073, 8073, 8073, 8073, 8073, 8073, 8073, 1023, 8083, 8088, 8048, 8048,10117, 8094, 8076,10121, 8088, 8091, 2597, 2597, 2597, 2597, 2597, 2599, 2605, 2606, 2606, 2606, 2606, 2606, 2606, 2606, 2606, 2144, 2372, 8088, 857, 8048, 778, 8094, 2606, 2606, 2606, 2606, 2606, 2607, 8092, 8093, 8093, 8093, 8093, 8093, 8093, 8093, 8093, 8093, 8048, 8048, 120, 8048, 857, 8099, 416, 8088, 8051, 8051, 2606, 2606, 2606, 2606, 2606, 2606, 2608, 2608, 2608, 2608, 2608, 2608, 2608, 2608, 2608, 857,10126, 8048, 8048, 8104, 9344, 4040, 2608, 2608, 2608, 2608, 2608, 2609, 8052, 8052, 8048, 8099, 8099, 8104, 8106, 8104, 2842, 120, 8051, 8102, 8106, 8109, 8112, 8103, 8145, 3979, 8111,10130, 2608, 2608, 2608, 2608, 2608, 2610, 2168, 3980, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1428, 8880, 3392, 8106, 8119, 8141, 8129, 1425, 1425, 1425, 1425, 1425, 1427, 8122, 8113, 7495, 8129, 8139, 8150, 3982, 8126, 8164, 8168, 8156, 416, 7495, 7507, 7521, 120, 9265, 6875, 8171, 8134, 1425, 1425, 1425, 1425, 1425, 1425, 2619, 2620, 2620, 2620, 2620, 2620, 2620, 2620, 2620, 1778, 8152, 208, 8921, 8129, 8129, 8129, 2620, 2620, 2620, 2620, 2620, 2621, 7495, 7495, 7495, 264, 389, 9277, 209, 6118, 8134, 120,10135,10139, 416, 8136, 8136, 416, 390, 8189, 366, 120, 2620, 2620, 2620, 2620, 2620, 2620, 2623, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2625, 3504, 6120, 8211, 8137, 8137, 8139, 2624, 2624, 2624, 2624, 2624, 2626, 208, 120, 7507, 555, 8263, 8266, 8336, 6120, 8255, 8144, 8226, 7593, 119, 8269, 247, 8339, 120, 209, 3504, 120, 2624, 2624, 2624, 2624, 2624, 2624, 2633, 2634, 2635, 2636, 2636, 2636, 2636, 2636, 2636, 4824, 3504, 6120, 120, 8139, 6950, 8139, 1438, 1438, 1438, 1438, 1438, 1442, 7507, 120, 7507, 8271, 416, 8266, 8707, 8148, 9035, 8144, 416, 8274, 857, 8704, 8146, 416, 8270, 4825, 3504, 120, 1438, 1438, 1438, 1438, 1438, 1438, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 1153, 3504, 8266, 6130, 8139, 8147, 8193, 1435, 1435, 1435, 1435, 1435, 1436, 7507, 8150, 120, 4826, 5527, 8271, 8276, 8281, 10148, 2842, 7521, 220, 8146, 7593, 8279, 8284, 8275, 8155, 3979, 3504, 1435, 1435, 1435, 1435, 1435, 1435, 119, 119, 3980, 119, 119, 119, 119, 119, 119, 3977, 249, 119, 8147, 8202, 3392,10152, 6950, 6132, 8886, 221, 6132, 119, 119, 119, 119, 119, 119, 264, 1265, 120, 857, 3982, 120, 266, 8510, 416, 8159, 7850, 7850, 7850, 7850, 7850, 7850, 7850, 7850, 7850, 3504, 8150, 120, 3504, 119, 119, 119, 257, 8164, 8271, 7521, 2842, 1266, 8164, 8148, 2524, 120, 6875, 4527, 3504, 3979, 247, 6875, 9166, 8166, 416, 120, 2642, 119, 119, 3980, 119, 119, 119, 119, 119, 119, 416, 249, 119, 2048, 6954, 3392, 3504, 416, 4596, 1086, 8150, 8150, 119, 119, 119, 119, 119, 119, 264, 7521, 7521, 8214, 3982,10162, 266, 8276, 8155, 1087, 2842, 857, 6954, 8157, 8157, 2050, 6955, 3045, 8280, 3979, 6644, 833, 3046, 119, 119, 119, 257, 119, 119, 3980, 119, 119, 119, 119, 119, 119, 8276, 119, 2192, 8158, 8158, 3392, 6955, 6645, 8215, 8231, 8168, 5253, 2193, 119, 119, 119, 119, 119, 119, 8171, 8281, 8232, 3982, 1265, 2659, 8398, 8172, 6856, 6856, 6856,10166, 8285, 7855, 7855, 7855, 7855, 7855, 7855, 7855, 7855, 7855, 2195, 119, 119, 119, 119, 8403, 119, 119, 119, 119, 119, 119, 1266, 119, 119, 8160, 8160, 8160, 8160, 8160, 8160, 8160, 8160, 8160, 119, 119, 119, 119, 119, 119, 119, 8398, 220, 8286, 8286, 416, 2661, 2842, 5267, 1089, 6132, 378, 8289, 602, 8290, 857, 3979, 247, 2662,10178, 416, 835, 120, 119, 119, 119, 3980, 8040, 8040, 8040, 8040, 8040, 8040, 8040, 8040, 8040, 221, 373, 3392, 3504, 8281, 220, 8192, 406, 8217, 2662, 119, 119, 1023, 119, 119, 119, 119, 119, 119, 3982, 119, 2192, 8160, 8160, 8160, 8160, 8160, 8161, 8162, 8162, 8162, 2193, 119, 119, 119, 119, 119, 119, 2663, 221,10188, 8230, 4824, 2659, 8041, 8041, 8041, 8041, 8041, 8041, 8041, 8041, 8041, 120, 8588, 6515, 6515, 6515, 120, 217, 2195, 119, 119, 119, 119, 1023, 119, 119, 119, 119, 119, 119, 4825, 119, 2192, 8162, 8162, 8162, 8162, 8162, 8162, 8162, 8162, 8162, 2193, 119, 119, 119, 119, 119, 119, 8596, 9169, 8596, 9337, 602, 2669, 8044, 8044, 8044, 8044, 8044, 8044, 8044, 8044, 8044, 4826, 120, 120, 9587, 237, 120, 8195, 2195, 119, 119, 119, 119, 1023, 119, 119, 119, 119, 119, 119, 406, 119, 2192, 6139, 6139, 6139, 6139, 6139, 6139, 6139, 6139, 6139, 2193, 119, 119, 119, 119, 119, 119, 2670, 9181, 9610, 8868, 8878, 2669, 8096, 8096, 8096, 8096, 8096, 8096, 8096, 8096, 8096, 8234, 8257, 8257, 8258, 7532, 7532, 7532, 2195, 119, 119, 119, 119, 1023, 119, 119, 119, 119, 119, 119, 8291, 119, 2192, 120, 7593, 240, 8212, 2048, 8294, 1353, 8168, 8168, 2193, 119, 119, 119, 119, 119, 119, 8171, 8171, 1354, 8301, 120, 2673, 2049, 8172, 8159, 726, 8301, 8304, 8173, 8173, 6950, 247, 1355, 8588, 2050,10288, 120, 8306, 2195, 119, 119, 119, 119, 8227, 119, 119, 119, 119, 119, 119, 4824, 119, 2192, 3504, 8174, 8174, 792, 7842, 8518, 8328, 1326, 8164, 2193, 119, 119, 119, 119, 119, 119, 2674, 6875, 120, 8213, 1039, 2673, 8164, 8596, 8166, 1326, 378, 4825, 7593, 8175, 8596, 6875, 8190, 8194, 8196, 7843, 695, 1327, 2195, 119, 119, 119, 119, 8175, 119, 119, 119, 119, 119, 119, 8307, 119, 2192, 5525, 9595, 8176, 220, 6950, 8310, 569, 8228, 4826, 2193, 119, 119, 119, 119, 119, 119, 8176, 8198, 1328, 1023, 1089, 2676, 2677, 8181, 8182, 8183, 8184, 8184, 8184, 8184, 8184, 8184, 835, 8312, 8307, 8199, 4878, 221, 2195, 119, 119, 8315, 8336, 9420, 120, 8311, 2524, 8200, 2677, 119, 119, 8339, 119, 119, 119, 119, 119, 119, 8340, 119, 119, 8218, 2679, 2679, 2679, 2679, 2679, 2679, 2679, 2679, 119, 119, 119, 119, 119, 119, 119, 403, 3034, 120,10304, 8201, 2680, 726, 726, 6919, 366, 8238, 8238, 8238, 8238, 8238, 8238, 8238, 8238, 8238, 8422, 8464,10322, 119, 119, 119, 119, 119, 8428, 119, 119, 119, 119, 119, 119, 361, 119, 119, 812, 6920, 208, 8888, 8468, 9164, 726, 8206, 8475, 119, 119, 119, 119, 119, 119, 119, 8482, 1062, 6921, 209, 8475, 2680, 726, 6919, 8356, 378, 9245, 4520, 5155, 8203, 8464, 8483, 2805, 8359, 814, 6922, 8204, 6920, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 372, 119, 2192, 6920, 6921, 220, 8205, 7859, 4521, 120, 9256, 7859, 2193, 119, 119, 119, 119, 119, 119, 7575, 6921, 6922, 7863, 8521, 2682, 2683, 120, 416, 7576, 7576, 7576, 7576, 7576, 7576, 7576, 7576, 7576, 6922, 8356, 221, 8484, 2195, 119, 119, 9526, 9562,10423, 8359, 8487, 120, 8507, 2683, 277, 277, 8360, 287, 277, 277, 277, 277, 277, 667, 280, 277, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 917, 277, 277, 277, 277, 277, 277, 2685, 2685, 2685, 2685, 2685, 2686, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669, 2684, 2684, 2684, 2684, 2684, 2684, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 278, 8516, 119, 7856,10259, 2805, 2805, 119, 120, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 208, 120, 2524, 8535, 8540, 8517, 1266, 8342, 7610, 8343, 8343, 8343, 8343, 8343, 8343, 8249, 9565, 209, 8339, 7858, 3070, 8847, 9176,10423, 2685, 2685, 2685, 2685, 2685, 2685, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 2690, 2691, 2691, 2691, 2691, 2691, 2691, 2691, 2691, 2221, 3045, 1086, 8342, 8389, 8336, 3046, 2691, 2691, 2691, 2691, 2691, 2692, 7144, 8339, 5821, 5821, 5821,10423, 8535, 1087, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 8539, 906, 833, 2691, 2691, 2691, 2691, 2691, 2691, 2693, 2693, 2693, 2693, 2693, 2693, 2693, 2693, 2693, 2694, 2805, 8259, 8259, 8259, 8259, 8259, 2693, 2693, 2693, 2693, 2693, 2695, 8216, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 120, 7859,10423, 8535, 9613, 8248, 1265, 1304, 1346, 7862, 2693, 2693, 2693, 2693, 2693, 2696, 313, 8260, 8260, 8260, 8260, 8260, 8260, 8765, 8532, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2700, 1023, 1266, 5598, 120, 8845, 8866, 2699, 2699, 2699, 2699, 2699, 2701, 8251, 5590, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 2699, 2699, 2699, 2699, 2699, 2699, 2705, 2706, 2706, 2706, 2706, 2706, 2706, 2706, 2706, 1848, 7842, 8518, 2805, 8776, 8336, 2805, 2706, 2706, 2706, 2706, 2706, 2707, 8251, 8339, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 7624,10423,10496, 8520, 8535, 8344, 8771, 8570, 7843, 2706, 2706, 2706, 2706, 2706, 2706, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2710, 7642, 7642, 7642, 7642, 7642, 7642, 2709, 2709, 2709, 2709, 2709, 2711, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 120, 8371, 8371, 8371, 8371, 8371, 8371, 8371, 8371, 8371, 120, 2709, 2709, 2709, 2709, 2709, 2709, 2717, 2718, 2718, 2718, 2718, 2718, 2718, 2718, 2718, 1860, 8570, 2805, 2805, 8535, 416, 5267, 2718, 2718, 2718, 2718, 2718, 2719, 8305, 8305, 8305, 8305, 8305, 8305, 8305, 8305, 8305, 8252, 8393, 9514, 5267, 6644, 8575, 8535, 8301, 8535, 8617, 8396, 2718, 2718, 2718, 2718, 2718, 2718, 2721, 2721, 2721, 2721, 2721, 2721, 2721, 2721, 2721, 2722, 6645, 8622, 8587, 120, 3204, 8535, 2721, 2721, 2721, 2721, 2721, 2723, 8342, 8538, 8343, 8343, 8343, 8343, 8343, 8343, 8343, 8343, 8343, 8339, 9878, 120, 8323, 8323, 8323, 8323, 8323, 8323, 2721, 2721, 2721, 2721, 2721, 2721, 2729, 2730, 2731, 2732, 2732, 2732, 2732, 2732, 2732, 120, 8535, 8582, 8342, 8581, 8356, 5267, 1503, 1503, 1503, 1503, 1503, 1507, 8342, 8359, 8343, 8343, 8343, 8343, 8343, 8343, 8343, 8343, 8343, 8339, 5267, 120, 120,10634, 2372, 8581, 8647, 1266, 1503, 1503, 1503, 1503, 1503, 1503, 2733, 2734, 2734, 2734, 2734, 2734, 2734, 2734, 2734, 1874, 8696, 8652, 8698, 8701, 8356, 8719, 2734, 2734, 2734, 2734, 2734, 2735, 8342, 8359, 8362, 8362, 8362, 8362, 8362, 8362, 8362, 8362, 8362, 8359, 2372, 6644, 2372, 8781, 8363,10637, 120, 8586, 2734, 2734, 2734, 2734, 2734, 2734, 2737, 2737, 2737, 2737, 2737, 2737, 2737, 2737, 2737, 2738, 6645, 8724, 2372, 8729, 8389, 8782, 2737, 2737, 2737, 2737, 2737, 2739, 8342, 7144, 8362, 8362, 8362, 8362, 8362, 8362, 8362, 8362, 8362, 8359,10653, 120,10653, 8719, 7763, 8716, 8716, 8717, 2737, 2737, 2737, 2737, 2737, 2737, 2745, 2746, 2747, 2748, 2748, 2748, 2748, 2748, 2748, 8849, 8867, 7137, 1023, 8389, 8405, 8443, 1514, 1514, 1514, 1514, 1514, 1518, 7144, 8408, 7789, 9877, 8540, 8545, 8259, 8259, 8259, 8259, 8259, 8259, 8259, 8259, 8259, 8544, 8549, 217, 120, 220, 1514, 1514, 1514, 1514, 1514, 1514, 1904, 120, 2749, 2749, 2749, 2749, 2749, 2749, 2749, 2749, 2749, 1216,10658, 8879, 8861, 8446, 8452, 8443, 1511, 1511, 1511, 1511, 1511, 1512, 8450, 8455, 7789, 221, 8461, 5161, 6835, 8261, 8261, 8261, 8261, 8261, 8261, 7801, 8513, 8514, 8262, 416, 120, 120, 1511, 1511, 1511, 1511, 1511, 1511, 119, 119, 120, 656, 119, 119, 119, 119, 119, 4527, 119, 119, 8384, 8384, 8384, 8384, 8384, 8384, 8384, 8384, 8384, 903, 119, 119, 119, 119, 119, 119, 8139, 8139, 8139, 8389, 8342, 665, 8362, 8362, 8362, 8362, 8362, 8362, 7144, 2750, 5161, 8359, 1023, 8910, 8461, 8391,10261, 9259, 119, 119, 119, 119, 119, 7801, 119, 269, 119, 119, 119, 119, 270, 119, 119, 2751, 2751, 2752, 726, 8766, 416, 8535, 4527, 8535, 119, 119, 119, 119, 119, 119, 119, 8511, 8539, 9282, 8539, 6837, 456, 8570, 8264, 8264, 8264, 8264, 8264, 8264, 8264, 8264, 8264, 120, 8574, 727, 1023,10658, 8383, 119, 119, 119, 119, 277, 277, 120, 2265, 277, 277, 277, 277, 277, 962, 280, 277, 8540, 9591,10658, 1265, 1350, 8373, 8767, 1265, 8543, 906, 277, 277, 277, 277, 277, 277, 8529, 8529, 8530, 120, 8570, 668, 8385, 8385, 8385, 8385, 8385, 8386, 8387, 8387, 8387, 8574, 857, 1266, 2267, 8393, 8869, 1266, 277, 277, 277, 669, 277, 277, 8396, 278, 277, 277, 277, 277, 277, 8401, 280, 277, 2753, 2753, 2754, 8099,10653, 9529, 8846, 1265, 8584, 906, 277, 277, 277, 277, 277, 277, 8531, 8531, 8531, 8531, 8531, 668, 8387, 8387, 8387, 8387, 8387, 8387, 8387, 8387, 8387, 8713, 8713, 8713, 8713, 8713, 208, 1266, 277, 277, 277, 669, 2759, 2760, 2760, 2760, 2760, 2760, 2760, 2760, 2760, 2278, 1023, 209, 120, 8405, 8405, 8443, 2760, 2760, 2760, 2760, 2760, 2761, 8408, 8408, 7789, 8545, 8575,10653, 5161, 8409, 8550, 8449, 8535, 8548, 8410, 8410, 8512, 8579, 8553, 120, 8538, 8894, 2760, 2760, 2760, 2760, 2760, 2760, 2762, 2762, 2762, 2762, 2762, 2762, 2762, 2762, 2762, 857, 4527, 857, 8411, 8411, 9336, 120, 2762, 2762, 2762, 2762, 2762, 2763, 5821, 5821, 5821, 5821, 5821, 5821, 5821, 5821, 5821, 8535, 8570, 8570, 8104, 120, 8106, 120, 9540, 8538, 8573, 8573, 2762, 2762, 2762, 2762, 2762, 2764, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1536, 9949,10653, 8844, 8452, 8452, 8452, 1533, 1533, 1533, 1533, 1533, 1535, 8455, 8455, 8455, 8570,10653, 8769, 1265, 8456, 8535, 8456, 8575, 8573, 8457, 8457, 8122, 8533, 8533, 8534, 8578, 8539, 1533, 1533, 1533, 1533, 1533, 1533, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 974, 1266, 8535, 8458, 8458, 8461, 8461, 1529, 1529, 1529, 1529, 1529, 1530, 8539, 7801, 7801, 8535, 8535, 8535, 1265, 120, 8467, 8467, 8588, 8538, 8538, 8538, 8469, 8533, 8533, 8534, 8598,10857, 1529, 1529, 1529, 1529, 1529, 1529, 2775, 2775, 2775, 2775, 2775, 2775, 2775, 2775, 2775, 8791, 1266, 8803, 8819, 8461, 8470, 9339, 2775, 2775, 2775, 2775, 2775, 2776, 7801, 8560, 8560, 8560, 8560, 8560, 8560, 8560, 8560, 8560, 8617, 8622, 8469, 8792, 1575, 8804, 8820, 8563, 8620, 8625, 2775, 2775, 2775, 2775, 2775, 2775, 119, 119, 8617, 656, 119, 119, 119, 119, 119, 8588, 119, 119, 8470, 8621,10870, 1004,10876, 416, 8622, 8627, 8647, 903, 119, 119, 119, 119, 119, 119, 8322, 8626, 8631, 8651,10072, 665, 2842, 8911, 8835, 7690, 7690, 7690, 7690, 7690, 7690, 7690, 7690, 7690, 8595, 8627, 8632, 8647, 119, 119, 119, 8652, 8596, 8630, 8635, 8650, 120, 120, 857, 8655, 8831,10881, 120, 3392, 2779, 119, 119, 8652, 119, 119, 119, 119, 119, 119, 443, 119, 119, 8657, 8656, 120, 2852, 8881, 8657, 8266, 8882, 8660, 119, 119, 119, 119, 119, 119, 119, 8661, 8662, 8672, 8672, 8677, 445, 8677, 8682, 8719, 8665, 8675, 8692, 8680, 8707, 8676, 8685, 8722, 8681, 237,10262, 8704, 237, 119, 119, 119, 119, 277, 277, 8708, 2781, 277, 277, 277, 277, 277, 667, 280, 277, 8724, 8718, 8718, 8718, 8718, 8718, 8719, 8724, 8727, 917, 277, 277, 277, 277, 277, 277, 8729, 8723, 8728, 8729, 8734, 690, 1023, 2842, 8732, 8734, 8739, 8749, 8737, 8754, 8733, 857, 857, 8719, 8742, 8753, 8738, 8757, 277, 277, 277, 669, 277, 277, 8723, 278, 277, 277, 277, 277, 277, 667, 280, 277, 3392, 2526, 8922, 8922, 8150, 8150, 8150, 8099, 8694, 917, 277, 277, 277, 277, 277, 277, 7104, 2852, 8103, 120, 416, 690, 8104, 8719, 120, 8347, 8347, 8347, 8347, 8347, 8347, 8722, 778, 8111, 8348, 8099, 8104, 8106, 277, 277, 277, 669, 778, 8102, 8109, 8112, 120, 9524, 6837, 8719, 2783, 1557, 1557, 1558, 1919, 2788, 1557, 1557, 1557, 1557, 120, 1557, 1557, 416, 6644, 9873, 3041, 9545, 8106, 1089, 9284, 778, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 8113, 8784, 835, 9951, 1265, 2310, 8780, 8790, 6645, 8884, 7495, 8781, 8791, 8527, 8527, 8527, 8527, 8527, 8527, 8527, 8527, 8527, 1557, 1557, 1557, 1557, 1557, 1558, 1919, 2788, 1557, 1557, 1557, 1557, 1266, 1557, 1557, 8782, 8792, 240, 9955,10888, 8876, 416, 9353, 8769, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 2311, 8122, 8796, 1023, 1265, 2310, 9956, 8802, 8775, 8889, 8912, 7507, 8803, 8528, 8528, 8528, 8528, 8528, 8528, 8528, 8528, 8528, 1557, 1557, 1557, 1557, 1557, 1558, 2312, 1557, 1557, 1557, 1557, 1557, 1266, 1557, 1557, 9553, 8804, 406, 120,10894, 8910, 9964, 8266, 8784, 2313, 1557, 1557, 1557, 1557, 1557, 1557, 6837, 7495, 8270, 1023, 1265, 1927, 120, 247, 8786, 602, 8850, 2791, 120, 8531, 8531, 8531, 8531, 8531, 8531, 8531, 8531, 8531, 1557, 1557, 1557, 1557, 1557, 1558, 2312, 1557, 1557, 1557, 1557, 1557, 1266, 1557, 1557, 9419, 9340, 406, 220, 416,10903, 9356, 8796, 8812, 2313, 1557, 1557, 1557, 1557, 1557, 1557, 7507, 7521, 1023, 416,10912, 1927, 120, 8798, 857, 8580, 8580, 8580, 8580, 8580, 8580, 8580, 8580, 8580, 8829, 8769, 8784, 221, 1557, 1557, 1557, 8575, 8893, 8171, 8122, 7495, 2792, 1004, 1004, 8922, 2805, 1943, 1004, 1004, 1004, 1004, 4661, 1004, 1004, 416, 416,10065, 2524, 8873, 3034, 4562, 2898, 8812, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1265, 7521, 8896, 1023, 857, 1578, 2049, 9556, 8814, 8583, 8583, 8583, 8583, 8583, 8583, 8583, 8583, 8583, 2050, 120, 2900, 3617, 1004, 1004, 1004, 1265, 8818, 8899, 8946, 8927, 1266, 8819, 3046, 2331, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 8752, 8752, 8752, 8752, 8752, 8752, 8752, 8752, 8752, 8796, 8812, 8829, 1266, 1265, 8820, 120, 8749, 857, 7507, 7521, 8171, 2816, 2817, 2817, 2817, 2817, 2817, 2817, 2817, 2817, 2817, 8904, 3070, 416, 416, 416, 2842, 8266, 8905, 857, 4040, 857, 8932, 1266, 1265, 8269, 8693, 8693, 8693, 8693, 8693, 8693, 2816, 2818, 2818, 2818, 2818, 2818, 2818, 2818, 2818, 2818, 416,10919, 8922,10923, 9127, 3392, 8714, 8714, 8714, 8714, 8714, 8714, 1266, 1004, 1004, 8715, 1265, 1004, 1004, 1004, 1004, 1004, 2852, 1004, 1004, 8922, 2048, 1023, 7593, 6873, 6875, 8838, 8852, 8925, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 120, 120, 120, 2049, 4824, 2820, 8710, 8710, 8710, 8710, 8710, 8710, 8710, 8710, 8710, 2050, 6950, 3504, 3504, 3504, 416, 8853, 1004, 1004, 1004, 1004, 1004, 1023, 1265, 1004, 1004, 1004, 1004, 1004, 4825, 1004, 1004, 6856, 6856, 6856, 6856, 6856, 6856, 6856, 6856, 6856, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 8872, 8885, 8854, 9972, 8856, 2820, 8713, 8713, 8713, 8713, 8713, 8713, 8713, 8713, 8713, 4826, 8784, 8796, 8951, 8352,10188, 120, 1004, 1004, 1004, 7495, 7507, 1023, 8718, 8718, 8718, 8718, 8718, 8718, 8718, 8718, 8718, 8793, 8805,10185, 9976, 2821,10064, 208, 8973, 8980, 2822, 1004, 1004, 1023, 1265, 1004, 1004, 1004, 1004, 1004, 4661, 1004, 1004, 2805, 209, 7593, 120, 8794, 8806, 4661, 2898, 8784, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 2898, 7495, 9494, 1023, 4661, 2832, 1606, 1292, 8786, 9195, 2372, 6954, 1023, 8793, 2898, 6950, 8812, 2833, 4661, 389, 2900, 8887, 1004, 1004, 1004, 7521, 1023, 8922, 2898, 2900, 2834, 390, 1970, 403, 120, 6875, 2805, 8821, 8926, 8794, 1023, 6955, 247, 2900, 2833, 1004, 1004, 120, 1265, 1004, 1004, 1004, 1004, 1004, 8922, 1004, 1004, 2900, 1086, 8870, 9243, 9200, 6875, 8822, 3504, 8926, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 4824, 120, 8891, 1087, 416, 2832, 8764, 8764, 8764, 8764, 8764, 8764, 8764, 8764, 8764, 833, 8796, 2833, 3504, 120, 8829, 1089, 1004, 1004, 1004, 7507, 8812, 1023, 726, 8171, 4825, 8838, 8798, 835,11057, 7521, 8834, 8805, 247, 8855, 8875, 9027, 8814, 120, 2833, 119, 119, 8821, 119, 119, 119, 119, 119, 119, 119, 119, 119, 6954, 8877, 792, 3504, 1086, 9031, 8806, 4826, 8829, 119, 119, 119, 119, 119, 119, 119, 8822, 8171, 208, 1039, 8922, 2838, 1087, 8829, 8834, 726, 6919, 8848, 8925, 8836, 6955, 9027, 8171, 695, 833, 209, 8890,11092, 119, 119, 119, 119, 119, 119, 8836, 119, 119, 119, 119, 119, 119, 8960, 119, 119, 120, 8837, 6920, 3070, 6954, 1353, 8339, 8922, 8864, 903, 119, 119, 119, 119, 119, 119, 8837, 1354, 8926, 6921, 8874, 662, 8839, 8839, 8839, 8839, 8839, 8839, 8839, 8839, 8839, 1355, 416, 9431, 6955,10068, 6922, 8871, 119, 119, 119, 8839, 8839, 8839, 8839, 8839, 8840, 8841, 8841, 8841, 8841, 8841, 8841, 8841, 8841, 8841, 8841, 8841, 8841, 9432, 3659, 8922, 8927, 8927, 8927, 3660, 2839, 287, 6957, 8925, 8930, 2805, 8930, 8892, 8931, 8927, 688, 688, 688, 688, 688, 688, 688, 688, 688, 8842, 8931, 8184, 8184, 8184, 8184, 8184, 8184, 8184, 8184, 8184, 9205, 8927, 3070, 8932, 8932, 8922, 8922, 8963, 8251, 8930, 8922, 8935, 120, 8925, 8337, 8936, 7758, 8926, 8925,10237, 120, 9587, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 2840, 688, 688, 688, 688, 688, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 8922, 2841, 2841, 3659, 10067,11004, 8927, 120, 3660, 8922, 220, 8926, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 2844, 8922, 8922, 2845, 8938, 2846, 8975, 8951, 8352, 2847, 8925, 8960, 2848, 2849, 2850, 8359, 8922, 2851, 8972, 8979, 8339, 9048, 2852, 2841, 2841, 9507,10081, 8965, 9163, 1326, 8938, 8842, 9056, 8184, 8184, 8184, 8184, 8184, 8843, 8181, 8181, 8181, 120, 8198, 2853, 119, 119, 1326, 119, 119, 119, 119, 119, 119, 120, 119, 2192, 9430, 120, 1327, 9245, 8199, 9431, 120, 9127, 8960, 2854, 119, 119, 119, 119, 119, 119, 8200, 8339, 9137, 9879, 8842, 2659, 8181, 8181, 8181, 8181, 8181, 8181, 8181, 8181, 8181, 9432, 8966, 9283, 8857, 9182, 1328, 9580, 2195, 119, 119, 119, 119, 120, 119, 119, 119, 119, 119, 119, 8201, 119, 2192, 8198, 8198, 8198, 8913, 8913, 8913, 8913, 8913, 8951, 2193, 119, 119, 119, 119, 119, 119, 8966, 8975, 8199, 8199, 8199, 2659,10289, 8342, 120, 8960, 8359, 8859, 726, 8352, 8200, 8200, 8200, 8977, 8339, 9006, 8975, 8363, 2195, 119, 119, 9093, 9102, 9951, 8396, 8359, 2855, 277, 277, 8198, 278, 277, 277, 277, 277, 277, 8858, 280, 277, 812, 8363,10423, 9097, 9106, 8201, 8201, 8201, 8199, 2857, 277, 277, 277, 277, 277, 277, 10237, 1062, 9968, 1171, 8200, 668, 8342, 9009, 8975, 8862, 726, 6919, 8963, 9093, 9102, 2805, 9013, 8359, 814, 9015, 120, 7758, 277, 277, 277, 669, 119, 119, 9018, 119, 269, 505, 119, 119, 119, 270, 119, 119, 8201, 8860, 9195, 6920, 1265,11001, 9513, 9006, 9024, 119, 119, 119, 119, 119, 119, 119, 8396, 8408, 120,10423, 6921, 456, 8913, 8913, 8913, 8913, 8913, 8913, 8913, 8913, 8913, 416, 726, 6919, 1266, 9138, 9084, 6922, 119, 119, 119, 119, 726, 120, 8863, 7789, 9142, 9037, 9048, 8914, 8914, 8914, 8914, 8914, 8914, 9044, 9055,10318, 8915, 9242, 470, 119, 119, 6920, 119, 119, 119, 119, 119, 119, 120, 119, 119, 727, 8261, 8261, 8261, 8261, 8261, 8261, 6921, 9195, 119, 119, 119, 119, 119, 119, 119, 7566, 962, 120, 9199,10423, 662, 120, 8865, 6922, 8916, 8916, 8916, 8916, 8916, 8916, 8916, 8916, 8916, 8985, 9024, 9980, 9058, 119, 119, 119, 5161, 9616, 9200, 8408, 9061, 120, 9127, 8918, 8918, 8918, 8918, 8918, 8918, 9204, 9136, 2860, 119, 119, 416, 119, 119, 119, 119, 119, 119, 9015, 119, 119, 120, 5161, 4527, 9170, 9984, 9491, 9018, 9088, 9099, 119, 119, 119, 119, 119, 119, 119, 9091, 8455, 9020,10423, 10423, 1816, 8917, 8917, 8917, 8917, 8917, 8917, 8917, 8917, 8917, 4527, 9006, 2867, 9138, 120, 9111,11380, 119, 119, 119, 8396, 9141, 120, 9021, 7801, 1819, 9015, 9012, 8919, 8919, 8919, 8919, 8919, 8919, 1023, 9018, 5845, 8920, 9972, 2867, 119, 119, 9019, 119, 119, 119, 119, 119, 119, 120, 119, 119, 8968, 8969, 8970, 8971, 8971, 8971, 8971, 8971, 8971, 119, 119, 119, 119, 119, 119, 119, 9143, 9257, 2868, 2869, 9978, 1816,10110, 9558, 9146, 8937, 8937, 8937, 8937, 8937, 8937, 8937, 8937, 8937, 9084, 120,11380, 9205, 119, 119, 119, 8932, 9245, 7789, 2868, 2869, 119, 119, 9209, 2873, 119, 119, 119, 119, 119, 119, 119, 119, 416, 8347, 8347, 8347, 8347, 8347, 8347, 3204, 9099, 119, 119, 119, 119, 119, 119, 119, 120, 8455, 6515, 6515, 6515, 454, 120, 8941, 8941, 8941, 8941, 8941, 8941, 8941, 8941, 8941, 416, 8829, 8829, 8829,11420,10207, 119, 119, 119, 119, 778, 778, 120, 778, 778, 778, 778, 778, 778, 9986, 778, 2897, 8983, 8983, 8983, 8983, 8983, 8983, 8983, 8983, 8983, 2898, 778, 778, 778, 778, 778, 778, 9354, 9354, 9355, 4520, 5155, 2899, 7105, 7105, 7105, 7105, 7105, 7105, 7105, 7105, 7105,10839,11420,11420, 9994, 11380, 120, 1023, 2900, 778, 778, 778, 778, 120, 778, 778, 778, 778, 778, 778, 4521, 778, 2897, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 2898, 778, 778, 778, 778, 778, 778, 2901, 9115, 9167, 9024, 1171, 2899, 7842, 8518, 9980, 8613, 9118, 9084, 8408, 8347, 8347, 8347, 8347, 8347, 8347, 9030, 7789, 120, 2900, 778, 778, 778, 778, 9086, 778, 778, 778, 778, 778, 778, 120, 778, 2897, 7843, 120, 6644, 9178,11380,10001,11380, 9015, 9024, 2898, 778, 778, 778, 778, 778, 778, 9018, 8408, 899, 10263,10002, 2905,10677, 9019, 9030, 6645, 9534, 9180, 9020, 9032, 9043, 9043, 9043, 9043, 9043, 9043, 9043, 9043, 2900, 778, 778, 778, 778, 8852, 778, 778, 778, 778, 778, 778, 120, 778, 2897, 9257, 9021, 9033, 403,10010,11380, 10681, 9210, 9024, 2898, 778, 778, 778, 778, 778, 778, 2906, 8408, 9214, 9111, 8853, 2905,11444, 120, 1304, 9259, 4520, 119, 7801, 9032, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 2900, 778, 778, 778, 778, 416, 778, 778, 778, 778, 778, 778, 9099, 778, 2897, 9492, 8854, 9033, 247, 4521,10640, 8455, 9168, 120, 2898, 778, 778, 778, 778, 778, 778, 8516, 119, 9107, 9179, 9438, 2908, 9173, 2909, 9079, 9079, 9079, 9079, 9079, 9079, 9079, 9079, 9079, 9168, 9195, 9200, 9088, 9195, 2910, 2911, 2911, 120, 9198, 9203, 9108, 9091, 9439, 8517, 9199, 2912, 119, 119, 9096, 119, 119, 119, 119, 119, 119, 6644, 2917, 119, 9080, 9080, 9080, 9080, 9080, 9081, 9082, 9082, 9082, 119, 119, 119, 119, 119, 119, 119,10082,10082,10083,10636, 6645, 2918, 9082, 9082, 9082, 9082, 9082, 9082, 9082, 9082, 9082, 9244, 5821, 5821, 5821,11446, 9205, 1023, 119, 119, 119, 1815, 119, 119, 9208, 119, 119, 119, 119, 119, 119, 2919, 2920, 119, 2921, 2922, 2922, 2922, 2922, 2922, 2922, 2922, 2922, 2923, 119, 119, 119, 119, 119, 119, 2922, 2922, 2922, 2922, 2922, 2924, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 119, 119, 119, 2925, 2922, 2922, 2922, 2922, 2922, 2922, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 2917, 9245, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 2919, 119, 9258,11461, 5267, 9099, 9099, 9111, 2919, 2919, 2919, 2919, 2919, 2938, 8455, 8455, 7801, 9210, 9215, 8617, 9225, 9105, 9105, 9113, 9230, 9213, 9218, 9107, 9229, 8617, 8621, 9445, 9233, 9115, 2919, 2919, 2919, 2919, 2919, 2919, 119, 119, 9118, 119, 119, 119, 119, 119, 119, 9119, 2917, 119, 5267, 9108, 9120,11615, 1265, 9446,11615, 9115, 9115, 119, 119, 119, 119, 119, 119, 119, 9118, 9118, 8516, 119, 5161, 2945, 9241, 9119, 9173, 9288, 9111, 9111, 9121, 9120, 9171, 9171, 5267, 2946, 1266, 7801, 7801, 9195, 119, 119, 119, 2947, 9113, 9245, 9175, 9198, 2948, 9122, 9122, 8517, 4527, 9255, 9288, 5267,10935, 9121, 120, 9293, 120,10188, 2946, 119, 119, 9292, 119, 119, 119, 119, 119, 119, 5161, 2917, 119, 9123, 9123, 9520, 9257,10208, 9288, 9172, 9172, 9172, 119, 119, 119, 119, 119, 119, 119, 9259, 8617, 9293,10066, 1087, 2945, 9288, 9293, 9264, 8620, 1265, 4527, 9245, 9297, 9291, 9296, 833, 2946, 5161, 9192, 9192, 9193, 119, 119, 119, 2947, 1004, 9172, 9172, 9172, 9172, 9172, 9172, 9172, 9172, 9172, 1004, 9536, 9298, 9298, 1266, 9288, 9288, 9195, 2946, 366, 9301,10237, 4527, 9254, 9302,11620, 9292, 9292, 2956, 2957, 2957, 2957, 2957, 2957, 2957, 2957, 2957, 2435, 5267, 1004, 5267, 6955, 9303, 11002, 2957, 2957, 2957, 2957, 2957, 2958, 9306, 9228, 9228, 9228, 9228, 9228, 9228, 9228, 9228, 9228, 9288, 9288, 5267, 9288, 5267, 9322, 209, 9225, 9291, 9291, 2957, 2957, 2957, 2957, 2957, 2957, 2959, 2959, 2959, 2959, 2959, 2959, 2959, 2959, 2959,10237,11620, 9327, 9322, 9288, 9322, 4562, 2959, 2959, 2959, 2959, 2959, 2960, 9325, 9326, 9322, 9322,11620, 9322,11015, 9327, 6954, 1265, 9325, 9327, 9322, 9325, 9326, 9288, 209, 5195, 9331, 9330, 2959, 2959, 2959, 2959, 2959, 2961, 2010, 3368, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1631, 6955, 1266, 9288, 9288, 9288, 9288, 1628, 1628, 1628, 1628, 1628, 1630, 9291, 9292, 9288, 9345, 9292, 9288, 3370, 9345, 9288, 1265, 9291, 9332, 9537, 9291, 9351, 9348, 120, 5195, 9496,11615, 1628, 1628, 1628, 1628, 1628, 1628, 2970, 3368, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 9332, 8711, 1266, 1089, 9352, 1942, 9361, 9361, 9366, 9371, 217, 1265, 208,11615, 9364, 835, 9369, 9374, 9365, 3370, 9185, 9185, 9185, 9185, 9185, 9185, 9185, 9185, 9185, 209, 2970, 1023, 2450, 2450, 2450, 2450, 2450, 2971, 2447, 2447, 2447, 1266, 2805, 9366, 8711, 9371, 9376, 9376, 120, 9523, 5195,10677, 1265, 208, 9370, 9379, 9375, 9380, 2372, 2372, 3368, 9189, 9189, 9189, 9189, 9189, 9189, 9189, 9189, 9189, 209, 2970, 1266, 2447, 2447, 2447, 2447, 2447, 2447, 2447, 2447, 2447, 1266, 9361, 9366, 9381,11615, 9381, 10644, 3370,10707, 9386, 1265, 2842, 208, 9384, 9385, 1265, 2372, 9389, 2372, 9189, 9189, 9189, 9189, 9189, 9194, 9194, 9194, 9194, 9194, 209, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1050, 1266, 9371, 3392, 9376, 9396, 1266, 1624, 1624, 1624, 1624, 1624, 1625, 1265,11615,11673, 9401, 857, 9453, 9402, 2852, 9396, 9190, 9190, 9190, 9190, 9190, 9190, 2842, 9399, 9406, 9191, 9402, 1624, 1624, 1624, 1624, 1624, 1624, 378, 9405, 9333, 9566, 1266, 9454, 1346, 7493, 9335, 2981, 2982, 2982, 2982, 2982, 2982, 2982, 2982, 2982, 2467, 120, 3392, 7495,11676, 9464, 9407, 2982, 2982, 2982, 2982, 2982, 2983, 1265, 9410, 120, 9478, 9512, 3504, 2852, 237, 416, 9194, 9194, 9194, 9194, 9194, 9194, 9194, 9194, 9194, 9465, 3504, 2982, 2982, 2982, 2982, 2982, 2982, 9539, 9437,10221, 9479, 1266, 1350, 9438, 221, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 8714, 8714, 8714, 8714, 8714, 8714, 220, 2984, 2984, 2984, 2984, 2984, 2985, 406, 1265, 9439, 237, 9515, 857, 9447, 9471, 1023, 5195,10710, 9358, 9358, 9358, 9358, 9358, 8171, 9566, 120, 3368, 2984, 2984, 2984, 2984, 2984, 2986, 1576, 221, 9570, 9527, 9566, 1266, 1023, 221, 2035, 3504, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1658, 9444, 9609, 3370,10768,11679, 9445, 1655, 1655, 1655, 1655, 1655, 1657, 9400, 9400, 9400, 9400, 9400, 9400, 9400, 9400, 9400, 1265, 9452, 120, 8852, 9463, 9587, 9453, 9396, 5195, 9464, 9446, 1655, 1655, 1655, 1655, 1655, 1655, 2995, 3368, 2482, 2482, 2482, 2482, 2482, 2482, 2482, 2482, 2482, 9499, 9566, 1266, 4040, 9454, 8853, 9477, 9465, 2328, 9569,11041, 9478, 220, 9418, 9418, 9418, 9418, 9418, 9418, 3370, 9253, 9253, 9253, 9253, 9253, 9253, 9253, 9253,11682, 7495, 7495, 9447, 7505, 9497, 1023, 8852, 247, 9479, 247, 8854, 6644, 120, 120, 120, 120, 416, 221, 2995, 120, 2482, 2482, 2482, 2482, 2482, 2996, 2479, 2479, 2479, 3504, 3504, 3504, 3504, 220, 6645, 9528, 8853, 9530, 9532, 7593,10234, 220, 9357, 9357, 9357, 9357, 9357, 9357, 9357, 9357, 9357, 9358, 9358, 9358, 9358, 9358, 9358, 9358, 9358, 9358, 9566, 7787, 9498, 1023, 237, 7507, 240, 221, 6950, 7593, 8854, 9570, 1023, 120, 9493, 221, 2995, 120, 2479, 2479, 2479, 2479, 2479, 2479, 2479, 2479, 2479, 9359, 9359, 9359, 9359, 9359, 9359, 9455, 3504, 7507, 9360, 9471, 6950, 220, 9417, 416, 247, 208,10111, 120, 8171, 120, 1023, 8764, 8764, 8764, 8764, 8764, 8764, 8764, 8764, 8764, 8339, 9455, 209, 416, 3504, 9531, 3504, 9587, 247, 120, 1023, 9516, 1023, 120, 7507, 221, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1074, 120, 7519, 7521, 416, 3504, 9587, 1651, 1651, 1651, 1651, 1651, 1652, 9860, 120, 120, 389, 9603, 3504, 9456, 9456, 9456, 9456, 9456, 9456, 9456, 9456, 9456, 390, 120, 120, 3504, 3504, 1651, 1651, 1651, 1651, 1651, 1651, 235, 235, 9574, 235, 235, 235, 235, 235, 235, 235, 235, 235, 9456, 9456, 9456, 9456, 9456, 9457, 9458, 9458, 9458, 235, 235, 235, 235, 235, 235, 235, 120,11686,10833,10981, 120, 3014, 9458, 9458, 9458, 9458, 9458, 9458, 9458, 9458, 9458, 7521,11689, 9466, 120, 1353, 120, 7521, 235, 235, 235, 235, 2505, 120, 247, 120, 416, 1354, 2060, 120,10220, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 3504, 1355, 3504, 9861, 9517, 9881, 3504, 2060, 2060, 2060, 2060, 2060, 2061, 2060, 2060, 3017, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 119, 119, 9466, 2510, 119, 119, 119, 119, 119, 247, 1369, 119, 120, 6954, 120, 9533, 7593, 2193, 8852, 9600, 120, 119, 119, 119, 119, 119, 119, 119, 8396, 120, 416, 3504, 7789, 1370, 9467, 9467, 9467, 9467, 9467, 9467, 9467, 9467, 9467, 6955, 120, 6950, 2195,10774, 8853, 9554, 119, 119, 119, 119, 404, 404, 9555, 602, 404, 404, 404, 404, 404, 404, 404, 404, 9467, 9467, 9467, 9467, 9467, 9468, 9469, 9469, 9469, 404, 404, 404, 404, 404, 404, 404, 8854, 9500, 9538, 120, 9686, 3022, 9469, 9469, 9469, 9469, 9469, 9469, 9469, 9469, 9469, 9698, 120, 9471,11696, 9566, 9471, 9471, 404, 404, 404, 404, 8171, 9569, 9644, 8171, 8171,10219, 4824, 9473,11699,10275, 9473, 8396, 416, 3023, 3027, 9480, 9480, 7532, 7532, 7532, 7532, 7532, 7532, 7532, 7532, 7532, 9487, 9488, 9489, 9490, 9490, 9490, 9490, 9490, 9490, 726, 4825, 9501, 9653, 119, 9587, 9481, 9481, 120, 1381, 4824, 9566, 120, 9596, 9648, 8842, 1382, 8181, 8181, 8181, 8181, 8181, 8181, 9651, 9657, 1326, 9522,10684, 9589,10643, 1383, 792, 1384, 119, 1385, 4826, 9604, 1386, 120, 8198, 4825, 9506, 1387, 1326, 1089, 1388, 9662, 1389, 1039, 1390, 9653, 1391, 1392, 1393, 1381, 1327, 835, 8199, 2048, 8199, 726, 1382, 9623, 1023,10689, 9495, 2193, 9666, 9502, 8200, 9626, 8200, 3004, 247, 4826, 1383, 2049, 1384, 120, 1385, 726, 6919, 1386, 8198, 9503, 9519,10867, 3028, 2050, 1328, 1388, 812, 1389, 9662, 1390, 2195, 1391, 1392, 1393, 1381, 2193, 8199, 2493, 8201, 9504, 8201, 1382, 120, 1062, 726, 9510, 6920, 120, 8200, 9659, 416, 9505, 9600, 726, 6919, 1383, 10691, 1384, 9018, 1385, 9508, 8396, 1386, 6921, 2195, 2048, 3070, 3029, 9602, 1086, 1388,10222, 1389, 602, 1390, 6920, 1391, 1392, 1393, 1381, 9509, 9644, 8201, 2049, 6920, 9671, 1382, 1087, 3655,10260, 8396, 8339, 6921,10702, 8408, 2050, 2193, 9646, 9587, 833, 1383, 6921, 1384, 406, 1385, 9511, 9596, 1386, 120, 6922, 9717, 6644, 1387, 3030, 617, 1388, 10677, 1389, 6922, 1390, 9518, 1391, 1392, 1393, 1381, 2195, 857, 726, 9686, 9535, 857, 1382,11707, 9521, 6645, 9705, 9695, 604, 8914, 8914, 8914, 8914, 8914, 8914, 2193, 1383, 3031, 1384, 120, 1385,10683, 9950, 1386, 9705, 9644, 9806, 120, 1387, 727, 120, 1388, 9714, 1389, 8396, 1390, 9659, 1391, 1392, 1393, 1381, 3034, 857,10624, 2195, 9018, 962, 1382, 9705, 416, 9542, 9542, 9542, 9542, 9542, 9542, 9542, 9542, 9542, 9716, 416, 1383, 9675, 1384, 8910, 3032, 9671, 9825, 1386, 9617,11039, 9678, 9648, 1387,11710, 8408, 1388, 2805, 1389, 9721, 1390, 9651, 1391, 1392, 1393, 2525, 2526, 9724, 9656, 7789, 416, 1380, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 120, 9890, 9721, 416, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 9725, 9549, 2527, 8919, 8919, 8919, 8919, 8919, 8919, 2528, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 9551, 9659, 7789, 9659, 2529, 120, 2530, 9729, 2532, 247, 9018, 2533, 9018, 9762, 120, 9732, 2535, 9665,10088, 2536, 9806, 2537, 9091, 2538, 9667, 2539, 2540, 2541, 1381, 9550, 1023, 9824, 3070, 416, 2805, 1382, 5590, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 9671,10258, 9765, 1383, 9668, 1384, 3660, 1385, 9771, 8408, 1386, 9769, 9779, 9895, 3033, 1387, 9673, 9774, 1388, 2805, 1389, 8455, 1390, 9825, 1391, 1392, 1393, 2525, 2526, 9559, 9560, 9559, 9560, 1380, 9829, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 9900, 9557, 9557, 9557, 9557, 9557, 9557, 9557, 9557, 9557, 9783, 120, 9830, 120, 2527, 9659, 9793, 9675, 9863, 9786, 9762, 2528, 120, 9834, 9018, 9118, 9678, 9561,10710, 9091, 9562, 9665, 9675, 9679, 9671, 2529, 9667, 2530, 9680, 2532, 9552, 9678, 2533, 8408, 416, 3660,10276, 2535, 120,11718, 2536, 8120, 2537, 9680, 2538, 9682, 2539, 2540, 2541, 1381, 6527, 9866, 9668, 120, 9681,10714, 1382, 9563, 9563, 9563, 9563, 9563, 9563, 9563, 9563, 9563, 9779, 9675, 7799, 9681, 1383, 9683, 1384, 3053, 1385, 8455, 9678, 1386, 120, 9870, 120, 120, 1387, 9679, 9796, 1388,11721, 1389, 6527, 1390, 416, 1391, 1392, 1393, 3054, 9564, 9564, 9564, 9564, 9564, 9564, 9564, 9564, 9564, 120, 9800, 7801, 9806, 9793, 120, 416, 6527, 1381, 9876, 10225, 9809, 120, 9118, 120, 1382, 9605, 9605, 9605, 9605, 9605, 9605, 9605, 9605, 9605, 7801, 9671, 9796, 416, 1383, 9810, 1384, 247, 1385, 9890, 8408, 1386, 120, 9814,10226, 9762, 1387, 9673, 9895, 1388, 9894, 1389, 9682, 1390, 9091, 1391, 1392, 1393, 1381, 9899,10095, 9768, 2805,10090, 9900, 1382, 9606, 9606, 9606, 9606, 9606, 9607, 9608, 9608, 9608, 9904, 9771, 6527, 9683, 3055, 9825, 1384,11731, 1385, 9771, 9774, 1386, 9905, 9828,10090, 9771, 1387, 9775, 9774, 1388, 7801, 1389, 9776, 1390, 9774, 1391, 1392, 1393, 1703, 1381, 9776, 9775, 120, 6527, 9186, 416, 1382, 9608, 9608, 9608, 9608, 9608, 9608, 9608, 9608, 9608, 5161, 9830, 9777, 9783, 1383, 9803, 1384, 3056, 1385, 9833, 9777, 1386, 9786, 9779, 4520, 5155, 1387, 120, 1266, 1388, 120, 1389, 8455, 1390, 9788, 1391, 1392, 1393, 1381, 9781, 4527, 9188, 9951, 9867, 416, 1382, 9615, 9615, 9615, 9615, 9615, 9615, 9615, 9615, 9615, 4521, 9835,10837, 9905, 1383, 9789, 1384,10677, 1385, 9838, 1699, 1386, 9845, 9783, 9909, 9783, 1387, 9970, 3057, 1388, 9848, 1389, 9786, 1390, 9786, 1391, 1392, 1393, 1381, 9787,10090, 9787, 9864,10106, 9788, 1382, 9639, 9639, 9639, 9639, 9639, 9639, 9639, 9639, 9639, 9972, 9779,10228, 9779, 1383, 9849, 1384,10769, 1385, 9910, 8455, 1386, 8455, 9852, 10106, 9789, 1387, 9781, 3058, 1388, 9914, 1389, 9790, 1390, 9790, 1391, 1392, 1393, 1381, 6527,10011, 403, 4520, 5155, 9925, 1382, 9640, 9640, 9640, 9640, 9640, 9641, 9642, 9642, 9642, 9930, 9793, 9803, 9791, 1383, 9791, 1384, 9890, 1385, 247, 9118, 1386, 3059, 9793, 120, 9893, 1387, 9799, 4521, 1388, 9931, 1389, 9118, 1390, 5161, 1391, 1392, 1393, 1381, 9799, 9869, 9935,10070, 120, 9801, 1382, 9642, 9642, 9642, 9642, 9642, 9642, 9642, 9642, 9642,10237, 9793,11019,10122, 1383, 899, 1384, 9865, 1385, 4527, 9118, 1704, 8516, 119, 9880, 9802, 1705, 120, 9173, 3060, 1265, 1389, 9801, 1390, 11839, 1391, 1392, 1393, 3061,10123, 1713, 9715, 9715, 9715, 9715, 9715, 9715, 9715, 9715, 9715, 1265, 7842, 8518, 8517, 1265, 9951, 9872, 9699, 9802, 9895, 1266, 1265, 1714, 9883, 9883, 9884, 9969, 9898, 9882, 1715, 9744, 9744, 9744, 9744, 9744, 9744, 9744, 9744, 9744, 9885, 1266, 9697, 7843, 1716, 1266, 1717, 9747, 1718, 9875, 9900, 2096, 1266, 9972, 9905, 9948, 2097, 8122, 9903, 1721, 8613, 1722, 9908, 1723, 9979, 1724, 1725, 1726, 1713, 120,10017, 119, 5821, 5821, 5821, 5821, 5821, 5821, 5821, 5821, 5821,10021, 1265, 696, 695, 9951, 9910, 9915, 663, 5161, 1714, 9883, 9883, 9884, 9913, 9918, 3062, 1715, 9868, 9868, 9868, 9868, 9868, 9868, 9868, 9868, 9868,10231, 9925, 9931, 120, 1716, 1266, 1717, 9936, 1718, 9928, 9934, 1719, 4527, 9587, 9951, 9939, 1720, 5267, 10194, 1721, 899, 1722, 9965, 1723, 1265, 1724, 1725, 1726, 1713,10016, 6955, 1575, 904, 9886, 9886, 9886, 9886, 9886, 9886, 9886, 9886, 9886,10017, 9972, 9980,10017,10314, 6644, 8853, 1265, 1714, 9977, 9985,10020, 1266, 1265,10013, 1715, 9190, 9190, 9190, 9190, 9190, 9190, 9887, 9887, 9887, 9887, 9887,10022, 6645, 1716, 5267, 1717, 3063, 1718,10022,10025, 1719, 1266,10027,10188, 8854, 1720,11737, 1266, 1721,10026, 1722, 1265, 1723,10031, 1724, 1725, 1726, 1713, 5267,10022, 9887, 9887, 9887, 9887, 9887, 9887, 9887, 9887, 9887, 9929, 9929, 9929, 9929, 9929, 9929, 9929, 9929, 9929, 1265, 1714, 120, 1266, 8169,10027,10032, 9925, 1715, 9888, 9888, 9888, 9888, 9888, 9888,10027, 120,10036, 9889,10032,10037,10017, 1716,10030, 1717, 3064, 1718,10035,10040, 1719, 1266, 4562, 10021, 3504, 1720,10641,10073, 1721,10684, 1722, 9946, 1723, 5267, 1724, 1725, 1726, 1713,10077, 857, 9240, 9240, 9240, 9240, 9240, 9240, 9240, 9240, 9240, 9995, 9995, 9995, 9995, 9995, 9995, 9995, 9995, 9995,10017, 1714, 1265, 1266,11907, 10703,10073, 9999, 1715,10047,10051, 9947, 9947, 9947, 9947, 9947, 9947,10050,10054,10017,10073, 2842, 2094, 2842, 1717, 9361, 1718,10020,10076, 1719, 3065, 5945, 1266, 9364, 1720, 2842,10063, 1721, 9361, 1722,10090, 1723,10062, 1724, 1725, 1726, 2095, 2525, 3071, 9365, 2372,10094, 3392, 1712, 3392, 10210, 3072, 9995, 9995, 9995, 9995, 9995, 9995, 9995, 9995, 9995, 3392, 2842,10719, 2852, 2841, 2852,11856,10090,10090, 9361, 5957,10061, 3073, 2372, 2841,10093,10093, 2852, 389, 3074, 3980,10017, 2372,10090, 120,10084,10084,10084,10084, 10084, 390, 5945, 3392, 3075,10094, 3076, 3077, 3078,10090, 10723, 3079, 3080,10090, 2852,10000, 3081, 1023,10090, 3082, 3982, 3083,10090, 3084,10094, 3085, 3086, 3087, 119, 119, 10093, 3097, 119, 119, 119, 119, 119,10084,10084,10084, 10084,10084,10084,10084,10084,10084,10095, 416,10095, 119, 119, 119, 119, 119, 119, 119,10098,10099, 1023,10095, 10423, 1397,10095, 9440, 9440, 9440,10095,10098, 2372, 2372, 10098,10085,10085,10085,10085,10085,10085,10099, 119, 119, 119, 119, 3099, 3100, 3100, 3100, 3100, 3100, 3100, 3100, 3100, 2576, 1023,10090,10095,10100,10100, 2372, 3100, 3100, 3100, 3100, 3100, 3101,10103,10090,10104,10090,10090,10090, 10277,10090,12069,10093,10423,10277,10093,12069,10094,10093, 10094,10281,10100,10280, 3100, 3100, 3100, 3100, 3100, 3100, 3102, 3102, 3102, 3102, 3102, 3102, 3102, 3102, 3102, 3103, 9359, 9359, 9359, 9359, 9359, 9359, 3102, 3102, 3102, 3102, 3102, 3104,10105,10105,10105,10105,10105,10105,10105,10105, 10105, 1023, 9571, 2372,10131,10140,10423, 120,10100,10710, 10283,11474, 3102, 3102, 3102, 3102, 3102, 3105, 3108, 3108, 3108, 3108, 3108, 3108, 3108, 3108, 3108, 3109,10090, 8122, 10132,10141, 4040, 264, 3108, 3108, 3108, 3108, 3108, 3110, 8122, 120,10972,10716, 416,10117,10126, 247,10135,10148, 10122,10131, 120,10140,10153,10153,11522, 9448, 9448, 9448, 3108, 3108, 3108, 3108, 3108, 3108, 3114, 3115, 3115, 3115, 3115, 3115, 3115, 3115, 3115, 2118,10123,10132,10167,10141, 10154,10154, 3115, 3115, 3115, 3115, 3115, 3116, 8139, 8139, 8139, 8139, 8139, 8139, 8139, 8139, 8139,10162,10178,10179, 120, 1304,10167,10179,10168,10423, 120,10639, 3115, 3115, 3115, 3115, 3115, 3115, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3119, 6954,10180,10189,11040,10168,10180, 3118, 3118, 3118, 3118, 3118, 3120, 8150, 8150, 8150, 8150, 8150, 8150, 8150, 8150, 8150,10182,10182,10182,10182,10182, 10182,10182,10182,10182, 6955, 120, 3118, 3118, 3118, 3118, 3118, 3118, 3126, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 2130, 8171, 8171,10271, 208,11437,10232, 3127, 3127, 3127, 3127, 3127, 3128, 120, 120, 120,10291, 416,10290, 10719, 8171, 209,10423, 9580,10295, 1346,11525, 247,10190, 1350, 3504, 3504, 120, 3127, 3127, 3127, 3127, 3127, 3127, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3131, 3504,10206,10181, 1353,10725,10209, 3130, 3130, 3130, 3130, 3130, 3132,10289, 9587, 120, 1354, 9587,10423,10181, 7842, 10638, 9596,11605, 120, 120, 247, 857, 9603,10211, 1355, 120, 3504, 3130, 3130, 3130, 3130, 3130, 3130, 3138, 3139, 3140, 3141, 3141, 3141, 3141, 3141, 3141, 3504, 726,10218, 7843,10277,10633, 9609, 1753, 1753, 1753, 1753, 1753, 1757, 10182,10182,10182,10182,10182,10183,10184,10184,10184,10184, 10184,10184,10184,10184,10184,10184,10184,10184, 9587, 792, 1753, 1753, 1753, 1753, 1753, 1753, 3142, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 2144, 1039, 8852,10423, 9589, 12069, 9589, 3143, 3143, 3143, 3143, 3143, 3144, 1089, 9604, 10311, 1089,10306,10423,10323,10237,10323, 602,10328,10191, 835,10309, 220, 835,10326,10327,10331, 8853, 3143, 3143, 3143, 3143, 3143, 3143, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3147,10216, 4824,10201, 406,11005,10306, 3146, 3146, 3146, 3146, 3146, 3148, 221, 373,10309,10395, 10217, 8854,10192, 2525,10984,10310,10423,10398,10229,10985, 120,10272,10273,10272,10273, 4825, 3146, 3146, 3146, 3146, 3146, 3146, 3154, 3155, 3156, 3157, 3157, 3157, 3157, 3157, 3157, 7593, 1326, 8198,10268,10268,10269, 120, 1764, 1764, 1764, 1764, 1764, 1768,10196, 8394, 8396, 8396,11614, 4826, 1326, 8199, 2842,10274, 247, 120,10275, 120, 120, 120, 6950, 5957, 1327, 8200, 1764, 1764, 1764, 1764, 1764, 1764, 2168, 3980, 3158, 3158, 3158, 3158, 3158, 3158, 3158, 3158, 3158, 1428, 120, 3392,10385,10306, 4596,10197, 1761, 1761, 1761, 1761, 1761, 1762,10309, 8396, 1328, 8201,10399,10223, 3982, 726,10319,10351,10198,10389,10403, 120, 857, 904, 416,10675, 9651, 8852, 1761, 1761, 1761, 1761, 1761, 1761, 3159, 3160, 3160, 3160, 3160, 3160, 3160, 3160, 3160, 2625, 726,10385, 727,10395,10395,10354, 3160, 3160, 3160, 3160, 3160, 3161, 3034, 8853,10358,10413,10193,10423,10414, 962, 10423,10236,10236,10236,10236,10236,10236,10236,10236,10236, 120, 812, 3160, 3160, 3160, 3160, 3160, 3160, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 8854, 1062, 2048, 10423,10360,10351,10360, 3162, 3162, 3162, 3162, 3162, 3163, 10363, 9651,10363,10368,10372, 814, 1065, 2049,10357,10364, 9699,10202, 9018,10375,10365,10420,10727,10503,10416, 2050, 3162, 3162, 3162, 3162, 3162, 3164, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1780, 2048,10841,10507,10382, 10366,10351, 1777, 1777, 1777, 1777, 1777, 1779, 9678, 120, 9651,10213, 120,10731, 2049,10317,10317,10317,10317,10317, 10317,10317,10317,10317,10503, 416, 2050, 7593, 1777, 1777, 1777, 1777, 1777, 1777, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1153,11472,10437,10423,10437,10360,10212, 1773, 1773, 1773, 1773, 1773, 1774, 6950,10363,10425,10360, 12131, 9580,10227, 416,11059, 2842,10428, 4824,10363,10365, 10420,10442,10442,10423, 5957,10364, 1773, 1773, 1773, 1773, 1773, 1773, 119, 119, 3980, 119, 119, 119, 119, 119, 119, 3977, 3175, 119, 1086,10366, 3392, 4825,10450,10289, 10195,10368,10372, 119, 119, 119, 119, 119, 119, 264, 9018,10375, 1087, 3982,10727, 266,10498,10370,10376, 2842, 10509, 602,10233,10377, 833,10501, 120,10423, 5957, 9774, 10423, 4826, 119, 119, 119, 257, 119, 119, 3980, 119, 119, 119, 119, 119, 119,10423, 119, 2192,10742,10378, 3392, 406,10458, 726, 6919,10479, 5253, 2193, 119, 119, 119, 119, 119, 119,10215,11434,10372, 3982,10471, 3194, 10420,10520, 2842, 5267,10368,10375,10475, 857,10424, 857, 9786, 5957,10376, 9018, 6920, 604, 2195, 119, 119, 119, 119, 3980, 119, 119, 119, 119, 119, 119, 416, 119, 2192, 6921,10550, 3392,10578,12201, 857,12269,10203,10512, 2193, 119, 119, 119, 119, 119, 119, 3195, 6922, 7568, 3982, 6954, 3194,10086,10086,10086,10086,10086,10086, 120, 10516,10583,10087,10264,10264,10264,10264,10264,10264, 2195, 119, 119, 119, 119, 1023, 119, 119, 119, 119, 119, 119, 6955, 119, 119, 120,10625,10512,10230,12271, 120, 10847,10532,10536, 119, 119, 119, 119, 119, 119, 119, 9118,10539, 120,11640,10642, 3197,10089,10089,10089,10089, 10089,10089,10089,10089,10089, 6957,10267,10267,10267,10267, 10267,10267, 119, 119, 119, 119, 119, 1023, 119, 119, 119, 119, 119, 119, 120, 119, 119, 120, 8383, 7135, 10312,10312,10312,10312,10312,10312, 119, 119, 119, 119, 119, 119, 119, 3198, 120,11019, 9591, 8406, 3197,10109, 10109,10109,10109,10109,10109,10109,10109,10109, 120, 120, 10733, 3504,10743,12298,11852, 119, 119, 119, 119, 119, 1023, 119, 119, 119, 119, 119, 119,10523, 119, 119, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 119, 119, 119, 119, 119, 119, 119, 7135,10741,10527,10747, 10185, 3200, 9490, 9490, 9490, 9490, 9490, 9490, 9490, 9490, 9490,10550,10382, 3201, 8408,10237,10752, 1304, 119, 119, 119, 9678,10554, 120,10523, 8198, 120,10185,10388, 9490, 9490, 9490, 9490, 9490,10186, 9487, 9487, 9487, 726, 6919, 3201, 119, 119, 8199, 119, 119, 119, 119, 119, 119, 120, 119, 2192,10756, 7135, 8200,10743,11738,11011,10555, 10578,10199, 2193, 119, 119, 119, 119, 119, 119, 6920, 10562,10582, 8408,10185, 3208, 9487, 9487, 9487, 9487, 9487, 9487, 9487, 9487, 9487, 120, 120, 6921, 416, 2805, 8201, 10750, 2195, 119, 119, 119, 119, 120, 119, 119, 119, 119, 119, 119, 6922, 119, 2192, 7135, 7135,10423,10205, 10423,10629, 1086, 9890,10382, 2193, 119, 119, 119, 119, 119, 119, 3209, 9678,10392, 8408,10550, 3208, 726, 6919, 1087, 8198, 247,10442,10553,10450, 120, 120, 416,10423, 11466,10445, 833,10453, 2195, 119, 119, 119, 119, 8199, 119, 119, 119, 119, 119, 119, 1356, 119, 2192, 6920, 6527, 8200, 120,10214,10420,10204, 7135, 2805, 2193, 119, 119, 119, 119, 119, 119,10436, 6921,10423, 8453,12058, 3213,10555,12298,11469,10392, 7566,10677, 8858,10710,10561, 120, 247,10653, 6922,10200, 8201, 120, 2195, 119, 119, 119, 119,10442, 119, 119, 119, 119, 119, 119,10563, 119, 2192, 6527,10446, 6527,10423,10706,10566,10718,10719, 10372, 2193, 119, 119, 119, 119, 119, 119, 3214,10375, 8455,12371, 8455, 3213,10265,10265,10265,10265,10265,10265, 10458,10377, 120,10266, 120,10423, 2805, 416,10461,10751, 2195, 119, 119, 119, 119, 120, 119, 119, 119, 119, 119, 119, 120, 119, 2192,10758, 6527,10378, 4520, 5155, 10450,10653,10583,10509, 2193, 119, 119, 119, 119, 119, 119,10454, 9774,10587,10530,10959, 3217,10270,10270,10270, 10270,10270,10270,10270,10270,10270, 120, 416,12371, 4521, 12371,10752,10766, 2195, 119, 119, 119, 119, 120, 119, 119, 119, 119, 119, 119, 2805, 119, 2192,10490,10490, 10490,10490,10490,10491,10492,10492,10492, 2193, 119, 119, 119, 119, 119, 119, 3218,10767,10578, 120, 120, 3217, 10653,10628, 120, 8383,10581,10312,10312,10312,10312,10312, 10312,10312,10312,10312,10423, 6644, 2195, 119, 119, 119, 119, 9591, 119, 119, 119, 119, 119, 119,10368, 119, 2192,10835, 6644,10770,11443,10676,10848, 9018, 6645,10479, 2193, 119, 119, 119, 119, 119, 119,10482, 1346,10379, 11474, 120, 3220,11474, 8383, 6645,10312,10312,10312,10312, 10312,10312,10312,10312,10312,10583, 3221, 119, 899, 2195, 119, 119, 9591,10586, 119,10380,10346,10347,10348,10349, 10349,10349,10349,10349,10349, 2805, 2805,10368,11757,11521, 11478,12298,10626, 3221, 119, 119, 9018, 119, 119, 119, 119, 119, 119,10370, 119, 119, 6527,10237,10379,10658, 10658,10663,10653,10498,10509, 119, 119, 119, 119, 119, 119, 119,10501, 9774, 8455,10588,10520, 3223,10382,10506, 10515, 247,10520,10591,10380, 9786, 120, 9678,10653,11483, 11010, 9786,10526, 1304, 119, 119, 119, 119, 119,10390, 119, 119, 119, 119, 119, 119, 416, 119, 119, 3224, 3224, 3224, 3224, 3224, 3224, 3224, 3224, 3224, 119, 119, 119, 119, 119, 119, 119,10391,11491,10936, 1023,10588, 3223,10492,10492,10492,10492,10492,10492,10492,10492,10492, 10592, 2805, 8613,10382,11495,12298,12298, 119, 119, 3204, 119, 119, 9678, 119, 119, 119, 119, 119, 119,10388, 119, 2192, 6527,11669,10390,10653,10653,10677,10669,10532, 10509, 2193, 119, 119, 119, 119, 119, 119, 9118, 9774, 10530,11499,10603, 3227,10608,10534,10515, 247,10532,10536, 10391,10517, 120,10607,10669,10612, 8613, 9118,10539, 6644, 2195, 119, 119, 119, 119,10540, 119, 119, 119, 119, 119, 119, 416, 119, 2192,10593,12298,10518,12399,12424, 11473,10710, 6645,10596, 2193, 119, 119, 119, 119, 119, 119, 3228,10603,10608,10613, 9890, 3227, 1346, 5161, 120, 10606,10611,10616, 9893, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 2195, 119, 119, 119, 119, 9890, 119, 119, 119, 119, 119, 119, 120, 119, 2192, 4527, 9894, 1023,10957, 1265,10958, 1023, 389,10630, 2193, 119, 119, 119, 119, 119, 119, 9697, 8516, 119, 390,11525, 3230, 10651, 9173, 5267, 9715, 9715, 9715, 9715, 9715, 9715, 9715, 9715, 9715, 1266, 3231,10653,10653, 2195, 119, 119, 9699, 10653,10653,10656,10656,10653,10653, 8517,10775,10658,10656, 10658,10657,10635,12444, 416,10657,10657,11534,10661,10662, 3231, 277, 277, 9697, 287, 277, 277, 277, 277, 277, 667, 280, 277, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 917, 277, 277, 277, 277, 277, 277, 3233, 3233, 3233, 3233, 3233, 3234, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669, 3232, 3232, 3232, 3232, 3232, 3232, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 278, 5267,10849,10849,10849,10849,10849, 120,10658, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 5161,10662, 120, 120, 5267, 1023,12447, 416,10780,10631,10631,10631, 10631,10631,10631,10631,10631,10631,10658,10658,10663,10663, 11050,10653,11650,11637,10661,10661,10666,10785, 4527,10656, 10667, 3233, 3233, 3233, 3233, 3233, 3233, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 3237, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 2221, 4520, 5155, 5267, 9459, 9459, 9459, 3238, 3238, 3238, 3238, 3238, 3239,10474,10474, 10474,10474,10474,10474,10474,10474,10474,10653,10653, 120, 857,11019, 2372,10790,10471,10656,10656, 4521, 3238, 3238, 3238, 3238, 3238, 3238, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3242,10834,10842,10653,10857, 9697,10653, 3241, 3241, 3241, 3241, 3241, 3243,10627,10657, 1265, 2372, 10657,10677,10677,10684,11838,10710,10509,10645,10645,10646, 10682,10690,10704,10715,10710, 9774, 3241, 3241, 3241, 3241, 3241, 3241, 313, 208,10857,10717,10865,10517, 1266,10705, 10866, 3244, 3244, 3244, 3244, 3244, 3244, 3244, 3244, 3244, 209, 6644,11047,11047,11048,10520,10520, 3244, 3244, 3244, 3244, 3244, 3245,10518, 9786, 9786, 1023,10719,12450, 1265, 1023,10526,10937, 120, 6645,10724,10528,10528,10647,10647, 10647,10647,10647, 3244, 3244, 3244, 3244, 3244, 3244, 3249, 3249, 3249, 3249, 3249, 3249, 3249, 3249, 3249, 2700, 1266, 1265,10719,10529,10529,10536, 3249, 3249, 3249, 3249, 3249, 3250,10727,10726,10539,10743,10752,10775,10775,10780,10732, 10540,10785,10749,10757,10778,10541,10783,11019,10779,10788, 1266, 3249, 3249, 3249, 3249, 3249, 3249, 3251, 3251, 3251, 3251, 3251, 3251, 3251, 3251, 3251, 416, 2842,10830,10780, 10536,10542,10532, 3251, 3251, 3251, 3251, 3251, 3252,10539, 10784, 9118, 1350,10785,10790,10790,10795,10795,10534,11841, 10674,10541,10793,10543,10789,10798,10794,10799, 3392, 3251, 3251, 3251, 3251, 3251, 3251, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 2710, 2852,10960,10542,10532,10544, 10800, 3256, 3256, 3256, 3256, 3256, 3257, 9118,10803,10810, 10815,11501, 1265, 120, 120,10870,12457,10813,10818,10543, 10882,10648,10648,10648,10648,10648,10648, 3256, 3256, 3256, 3256, 3256, 3256, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 1266,10836,10882,10544,10883,10968,11513, 3258, 3258, 3258, 3258, 3258, 3259,10668,10668,10668,10668,10668, 10668,10668,10668,10668,10820,10842,10857, 416,11019,12463, 10883,10663,10823,10845,10860, 3258, 3258, 3258, 3258, 3258, 3258, 3264, 3264, 3264, 3264, 3264, 3264, 3264, 3264, 3264, 2722, 120,10810,10815,10842, 4562,10857, 3264, 3264, 3264, 3264, 3264, 3265,10814,10819,10846,10857,10861, 1265, 120, 10919,11848, 2842,10924,10860,10924,10969, 9888, 9888, 9888, 9888, 9888, 9888, 3264, 3264, 3264, 3264, 3264, 3264, 3266, 3266, 3266, 3266, 3266, 3266, 3266, 3266, 3266, 1266,10925, 10832,10925,11448, 3392,10237, 3266, 3266, 3266, 3266, 3266, 3267,10748,10748,10748,10748,10748,10748,10748,10748,10748, 2852,11000,10277, 416,12469,11525, 120,10743,10237,11003, 10280, 3266, 3266, 3266, 3266, 3266, 3266, 1904,10847, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1862,10970, 120, 9967,10857, 416,10847, 1859, 1859, 1859, 1859, 1859, 1861, 247,11529,10861,11635, 9089, 120,10896,10896,10896, 10896,10896,10896,10896,10896,10896, 220, 120,10237, 120, 11474, 1859, 1859, 1859, 1859, 1859, 1859, 3275, 3275, 3275, 3275, 3275, 3275, 3275, 3275, 3275, 2738,10086,10086,10086, 10086,10086,10086, 3275, 3275, 3275, 3275, 3275, 3276, 1089, 221,10277, 3659, 2842,11480,10948,11812, 3660, 1023, 3070, 3082, 835,10281,10831,10831,10831,10831,10831,10831, 3275, 3275, 3275, 3275, 3275, 3275, 3277, 3277, 3277, 3277, 3277, 3277, 3277, 3277, 3277, 3392,10854,10854,10854,10854,10854, 10854, 3277, 3277, 3277, 3277, 3277, 3278, 416,12475,11060, 9091, 2852,10966,11060, 2898, 602, 1023, 778, 237,10974, 11064,11063, 120,11483,10857, 1171, 1023, 3277, 3277, 3277, 3277, 3277, 3277, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1876, 2900, 2898, 406, 778,10971,10226, 1873, 1873, 1873, 1873, 1873, 1875, 120, 1023,11493,11065, 1606, 11093, 416, 2898,11098,10975,10974,11068, 120,11096, 1292, 11012,11101,10237, 2900, 1023, 1873, 1873, 1873, 1873, 1873, 1873, 1869, 1869, 1869, 1869, 1869, 1869, 1869, 1869, 1869, 1216, 2900, 8778, 8778,10226,11013,10237, 1869, 1869, 1869, 1869, 1869, 1870,11856, 120, 120,11014,11651, 416,11093, 10849,10849,10849,10849,10849,10849,10849,10849,10849, 1023, 11097, 3504, 3504, 1869, 1869, 1869, 1869, 1869, 1869, 119, 119, 1023, 656, 119, 119, 119, 119, 119,10237, 119, 119,10896,10896,10896,10896,10896,10897,10898,10898,10898, 3286, 119, 119, 119, 119, 119, 119,11081, 9009,12481, 11103, 5161, 665,12484,11008, 416,10309, 9013,11106,11009, 10632,10632,10632,10632,10632,10632,10632,10632,10632, 119, 119, 119, 119, 119, 7593, 119, 119, 119, 119, 119, 119, 4527, 119, 119, 3287, 3287, 3287, 3287, 3287, 3287, 3287, 3287, 3287, 119, 119, 119, 119, 119, 119, 119, 120, 120, 9091, 6950,11081, 665,10850,10850,10850,10850, 10850,10850,10977,10309, 120,10851, 120, 416, 3504, 120, 11083,11867, 119, 119, 119, 277, 277, 1023, 278, 277, 277, 277, 277, 277, 667, 280, 277, 3288, 3288, 3288, 3288, 3288, 3288, 3288, 3288, 3288, 906, 277, 277, 277, 277, 277, 277, 667, 667, 667, 667, 667, 668, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 277, 277, 277, 669, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 3292, 3293, 3293, 3293, 3293, 3293, 3293, 3293, 3293, 2278, 2898, 2372,11098,12074,11187,11130, 3293, 3293, 3293, 3293, 3293, 3294, 1023,11102, 9651,11191, 12298,12106, 1970, 2898,10898,10898,10898,10898,10898,10898, 10898,10898,10898, 2900, 6954, 1023, 3293, 3293, 3293, 3293, 3293, 3293, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3297, 2900,11045,11045,11045,11045,11045, 3296, 3296, 3296, 3296, 3296, 3298, 6955,12368, 120,11115,11187, 416, 8778,10889,11134,10979, 120,11118,11190, 247, 247, 857, 857,11137, 120, 120, 3296, 3296, 3296, 3296, 3296, 3296, 3304, 3305, 3306, 3307, 3307, 3307, 3307, 3307, 3307, 3504, 3504,10889, 8788,11081,10277,11093, 1896, 1896, 1896, 1896, 1896, 1900,10309, 120, 120,10905,10905,10905,10905,10905, 10905,10905,10905,10905, 9580, 120, 857, 904,11535,12017, 3504, 3504, 1896, 1896, 1896, 1896, 1896, 1896, 3308, 3308, 3308, 3308, 3308, 3308, 3308, 3308, 3308, 1536, 8788,11058, 10423,11187,11130,11088, 1893, 1893, 1893, 1893, 1893, 1894, 120, 9651,10289, 416,11192,11539, 8788,10895, 726,10938, 11216, 8852,11198, 247, 247,11224, 416, 3504, 120, 120, 1893, 1893, 1893, 1893, 1893, 1893, 3313, 3313, 3313, 3313, 3313, 3313, 3313, 3313, 3313, 3504, 3504,10895, 8800, 792, 120, 8853, 3313, 3313, 3313, 3313, 3313, 3314, 1265, 120, 120, 7593,10974,12612,10437, 1350, 1039,10647,10647,10647, 10647,10647,10647,10647,10647,10647, 3504, 3504, 3313, 3313, 3313, 3313, 3313, 3313, 656, 8854,10976, 120, 1266,11224, 6950,10226,10939, 664, 664, 664, 664, 664, 664, 664, 664, 664, 903, 1265, 602,11760,10904, 8816,10913,12666, 4520, 5155,10649,10649,10649,10649,10649,10649, 120, 120, 120,10650,10852,10852,10852,10852,10852,10852,10852,10852, 10852,10973, 8800, 1266, 406, 3504, 3504, 3504,11192, 247, 10237, 4521,10423, 1023, 120,12666, 3318, 119, 119,11199, 119, 269, 119, 119, 119, 119, 270, 119, 119,11006, 12666, 3504,11436,10978, 8800, 120, 8816,11255, 119, 119, 119, 119, 119, 119, 119, 1265, 120,11450, 120, 416, 456, 416,10437,11007,10652,10652,10652,10652,10652,10652, 10652,10652,10652, 3504,11433, 3504,11200, 119, 119, 119, 119, 4824,11145, 3319,11203, 1266, 120,11255,12017,12298, 11535,10363,10855,10855,10855,10855,10855,10855, 3320, 277, 277,10856, 278, 277, 277, 277, 277, 277, 667, 280, 277, 4825,10185, 1023, 9487, 9487, 9487, 9487, 9487, 9487, 917, 277, 277, 277, 277, 277, 277, 1265, 2048,11579, 1086, 6954, 690,11447,12368, 120,10673,10673,10673,10673, 10673,10673,10673,10673,10673,10943, 2049,10904, 1087, 277, 277, 277, 669,11156, 247,11168,11172, 1266, 2050, 120, 833, 6955,10375, 120, 9678,11175, 3322, 1557, 1557, 1558, 1919, 2788, 1557, 1557, 1557, 1557, 3504, 1557, 1557,10905, 10905,10905,10905,10905,10906,10907,10907,10907, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 6957,11232,11237,10962,11276, 2310,10964,12017,12017,11235,11240, 3328,11279,10853,10853, 10853,10853,10853,10853,10853,10853,10853, 1557, 1557, 1557, 119, 119, 120, 119, 119, 119, 119, 119, 119, 1023, 119, 119,10907,10907,10907,10907,10907,10907,10907,10907, 10907, 119, 119, 119, 119, 119, 119, 119, 1463,10423, 11445, 1464, 8816, 1465, 120,11495,10913, 1466, 1326, 247, 1467, 1468, 1469, 247, 120, 1470,11130,12017, 120,11232, 119, 119, 119,11290,11263, 9651, 1326,11315,11145, 3329, 11236, 3504,11132,11451,11295, 3504,10501,10363, 1327,11518, 726,10949, 1471, 1557, 1557, 1558, 3330, 1557, 1557, 1557, 1557, 1557, 416, 1557, 1557,10914,10914,10914,10914,10914, 10914,10914,10914,10914, 2313, 1557, 1557, 1557, 1557, 1557, 1557, 812,10944,10423,12824,11380, 1927,10914,10914,10914, 10914,10914,10915,10916,10916,10916,11384,12274, 1062,10423, 9701,11525, 120, 1557, 1557, 1557, 1557, 1557, 1558, 3331, 1557, 1557, 1557, 1557, 1557, 814, 1557, 1557,10916,10916, 10916,10916,10916,10916,10916,10916,10916, 2313, 1557, 1557, 1557, 1557, 1557, 1557, 8198,11531,10965, 8852,10437, 1927, 8829, 8829, 8829, 8829, 8829, 8829, 8829, 8829, 8829, 2525, 10984,10416, 8199,11220, 1087,10985, 1557, 1557, 1557, 656, 8852, 726,10951,11263, 8200, 4824, 833, 8853, 664, 664, 664, 664, 664, 664, 664, 664, 664, 903,10931,10932, 10933,10934,10934,10934,10934,10934,10934,10946,10967,11139, 8853,11535,10952, 9498,11286, 4825,10940,11385,10945, 120, 10941, 8854,11289,10942, 2048, 8199, 1089,11134,11395,10953, 11143,12065,11290,11019,11038,12889,11137, 8200, 835, 3648, 11293, 1353, 2049,11142, 8854,11541,10954, 3334, 656, 4826, 8198, 726, 6919, 1354, 2050, 6954,11139, 664, 664, 664, 664, 664, 664, 664, 664, 664, 903, 1355, 8199, 726, 6919, 8201, 3070, 3082,11836,10961, 3335, 656, 7135, 726, 8200,11089, 6920,10963, 120, 6955, 664, 664, 664, 664, 664, 664, 664, 664, 664, 903, 9016,12414,11318, 6921, 6920,10947,11324,10423,10423,10956,11156,11322, 120,10955, 727,11327,10423,10980, 8201,10375, 6922, 6921,11042,11042, 11042,11042,11042,11042,11042,11042,11042, 962,11224,11224, 416, 3336, 656,12899, 6922,11544,11227,11271, 120, 120, 11231, 664, 664, 664, 664, 664, 664, 664, 664, 664, 903,11043,11043,11043,11043,11043,11043,11043,11043,11043, 10265,10265,10265,10265,10265,10265,11452,10423, 857,11550, 10423,10423, 120,11046,11046,11046,11046,11046,11046, 7135, 7135, 120,11044,11044,11044,11044,11044,11044,11044,11044, 11044,11145,11299,11380, 120,11255,11255, 9018, 9018,11332, 10363, 3338, 656, 120,11258, 247,11259,11151, 9774, 120, 120, 664, 664, 664, 664, 664, 664, 664, 664, 664, 903,11045,11045,11045,11045,11045,11045,11045,11045,11045, 11049,11049,11049,11049,11049,11049,11049,11049,11049,11168, 857,11304, 120, 7135, 7135, 857, 857,12911, 9678,11307, 857, 120,11087,11087,11087,11087,11087,11087,11087,11087, 11087,11166,11166, 416,11380,11385, 3339, 656, 247,12927, 11380,11380,11383, 120, 120,11420, 664, 664, 664, 664, 664, 664, 664, 664, 664, 903,11126,11126,11126,11126, 11126,11127,11128,11128,11128,11128,11128,11128,11128,11128, 11128,11128,11128,11128,11156,11148,11145,11145,11168,11159, 11156, 1004,11315,10375,11172,10363,10363, 9678,11461,10375, 11162,10501,11151,11175,11170,11172,11152,11153,11153,11336, 11163,11164, 3340, 656,11175,11177, 416, 7135,11339, 120, 1004,11176, 664, 664, 664, 664, 664, 664, 664, 664, 664, 903,11148,11154,11154, 9018,11159,11165,11385,11315, 11544,11178,11156,11172,11168,11168,11394, 120,10501, 9091, 416,10375,11175, 9678, 9678,11321, 247,13031,11162,11176, 11170, 120,11396,11164,11177,11179,11179,11346,10423,11350, 3341, 1265,12298,11400, 857, 857, 9786,11548,11353, 2816, 3365, 3365, 3365, 3365, 3365, 3365, 3365, 3365, 3365,11165, 11178,11180,11180,11263,11367,10423,10423,10423, 120,11425, 11380, 1266, 1004, 1004,11267, 1265, 1004, 1004, 1004, 1004, 1004,10423, 1004, 3367,10423,11371,11420,12368, 120,11380, 11271,11299,11263, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 11266,11275,11303,11324,11332, 3369,11271,11364,11768,11299, 11380,11367,11327, 9774,11274,11380,10539,11302,11336,11328, 11334,11384, 3370, 1004, 1004, 1004, 1004,11339, 1265, 1004, 1004, 1004, 1004, 1004,11340, 1004, 3367, 5821, 5821, 5821, 5821, 5821, 5821, 5821, 5821, 5821, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 3371,11346, 1023,11350,11364, 3369,11396, 11401,11380, 120, 9786, 120,11353,10539,11399,11404,11383, 11348,11324,11354,11370,11657, 3370, 1004, 1004, 1004, 1004, 11327, 1265, 1004, 1004, 1004, 1004, 1004,11328, 1004, 3367, 6527,11634,11329,11552, 6527,11759, 6527,11332,11324, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 9774,11327, 9116,11380, 11552, 3375, 9118,11562,11374,11420,11346,11383,11330,11329, 120, 416,11380,11423, 120, 9786, 120,11567, 3370, 1004, 1004, 1004, 1004,11384, 1265, 1004, 1004, 1004, 1004, 1004, 416, 1004, 3367, 6527,10237,11330,11380,11556,13043,11430, 11566,11336, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 3376, 11339, 9118,11420,11420, 3375,11336,11420,11340, 247,11420, 11423,11423,11341, 120,11339,11430, 120,11424, 120,11807, 11424, 3370, 1004, 1004, 1004, 1004,11341, 1265, 1004, 1004, 1004, 1004, 1004,11332, 1004, 3367,11425, 120,11342, 120, 6527,11432, 9774,11449,11428, 3368, 1004, 1004, 1004, 1004, 1004, 1004,11342, 6527,11343, 120, 2805, 3378, 9118, 3379, 11904,11294,11294,11294,11294,11294,11294,11294,11294,11294, 120,11374,11470, 416, 3380, 3381, 3381,11290, 247,11332, 11344,11461, 120, 120,11638, 3382, 119, 119, 9774, 119, 119, 119, 119, 119, 119,11334, 119, 119, 2805,13065, 11343, 9697, 1266, 4520, 5155,11364,11350, 119, 119, 119, 119, 119, 119, 119,10539,11353,11380,11425,11569, 3387, 11380,11380,11354,11461,11383,11380,11344,11355,11429, 416, 11461,11384,11384,11383, 4521, 120, 119, 119, 119, 119, 119,11465, 119, 119, 119, 119, 119, 119,11380, 119, 119, 5161, 247,11356,13175,11573,11383, 120,11435,11350, 119, 119, 119, 119, 119, 119, 119, 3388,11353,11438, 12408,11461, 3387,11346,11580, 1265, 120, 8516, 857,11464, 11355, 4527, 9786, 9173,11453,11453,11453,11453,11453, 119, 119, 119, 119, 119,11357, 119, 119, 119, 119, 119, 119,11364, 119, 119,11461, 1266,11356,11471, 8517,11770, 10539,11584,11464, 903, 119, 119, 119, 119, 119, 119, 11358,11474,11372, 237,11483, 662,11376,11376,11376,11376, 11376,11376,11376,11376,11376, 120,11461, 1266,11474,11474, 11653, 1111, 119, 119, 119,11483,11479,11465,11373,11483, 11481,11482, 1023,11492,11519,11771, 9176, 3389, 277, 277, 11494, 287, 277, 277, 277, 277, 277, 667, 280, 277, 688, 688, 688, 688, 688, 688, 688, 688, 688, 917, 277, 277, 277, 277, 277, 277, 687, 687, 687, 687, 687, 690, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669, 688, 688, 688, 688, 688, 688, 688, 688, 3390, 688, 688, 688, 688, 688, 3391, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,11495, 2841, 2841, 8613, 11525, 8613,11520,10708,11500,11535,11346,11364, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 9786,10539,11525,11525, 9426, 3395, 1023,11348,11370,11474,11530,11525,11357,11372,11532, 11533, 120, 6644, 6644, 120,11543,13190, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,11535, 2841, 2841,11569,11358,11373, 6645, 6645,11540, 8613,10708, 11535, 2841, 2841, 2841, 2841, 2841, 2841, 2841,11523,11523, 11524,11542,11580, 3395,11376,11376,11376,11376,11376,11377, 11378,11378,11378,11535, 120,13214,11575, 3396,11466, 6644, 2852, 2841, 2841,11378,11378,11378,11378,11378,11378,11378, 11378,11378,11544,11552,11544,11474,11586,12259,11588, 3397, 11549,11557, 6645,11544, 3398, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,11551, 2841, 2841,11569,12293, 1265, 11606, 1265,11569,11569,11568,11574, 2841, 2841, 2841, 2841, 2841, 2841, 2841,11577, 1265,11592,10188, 3368, 3408, 3368, 416,11588,12490,11454,11454,11454,11454,11454,11454, 1266, 3409, 1266,11455,11578, 1942, 2852, 2841, 2841,10237,11580, 1265,11598, 5267, 3410, 1266,11580, 3370,11585, 3370,10649, 10649,10649,10649,10649,10649,11603,11587, 3409, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,10775, 2841, 2841, 1266,11813, 2805, 120,10237, 1265, 1265,11580,11602, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 1265,13045,11613, 5267, 3368, 3408,12555, 3368, 3368,11458,11458,11458,11458,11458, 11458, 1576, 1266, 3409,11588, 1266, 1266,11604, 2852, 2841, 2841, 2328,11593,10775,11615, 1265, 1266, 6644, 120, 3370, 11607,10778, 3370, 3370,11459,11459,11459,11459,11459,11459, 3409, 119, 119,11460, 119, 119, 119, 119, 119, 119, 6645, 119, 2192,11615, 120, 1266, 6515, 6515, 6515,10775, 11615,11618, 2193, 119, 119, 119, 119, 119, 119, 5161, 10779,11619, 5267,13065, 3194,12411, 5267,11615,11439,11439, 11439,11439,11439,11439,11439,11439,11439,11615,11619,11615, 11615, 2195, 119, 119,11620,11618, 5267,11615,11618, 4527, 11619,11615,11623, 3412, 119, 119,11620, 119, 119, 119, 119, 119, 119,11837, 119, 2192,11620,11624,13075, 120, 11019,11620,11620,11625,11623, 2193, 119, 119, 119, 119, 119, 119, 1265,11624,11629,11620, 5267, 3194,11615, 120, 5267,11453,11453,11453,11453,11453,11453,11453,11453,11453, 11620,11625,11615,11769, 2195, 119, 119,11615,11623,11628, 11618,11625, 1266, 120,11615,11615,11758,10237,11619, 2842, 3413, 119, 119,11615, 3414, 119, 119, 119, 119, 119, 119, 119, 119,11615,11619,12556, 120,11019,11636,11642, 11643,11618, 119, 119, 119, 119, 119, 119, 119, 1265, 3392,11647,11615, 899, 454,11630,11843,11641,11456,11456, 11456,11456,11456,11456,11456,11456,11456, 2852,11615, 120, 11643, 119, 119, 119, 119, 656,11618, 857,11646, 1266, 11844,11630,11633,10237, 664, 664, 664, 664, 664, 664, 664, 664, 664, 903, 1265, 2842, 2372,10237,11631,13217, 416,11811,11643,11457,11457,11457,11457,11457,11457,11457, 11457,11457,11576,11576,11576,11576,11576,11576,11576,11576, 11576,11660,11668,11805, 1266,11007, 3392,11660,11569,11652, 11652,11652,11652,11652,11652,11652,11652,11652,11664,11660, 10862,11683, 9426, 2852,10237, 3415, 656,11663,11666, 247, 1023, 1023, 9967, 120, 120, 664, 664, 664, 664, 664, 664, 664, 664, 664, 903,10850,10850,10850,10850,10850, 10850,12564,11654,11655,11654,11655,11658,11658,11658,11658, 11658,11658,11658,11658,11658,13223, 1023, 9426,11683, 9475, 416,11732, 7593,11780, 8852, 247, 120, 1023, 1023, 120, 120, 120, 416, 120, 3416, 119, 119, 9475, 119, 119, 119, 119, 119, 119,11656, 119, 119,11657, 3504, 120, 3504, 6950, 416, 6955, 8853,11781, 903, 119, 119, 119, 119, 119, 119, 9793, 9793, 9793, 3504,11857, 662,11659, 11659,11659,11659,11659,11659,11659,11659,11659,13227, 120, 416, 120, 9475,11773, 208, 119, 119, 119,11741, 247, 1023, 3417, 119, 119, 120, 119, 119, 119, 119, 119, 119, 209, 119, 2192, 120,10855,10855,10855,10855,10855, 10855, 3504,11739, 2193, 119, 119, 119, 119, 119, 119, 3423,12415,13231,11019, 1089, 2194, 1023, 9440, 9440, 9440, 9440, 9440, 9440, 9440, 9440, 9440, 835, 416,11772,10174, 10174,10174, 2195, 119, 119,10237, 3423, 119, 119,11855, 119, 119, 119, 119, 119, 119,11842, 119, 2192, 9448, 9448, 9448, 9448, 9448, 9448, 9448, 9448, 9448, 2193, 119, 119, 119, 119, 119, 119,11804,11766,11849, 3424, 8910, 2194, 9459, 9459, 9459, 9459, 9459, 9459, 9459, 9459, 9459, 11742, 726,11802,11740,13235,11732,12298, 2195, 119, 119, 10237,11019, 247,11019, 3424, 119, 119, 120, 119, 119, 3429, 119, 119, 119, 7593, 119, 119,11873,11803,11762, 8853, 6954, 792, 4824, 3504,11876, 119, 119, 119, 119, 119, 119, 119, 1463,11847,12307, 1464, 2049, 1465, 1039, 11878,11744, 1466, 6950,11777, 1467, 1468, 1469,11881, 2050, 1470, 6955,11779, 4825, 8854, 119, 119, 119,11733,11733, 11733,11733,11733,11733,11733,11733,11733,11733,11733,11733, 11733,11733,11734,11735,11735,11735, 8852, 1471, 778, 778, 8852, 778, 778, 778, 778, 778, 778, 4826, 778, 2897, 11735,11735,11735,11735,11735,11735,11735,11735,11735, 2898, 778, 778, 778, 778, 778, 778, 8853,10382,10382,10382, 8853, 3447,10934,10934,10934,10934,10934,10934,10934,10934, 10934,11774,10974, 6644, 416,13239, 120,11743, 2900, 778, 778, 778, 778, 120, 778, 778, 778, 778, 778, 778, 8854, 778, 778, 220, 8854, 2048, 6645,12297, 1086, 8198, 3504,10226, 778, 778, 778, 778, 778, 778, 778,11019, 12258,11883,11873, 2049, 3449,10974, 1087, 8199, 726,11886, 11751,11750, 602,11877, 120, 2050, 3450, 221, 833, 8200, 10237, 778, 778, 778,11840,10934,10934,10934,10934,10934, 11736,10931,10931,10931,10226,12416, 416,11776,11015, 812, 11763,11019, 406, 3450, 778, 778, 120, 778, 778, 778, 778, 778, 778, 8201, 778, 2897, 1062,11806,11764,11749, 11862, 726,10951, 3504,11850, 2898, 778, 778, 778, 778, 778, 778, 3451, 814,11778,11851, 4824, 3447,10931,10931, 10931,10931,10931,10931,10931,10931,10931, 9580, 120, 857, 120,12804,10952,11872, 2900, 778, 778, 778, 778, 120, 778, 778, 778, 778, 778, 778, 4825, 778, 2897,10953, 11767, 2525,10984,10974,11873, 120, 3504,10985, 2898, 778, 778, 778, 778, 778, 778,10289,10954, 1089,11908,11019, 3457, 726,10951,11745,11861,11913,11911,11802,10237, 835, 4826, 5527,10226,11916,11783,10237,10237, 2900, 778, 778, 778, 778, 1326, 778, 778, 778, 778, 778, 778,11002, 778, 2897,10952,11803,11808,11814, 857, 8198, 1086,11765, 1326, 2898, 778, 778, 778, 778, 778, 778, 3458,10953, 11775,11809, 1327, 3457,11878, 8199, 1087,11004,11752,10237, 11951,11908,11019, 1353,10237,11882,10954, 8200, 833,11137, 2900, 778, 778, 778, 778, 1354, 778, 778, 778, 778, 778, 778, 1356, 778, 2897,10237, 1328, 1645,11845, 1355, 10237,11747,11746,11846, 2898, 778, 778, 778, 778, 778, 778, 8201, 8860,11761,11908,11913, 3461, 726,10951,12141, 8198,11002,11815,11918,11923,11912,11917,11005,11810, 120, 11816,11921,11926, 2900, 778, 778, 778, 778, 8199, 778, 778, 778, 778, 778, 778,12137, 778, 2897,10952,10237, 8200, 120,12410, 857, 726,10951,11748, 2898, 778, 778, 778, 778, 778, 778, 3462,10953, 857,11935, 3071, 3461, 726, 6919, 726, 6919,11008,11938, 8858, 726,11913,11009, 11753,12149,10954,11754, 8201,10952, 2900, 778, 778, 778, 778,12017, 778, 778, 778, 778, 778, 778,11918, 778, 2897, 6920,10953, 6920,11755,12298, 9580,12145, 727,11922, 2898, 778, 778, 778, 778, 778, 778,11935, 6921,10954, 6921, 9649, 3464, 3465,11940, 962, 3079, 857,11939,11756, 11854, 3081,11943, 120, 9651, 6922, 9651, 6922,11871, 2900, 778, 778,12302, 247,10289,13429, 120, 9651, 120, 3465, 778, 778,12022, 778, 778, 778, 778, 778, 778, 120, 778, 778, 416, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 778, 778, 778, 778, 778, 778, 778,11866,11866, 11866,11866,11866, 3468,11954,11960,11968,12017,11972,11858, 11859,11858,11859,11958,11963,10363,11951,11975,12021, 120, 778, 778, 778, 778, 778,11137, 778, 778, 778, 778, 778, 778,11957, 778, 778, 120,12298, 4520,12261,13439, 120,12264,12022,11951, 778, 778, 778, 778, 778, 778, 778,11860,11137,12032,11861,12033, 3468,11865,11865,11865, 11865,11865,11865,11865,11865,11865,12037, 416, 4521,12263, 12304, 4527, 120, 778, 778, 778, 778, 778, 120, 778, 778, 778, 778, 778, 778,12308, 778, 2897,11903,11903, 11903,11903,11903,11903,11903,11903,11903, 2898, 778, 778, 778, 778, 778, 778,12275, 7135,13451,12080,11960, 3470, 3471,11863,11863,11863,11863,11863,11863,11963,12084,12323, 11864, 120,11982, 9676,11964,11968, 2900, 778, 778,11965, 11960,10375, 120,12326,10363, 120, 3471, 119, 119,11963, 119, 119, 119, 119, 119, 119,11964, 2917, 2192, 416, 12521, 9562,12272, 7135,12273,11966,11986,11982, 2193, 119, 119, 119, 119, 119, 119,11989,10375,12332,13467,10423, 3475, 9678,11866,11866,11866,11866,11866,11866,11866,11866, 11866, 416, 120, 120, 120,13674, 416, 2195, 119, 119, 2191, 119, 119, 120, 119, 119, 119, 119, 119, 119, 3476, 119, 119, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 119, 119, 119, 119, 119, 119, 119, 3477, 3477, 3477, 3477, 3477, 3478, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 119, 119, 119, 119, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 119, 119,13680, 119, 119, 119, 119, 119, 119, 120, 2917, 2192, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 2193, 119, 119, 119, 119, 119, 119, 3479,11968, 11972,11982,11986, 3475,12000,11960,12276,12334,10363,11975, 10375,11989,12425,11175,11963,11970,11976,11984,11990,12003, 2195, 119, 119, 2191, 119, 119,11965, 119, 119, 119, 119, 119, 119,11972, 2917, 2192, 120, 7135, 7135,12159, 12007,12355,11975, 7135,12000, 2193, 119, 119, 119, 119, 119, 119,11966,11175,11977, 9678, 9678, 3481,12085,12116, 12006,12010, 247,13687,12017,12155,12003, 120, 120,12089, 12120, 416,12020, 120, 3482, 119, 119, 3483, 119, 119, 11978, 119, 119, 119, 119, 119, 119, 3480, 2917, 2192, 3488, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3490, 119, 119, 119, 119, 119, 119, 3489, 3489, 3489, 3489, 3489, 3491, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3482, 119, 119, 3483, 3489, 3489, 3489, 3489, 3489, 3489, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3493, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3495, 416,13694,10423, 11972,11968,11968, 3494, 3494, 3494, 3494, 3494, 3496,11975, 10363,10363,12022,10520,10520,10520,11976,11970,12033,12038, 12031,11977,11979,11979,12069,10437,12036,12041,12000, 3494, 3494, 3494, 3494, 3494, 3494, 119, 119,11175, 119, 119, 119, 119, 119, 119,10423, 119, 2192,11978,11980,11980, 12069,12298, 416, 7135,11986,11986, 2193, 119, 119, 119, 119, 119, 119,11989,11989,12080, 416,13702, 3498,12069, 11990,12010,12065,12083,10423,11991,11991,12072, 247,12308, 12313,12306, 1023, 120, 416, 3482, 119, 119, 3501, 3502, 3502, 3502, 3502, 3502, 3502, 3502, 3502,12080,10423,12069, 10437,11992,11992,11982, 3502, 3502, 3502, 3502, 3502, 3503, 12073,12133,10375,12085,12090,12441,12312,12321,12121,11984, 12136,12088,12093,12069,11993,12069, 3504,10423,10437,12125, 3502, 3502, 3502, 3502, 3502, 3505, 119, 119,12308, 119, 119, 119, 119, 119, 119,11982, 2917, 2192,10423,10423, 11994,13713,12069,12069,10375,12000,12000, 2193, 119, 119, 119, 119, 119, 119,11175,11175,11993,12116,12325, 3481, 12121,12006,12298,12069,12069,12119,12008,12008,12124,10423, 10437,12072, 3506,10423,10423,12073, 3482, 119, 119, 3483, 119, 119,11994, 119, 119, 119, 119, 119, 119,12326, 2917, 2192,12009,12009,12111,12111,12304,12170,12069,12111, 10423, 2193, 119, 119, 119, 119, 119, 119, 120,12073, 12115,10423, 416, 3512,12012,12012,12012,12012,12012,12012, 12012,12012,12012,12166,12308,12111,12330,12334,13727,12340, 3482, 119, 119, 3513, 119, 119,12111, 119, 119, 119, 119, 119, 119,12534, 2917, 2192,12012,12012,12012,12012, 12012,12013,12014,12014,12014, 2193, 119, 119, 119, 119, 119, 119, 3514,12366,12338,10423,12348, 3512,12014,12014, 12014,12014,12014,12014,12014,12014,12014,10423,12065,10423, 10437,10423,10423,10423, 3482, 119, 119, 3513, 119, 119, 12111, 119, 119, 119, 119, 119, 119,10423, 2917, 2192, 10423,12115,12111,12121,12069,12069,12069,12069,12069, 2193, 119, 119, 119, 119, 119, 119,12072,12073,10423,10423, 857, 3516,12069, 3517,12201,12069,12048,12048,12048,12048, 12048,12048,12048,12048,12048,12205,12073,10423, 3518, 2206, 2206, 3519,12051,12069,12111,12201, 119,12298, 1023, 3520, 119, 119,12114, 119, 119, 119, 119, 119, 119,10423, 119, 2192,12111,12201,10423,10423, 119,12437,10423,12133, 12114, 2193, 119, 119, 119, 119, 119, 119,12136,12143, 10423,12304,12143, 3521,12111,12140,12201, 119,11327,12069, 12069,11327,12114,12111,12204,12143,12069,12072,12072,12206, 3482, 119, 119, 366,11327,12069, 416,12209,12127,12356, 13741,12148, 3529, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 2435,12069, 857,12430,12430,12431,13741, 3530, 3530, 3530, 3530, 3530, 3531,12127,12126,12126,12126,12126,12126, 12126,12126,12126,12126,12210, 1023,12364, 857,12206,10423, 209,12121,12213, 6527, 3530, 3530, 3530, 3530, 3530, 3530, 3533, 3533, 3533, 3533, 3533, 3533, 3533, 3533, 3533, 3534, 6527, 9772,12224,13775,12069, 9697, 3533, 3533, 3533, 3533, 3533, 3535,12072, 120,12153,12153,12164,12178, 9774,12182, 12326,12224, 857,11339,11339,11353,10539,12298,12185,12227, 120,12158, 3533, 3533, 3533, 3533, 3533, 3533, 3541, 3542, 3543, 3544, 3544, 3544, 3544, 3544, 3544,12201, 6644,13775, 12365,12143,12143,12153, 2002, 2002, 2002, 2002, 2002, 2006, 11327,11327,11339,12206,12302,12367,12153,12148,12224, 120, 12229, 6645,12150,12150,12223,11339, 209, 416,12232,12228, 2002, 2002, 2002, 2002, 2002, 2002, 2010,12160, 3545, 3545, 3545, 3545, 3545, 3545, 3545, 3545, 3545, 1631,12151,12151, 12298,12397,13775,12164, 1999, 1999, 1999, 1999, 1999, 2000, 6527, 6527,11353,12161,12164,12268,12229,12234,13741,12169, 10884,10884,10884,11353, 120,12237, 6527,12233, 9774,12162, 1999, 1999, 1999, 1999, 1999, 1999, 378,12302, 416, 6527, 120, 120, 6527, 416, 9784, 3558, 3559, 3559, 3559, 3559, 3559, 3559, 3559, 3559, 2467, 6527, 120, 9786, 120,12178, 9774, 3559, 3559, 3559, 3559, 3559, 3560, 247,10539, 120, 12178, 2805, 120,12162,12244,12180,12248,12153,13741,10539, 247,13741,12247,12260,12251, 120,11339, 3559, 3559, 3559, 3559, 3559, 3559,12158, 416, 6527,12286, 6527,12160,12371, 221, 3562, 3562, 3562, 3562, 3562, 3562, 3562, 3562, 3562, 3563, 6527, 120, 9786,12164,12173,12951, 3562, 3562, 3562, 3562, 3562, 3564,11353,12161, 120,12201, 120, 416, 9786, 12169,12201,12286,12377,12204,12171, 247,12296, 7810, 120, 12289, 120,12205, 3562, 3562, 3562, 3562, 3562, 3562, 3570, 3571, 3572, 3573, 3573, 3573, 3573, 3573, 3573, 6527, 5161, 120,12172,12182,12286,12270, 2027, 2027, 2027, 2027, 2027, 2031,12185, 857, 120,12290,12298,12173,12265,12186, 7812, 7810, 7810,12371, 247,13741,13571,12305, 120, 120, 4527, 5161, 2027, 2027, 2027, 2027, 2027, 2027,12164, 247,12266, 12266,12267, 120, 120, 221, 2035,11353, 3574, 3574, 3574, 3574, 3574, 3574, 3574, 3574, 3574, 1658, 8613,12171,12375, 4527, 7812, 7812, 2024, 2024, 2024, 2024, 2024, 2025,12174, 12174,12174,12174,12174,12174,12174,12174,12174,12298,11466, 12298,13076,12298, 120,12172,12298, 5845,12292,12303, 2024, 2024, 2024, 2024, 2024, 2024, 235, 235,11440, 235, 235, 235, 235, 235, 235,12393, 235, 235,12174,12174,12174, 12174,12174,12175,12176,12176,12176, 235, 235, 235, 235, 235, 235, 235,13029,12307,12298,13164, 4527, 3596,12176, 12176,12176,12176,12176,12176,12176,12176,12176, 7810, 7810, 11442,12182,13043, 8613,13798, 235, 235, 235, 235, 235, 12185, 235, 235, 235, 235, 235, 235,12186, 235, 235, 120, 120,12187, 416,12307,12371,12371, 617,12308, 235, 235, 235, 235, 235, 235, 235, 3597,12308,12326, 7812, 7812, 3596, 120,12298, 8613,12322,12331,12371,12188, 9793, 9793, 9793, 9793, 9793, 9793, 9793, 9793, 9793, 235, 235, 235, 2505,12375,12375, 120,13957,13063, 2060,12369,12298, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 4520, 5155,12377,13999, 9562,12371,12371, 2060, 2060, 2060, 2060, 2060, 2061, 2060, 2060, 2060, 2060, 2060, 3600, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 404, 404, 4521, 602, 404, 404, 404, 404, 404,12298, 404, 404, 1265, 1265,12375,12380,12381, 1265,12295,12182,12178, 404, 404, 404, 404, 404, 404, 404,12185,10539,12277,12279, 416, 3605,12262, 5161,12180,12308,12326,12306,12187,12189, 1266, 1266,12266,12266,12267, 1266,12324,12333, 404, 404, 404, 404, 404,12391, 602, 404, 404, 404, 404, 404, 12178, 404, 404, 4527,12188,12190,12298,12371,12433,10539, 8613, 1575, 404, 404, 404, 404, 404, 404, 404, 3606, 1023,12189,12371,12298, 3605,12195,12196,12197,12198,12198, 12198,12198,12198,12198,12305,12298,12306,12379,12298,12371, 12334, 404, 404, 404, 1381, 1265, 120,12190,12339,12305, 3611, 1382,12379,12371,12278,12278,12278,12278,12278,12278, 12278,12278,12278,12298,12378, 1383,12298, 1384,12371, 1385, 12371,12303, 1386,12377,12303, 1266,12376, 1387,12376,12381, 1388, 1265, 1389, 8613, 1390,12381, 1391, 1392, 1393, 1381, 11454,11454,11454,11454,11454,11454, 1382,12371, 1265,12371, 12298,12298,12280,12281,12280,12281,12381,12376,12371,12371, 1702, 1266, 1384,12381, 1385, 8613,12385, 1386, 3612,12387, 12378,12386, 1387,12298,12298, 1388,12298, 1389, 1266, 1390, 12381, 1391, 1392, 1393, 1703, 1381,12389,12298,12302, 1265, 12381,12388, 1382,12298,12282,12303,12298,12283,11459,11459, 11459,11459,11459,11459,12305,12298, 1702,12304, 1384, 8910, 1385,12302,12298, 1386, 3613,12611,12305, 8613, 1387, 1266, 12303, 1388,12298, 1389, 1265, 1390,12306, 1391, 1392, 1393, 1703, 3614, 1304,12284,12284,12284,12284,12284,12284,12284, 12284,12284,12298,12349,12349,12349,12349,12349,12349,12349, 12349,12349, 1265, 1381, 1266,12298,12304,12298,12392,12353, 1382,12285,12285,12285,12285,12285,12285,12285,12285,12285, 12298,12298,12298,12398, 1383,12298, 1384,12399, 1385,12298, 12303, 1386, 1266, 5945,12392,12298, 1387, 1346,12403, 1388, 5267, 1389,13065, 1390,12302, 1391, 1392, 1393, 1381, 120, 12369,12306,12409, 120,12304, 1382,12349,12349,12349,12349, 12349,12349,12349,12349,12349,12399,12302,12399,12399, 1383, 12399, 1384, 6644, 1385,12307,12402, 1386, 3615,12402,12403, 12394, 1387, 120,12412, 1388, 5267, 1389,13075, 1390,12417, 1391, 1392, 1393, 2525, 2526, 6645, 5945,12420, 2842, 1380, 12370,12370,12370,12370,12370,12370,12370,12370,12370,12354, 12399,12370,12370,12370,12370,12370,11021, 3980, 857, 2841, 13338, 6644,12417, 120, 2527, 726,12399, 2842,12406, 3392, 1350, 2528, 6644,12421,12390,12390,12390,12390,12390,12390, 12390,12390,12390,12417, 6645, 2529, 3982, 2530, 2852, 2532, 12381,11660, 2533, 2372,11660, 6645, 792, 2535, 3392,11663, 2536,12491, 2537,13187, 2538,11664, 2539, 2540, 3040, 1381, 11610, 7593, 208, 1039, 9967, 2852, 1382, 2842,11660, 120, 119, 119, 119, 119, 119, 119, 119, 119, 119, 209, 3616, 1304, 1384,12492, 1385,10237, 3980, 1386, 120,14057, 6950,11611, 1387, 3977,12513, 1388,10119, 1389, 3392, 1390, 10128, 1391, 1392, 1393, 2525, 2526,11610, 2842, 120, 2842, 1380,12560, 120, 2842, 5267, 3982, 1166, 1167, 1167, 1166, 1166, 1166, 1166, 1166, 1166, 3504, 3980,12514, 3980, 3504, 12526, 1089, 3980, 2842,10237, 2527,12512,11611, 3392,12829, 3392, 4596, 2528, 835, 3392,12875, 5253,10137, 3618,12426, 12426,12426,12426,12426,12426, 3982, 2529, 3982, 2530, 120, 2532, 3982,10119, 2533, 3392,12561, 1346,10237, 2535, 247, 1023, 2536,11027, 2537, 120, 2538, 3504, 2539, 2540, 2541, 1381, 2852,12496,12605,12515, 120, 237, 1382,10150,14058, 10164, 3504,10119,12407,12429,12429,12429,12429,12429,12429, 120, 1383, 120, 3634, 120, 1385,11011, 416, 1386, 857, 12523,12524, 4825, 1387, 1350, 1023, 1388, 3504, 1389, 3504, 1390, 3504, 1391, 1392, 1393, 3614,10974,12427,12427,12427, 12427,12427,12427, 120,12627, 220,12428,12432,12432,12432, 12432,12432,12432,12432,12432,12432, 4826, 1381, 1023,10237, 3504,11004,10128, 726, 1382,10226,12506,11868, 1023, 247, 12434,12435,12434,12435, 120,12624,10137,10128, 1383, 221, 1384,11008, 1385, 247,12522, 1386,11009,11027, 120, 120, 1387, 3504, 416, 1388, 812, 1389, 1023, 1390,11030, 1391, 1392, 1393, 1381,12527,10137, 3504, 3504,12627,14059, 1382, 10150, 1062,12436, 8852, 120,12437, 120, 247,12631, 416, 12497,11027, 120, 1383,14060, 1384, 1698, 1385, 814, 1089, 1386, 3635,11030, 3504,12599, 1387,10150,10164, 1388, 3504, 1389, 835, 1390, 8853, 1391, 1392, 1393, 1381, 120, 120, 4825, 416, 416,10974, 1382,12458,12458,12458,12458,12458, 12458,12458,12458,12458,10164, 3504, 3504,12493, 1383,12520, 1384, 247, 1385, 857, 9580, 1386, 120, 8854, 9500,12525, 3636, 6954,10226, 1388, 4826, 1389,12558, 1390,12529, 1391, 1392, 1393, 1381, 3504,10237,12625,12593, 8852,12632, 1382, 12458,12458,12458,12458,12458,12459,12460,12460,12460, 120, 12632, 6955,10289, 1383,12532, 1384,10237, 1385,11027,10499, 1386,12636,12562, 726,10951, 1387, 3637, 8853, 1388,11030, 1389, 120, 1390,13065, 1391, 1392, 1393, 1381,10931,10931, 10931,10931,10931,10931, 1382,12460,12460,12460,12460,12460, 12460,12460,12460,12460,10952,11027,10237,12508, 1383, 120, 1384, 8854, 1385,12596, 3638, 1386,11030,12495,14057, 1086, 1387,10953,13074, 1388,12559, 1389, 3504, 1390, 120, 1391, 1392, 1393, 1381,10237,12498,11010,12500, 1087,10954, 1382, 12464,12464,12464,12464,12464,12464,12464,12464,12464, 833, 12637,11002, 1326, 1383,12501, 1384,11808, 1385,11027, 3639, 1386,12641,12597,13173, 1327, 1387,12502, 8852, 1388,11030, 1389, 602, 1390, 7593, 1391, 1392, 1393, 3614,12464,12464, 12464,12464,12464,12465,12466,12466,12466,12466,12466,12466, 12466,12466,12466,12466,12466,12466,12627, 8853, 1328, 1381, 12503, 406, 6950,12494,12630,12530, 1382,12470,12470,12470, 12470,12470,12470,12470,12470,12470,12606,14062,11027,11027, 1383,11852, 1384, 9498, 1385,11027,12531, 1704,11842,12602, 11030, 8854, 1705, 120,10974, 1388,11030, 1389,11841, 1390, 12598, 1391, 1392, 1393, 1713,12470,12470,12470,12470,12470, 12471,12472,12472,12472,12472,12472,12472,12472,12472,12472, 12472,12472,12472,10226,12632,10188, 1714,12622,10237,14063, 12619,14001,12635, 1715,12476,12476,12476,12476,12476,12476, 12476,12476,12476, 2048,12637,12642, 120, 3091,12528, 3092, 11008, 1718,12640,12645, 1719,11009,11027,12563, 3640, 1720, 120, 2049, 1721,12017, 1722, 3094, 1723,11030, 1724, 1725, 1726, 3641,12604, 2050,12021, 726,12509,12665,14064, 1713, 12476,12476,12476,12476,12476,12477,12478,12478,12478,12478, 12478,12478,12478,12478,12478,12478,12478,12478,14065,12686, 8198, 1714, 1086, 8198, 726,10951,10952,12518, 1715,10174, 10174,10174,10174,10174,10174,10174,10174,10174, 8199,12652, 1087, 8199, 1716,10953, 1717,12682, 1718,12655,12017, 1719, 8200,12516, 833, 8200, 1720,10952,12020, 1721, 857, 1722, 10954, 1723,12504, 1724, 1725, 1726, 1713,12603, 2048, 726, 6919,11027,10953,12505, 6954, 726, 6919,12017,14117,10237, 12519, 1353,11030,12017, 8201,12020, 2049, 8201, 1714,10954, 12507,11844,14117, 1354,11006, 1715,11839,11027, 2050,12607, 6920,12600,12557,12510, 6955,13076, 6920, 1355,11030, 1716, 10237, 1717, 2493, 1718, 2525,10984, 1719, 6921,11007,12517, 10985, 3642,10237, 6921, 1721,12565, 1722,12566, 1723, 857, 1724, 1725, 1726, 1713, 6922,12511,12567,11006, 6957,12666, 6922,11839,11027,12568,13104,12533,12694,12669,11027,12594, 12608,11845,12569,11030,12017, 1714,11846,12626,12536,11030, 13065,11007, 1715, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712,12690, 120,12666,12595, 1716,12594, 1717,11027, 1718,12017,12669, 1719,12614,12614,12615, 9580, 3643,13169, 11030, 1721,12021, 1722, 857, 1723,13270, 1724, 1725, 1726, 1713,12704,12617,12595,12617, 120,12666,11027,12666,12613, 12613,12613,12613,12613,12613,12666,12669,12670,11030,12666, 12666,12601, 1714,12017,12573,10289,12670,12700, 120, 1715, 120,12616,12616,12616,12616,12616,12616,12616,12616,12616, 12017,14122,12017, 1716,12618, 1717,12017, 1718,12020,12017, 1719, 120, 120,12021,12020, 1720, 3644,12017, 1721, 857, 1722,12715, 1723, 857, 1724, 1725, 1726, 1713,12021, 9561, 9561, 9561, 9561, 9561, 9561, 9561, 9561, 9561,11863,11863, 11863,11863,11863,11863,12017,12017,12674,12711,12746, 1714, 120,12017,13192,12020,12672,11137, 1715,12674,12678, 120, 12620,12620,12620,12620,12620,12620,11137,12681,12746,12621, 1716, 3645, 1717,12676, 1718,12674,12749, 1719,12751,12678, 12672, 120, 1720,12885,11137, 1721,12754, 1722,12681, 1723, 12746, 1724, 1725, 1726, 1713,12685,12688,12688,12688, 416, 10275,12750, 7135,12688,12751,11963,11963,11963,12688,12880, 7135,14122,11963,12693, 120,12768, 1714,11963, 7135,12693, 10361,12698, 416, 1715,12695,12698,12698, 7135,10363,12695, 11975, 3504, 120, 7135,11975,11975,10363, 1716,12709, 1717, 120, 3646,12703, 247, 1719,12707,12705,11989, 120, 1720, 12696,10363, 1721, 7135, 1722,12696, 1723, 120, 1724, 1725, 1726, 2525, 3071, 120,12698,12698, 416, 1712, 120, 120, 3072,12707,12706,11975,11975, 7135, 7135, 7135, 247,12755, 12709,12703,12769, 120,14122, 120,12705,12758, 416,11989, 12772, 7135, 3073,10373,10375,10375,12714,12769,13800, 3074, 13034,13044, 247, 120,10501, 120, 120, 120,12773,10375, 12709, 7135,12706, 3075,12709, 3076, 120, 3078,12709,11989, 3079, 120, 7135,11989, 416, 3081,12714,11989, 3082,12718, 3083,12716, 3084,12723, 3085, 3086, 3087, 1713, 416,12716, 12718, 120,11175,13188,12723,12727, 120, 247,11019,13198, 12774, 857, 120,11175,12730,12723, 857,12717,12777, 1714, 12725, 120,14117, 3504,11175,12717, 1715,12719,12719,12719, 12719,12719,12719,12719,12719,12719,12751,12727,12774, 416, 1716,12769, 1717,12890, 1718,12727,12730, 1719,12779,12778, 12789, 3647, 1720,12731,12730, 1721,12782, 1722,12793, 1723, 12794, 1724, 1725, 1726, 2525, 3071,12732,13349,12797,12891, 1712,13065,10423, 3072,12719,12719,12719,12719,12719,12720, 12721,12721,12721,12721,12721,12721,12721,12721,12721,12721, 12721,12721,12733,12805,12727, 3073,12723,12824,12723,10423, 10423,12810, 3074,12730,10437,11175,12829,11175,13069,12065, 12731,12840,12725,12840,12832,12732, 3075,12734, 3076,12734, 3078,12843,12844, 3079,12824,12824,14117,13065, 3081,12824, 1265, 3082,12827, 3083,12840, 3084,12828, 3085, 3086, 3087, 1713,12733,14117,12735, 120,12735,12740,12741,12742,12743, 12743,12743,12743,12743,12743,12845,12065,12845,12850,13076, 1266,13071, 1714,12848,10423,13030,12853, 120,12849, 1715, 10382,10382,10382,10382,10382,10382,10382,10382,10382,12283, 12850,12845,10501, 1716,12855, 1717, 3667, 1718,12865,12824, 1719,12854,12858,13082, 120, 1720,12868, 416, 1721,10423, 1722,10423, 1723,10437, 1724, 1725, 1726, 1713,14117,13076, 120, 3668,10890,10890,10890,12792,12792,12792,12792,12792, 12792,12792,12792,12792,12824, 8417,12824, 3504,12824, 1714, 12954,12789,12827,10501,12878, 7157, 1715,12828, 8417, 8417, 247,12958,12878,12136,12893, 120,13080, 120, 7157, 7157, 1716,12136, 1717,11327, 1718, 9697, 247, 1719, 8417,12959, 120, 120, 1720, 416, 8419, 1721, 416, 1722, 7157, 1723, 12963, 1724, 1725, 1726, 1713, 857,10423, 8419, 8419,12878, 120, 120,12893, 8417, 8421,12889, 617,12899,12136,12900, 12890,11327,12900, 7157, 8421,12884, 1714, 8419,12895,12911, 10275,12824, 857, 1715,12912, 120, 9715, 9715, 9715, 9715, 9715, 9715, 9715, 9715, 9715,12901,12891, 3669,12901, 1717, 12964, 1718, 8419, 8421, 1719,12912,12893,12954,12893, 1720, 12913,12968, 1721,12928, 1722,11327, 1723,11327, 1724, 1725, 1726, 2095, 1713,12905,12895,12905, 9697,12893,12905,12902, 416,12913,11339,12921,11339,12954,11327,11339,12905,12929, 12927,12907,11353,12957, 1714,12928, 6527,11339,12902,12905, 14139, 1715, 416,12938,12907,12903,11021,12921,11339,12914, 13083, 6527,12185,14086,10537, 1716,11353, 1717, 3670, 1718, 12914,12929, 1719,12923,12903,12944, 120, 1720,13083,10539, 1721,12921, 1722,12921, 1723,12915, 1724, 1725, 1726, 1713, 11353, 120,11353,12921,12938,12984,12915,13087, 6527,12923, 12959,12940,11353,12185,12930, 416,12988,13105,12962,12964, 12943, 1714,13101,14146,12930, 6527,10539,12967, 1715,10520, 10520,10520,10520,10520,10520,10520,10520,10520, 120,12969, 12931, 416, 1716,12947, 1717, 416, 1718,12972, 2091, 1719, 12931,13111,12984,12938, 1720, 120, 3671, 1721,13114, 1722, 12987, 1723,12185, 1724, 1725, 1726, 3677, 3678, 3678, 3678, 3678, 3678, 3678, 3678, 3678, 2576, 6527, 416, 857,12938, 857,12938, 3678, 3678, 3678, 3678, 3678, 3679,12185,12989, 12185,12994,13120,12989,10539,12943,12994,12992,14153,12997, 12945, 247,12945,12959,12993,12984, 120,12998, 3678, 3678, 3678, 3678, 3678, 3678, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3682, 6527, 857,12946,13009,12946,12999, 3681, 3681, 3681, 3681, 3681, 3683,13009,13002,13013,13014, 13014, 1265,12947,13244,13012,13019, 5161,13017,13065, 247, 12989,13018, 6644,13022, 120,13165, 3681, 3681, 3681, 3681, 3681, 3681, 3684, 3684, 3684, 3684, 3684, 3684, 3684, 3684, 3684, 1266, 1304,13035,13167, 6645, 4527, 264, 3684, 3684, 3684, 3684, 3684, 3685,12948,12948,12948,12948,12948,12948, 12948,12948,12948,12948,12948,12948,12948,12948,12949,12950, 12950,12950, 5845, 416, 3684, 3684, 3684, 3684, 3684, 3684, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3109, 4520, 5155, 120, 2805, 8613, 8613, 3689, 3689, 3689, 3689, 3689, 3690,12950,12950,12950,12950,12950,12950,12950,12950, 12950, 120,13040,13041,14161,13815, 8613,13046,12286,13065, 13076, 4521, 3689, 3689, 3689, 3689, 3689, 3689, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 5839, 1265, 1265, 6644,13105,12286,13042, 3691, 3691, 3691, 3691, 3691, 3692, 13033,12286,13032,12290,13065,13122, 5161,13054,13065,12289, 13825, 416,13070, 6645,13064,13036,13036,13037, 1266, 1266, 3691, 3691, 3691, 3691, 3691, 3691, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3119, 4527,13065,13073,13137, 13076,13076, 3696, 3696, 3696, 3696, 3696, 3697,13072,13081, 13089,13102,13105, 5161, 1265,13076,13105,13261,13055,13056, 13055,13056,13038,13038,13038,13038,13038,13112, 3696, 3696, 3696, 3696, 3696, 3696, 3698, 3698, 3698, 3698, 3698, 3698, 3698, 3698, 3698, 4527, 1266,13103, 1346,13100,13083,13109, 3698, 3698, 3698, 3698, 3698, 3699,13088,13105,13114,13114, 13057,13122, 1265,13058,13105,13110,13114,13119,13122,13127, 13128,13051,13051,13052,13138,13147, 3698, 3698, 3698, 3698, 3698, 3698, 3704, 3704, 3704, 3704, 3704, 3704, 3704, 3704, 3704, 3131, 1266,13114,13113,13118,13146,14172, 3704, 3704, 3704, 3704, 3704, 3705,13121,13126,13138,13136,13138, 1265, 13065,13142,13151,10986,13144,13105,13153,14054,13047,13047, 13047,13047,13047,13047, 3704, 3704, 3704, 3704, 3704, 3704, 3706, 3706, 3706, 3706, 3706, 3706, 3706, 3706, 3706, 1266, 13073,12413,13145,13065,13147, 8613, 3706, 3706, 3706, 3706, 3706, 3707,13152,13161,13163,13168,12951,13147,12198,12198, 12198,12198,12198,12198,12198,12198,12198, 6644,13166, 5267, 13065, 120, 3706, 3706, 3706, 3706, 3706, 3706, 2168, 120, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2132, 6645,13162, 416, 120,13176, 120, 2129, 2129, 2129, 2129, 2129, 2131,13143,13143,13143,13143,13143,13143,13143,13143, 13143,13065,13176,13065,13065, 857,13272,13065,13138,13070, 13179,13186, 2129, 2129, 2129, 2129, 2129, 2129, 3715, 3715, 3715, 3715, 3715, 3715, 3715, 3715, 3715, 3147, 120,13491, 13193,13065, 9967,13176, 3715, 3715, 3715, 3715, 3715, 3716, 13069,13071,13072,13074,13180, 1265, 2842, 120,13189,14186, 120,13827, 120,13199,13050,13050,13050,13050,13050,13050, 3715, 3715, 3715, 3715, 3715, 3715, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 1266, 120, 3392,10899,10899, 10899,13185, 3717, 3717, 3717, 3717, 3717, 3718, 5945,13170, 13191,13193,13193, 1023, 2852,10872,13870, 8910, 5945,13196, 14200, 6644,13184,13197, 237,13065,13358, 120, 3717, 3717, 3717, 3717, 3717, 3717, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2146, 6645,13198,13211, 5945,13273,13198, 2143, 2143, 2143, 2143, 2143, 2145, 247, 120,10872,10872, 416, 120,10908,10908,10908, 247,13307,10237,10237,14200, 120, 120,10237,10237, 416,13309, 2143, 2143, 2143, 2143, 2143, 2143, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 1428,12427,12427,12427,12427,12427,12427, 2139, 2139, 2139, 2139, 2139, 2140,13218,13218,13218,13218,13218,13218, 13218,13218,13218, 1023,13243,13263,11156,11156,11156,13203, 13203,13203,13203,13203, 2139, 2139, 2139, 2139, 2139, 2139, 3726, 3727, 3727, 3727, 3727, 3727, 3727, 3727, 3727, 2625, 1023,13205,13205,13206,10188, 120, 3727, 3727, 3727, 3727, 3727, 3728,13218,13218,13218,13218,13218,13219,13220,13220, 13220,14235, 1023,13220,13220,13220,13220,13220,13220,13220, 13220,13220, 3727, 3727, 3727, 3727, 3727, 3727, 3730, 3730, 3730, 3730, 3730, 3730, 3730, 3730, 3730, 3731,13204,13204, 13204,13204,13204,13204, 3730, 3730, 3730, 3730, 3730, 3732, 10884,10884,10884,10884,10884,10884,10884,10884,10884, 1023, 10890,10890,10890,10890,10890,10890,10890,10890,10890,14235, 3730, 3730, 3730, 3730, 3730, 3730, 3738, 3739, 3740, 3741, 3741, 3741, 3741, 3741, 3741,10237,13308,13264, 8910,14106, 10237, 120, 2160, 2160, 2160, 2160, 2160, 2164,10899,10899, 10899,10899,10899,10899,10899,10899,10899,10908,10908,10908, 10908,10908,10908,10908,10908,10908, 1350,13274, 2160, 2160, 2160, 2160, 2160, 2160, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 1780,10921,10921,14235,13370, 120,13425, 2157, 2157, 2157, 2157, 2157, 2158, 120, 120,13374,14200, 416,12951,14200,12198,12198,12198,12198,12198,12952,12195, 12195,12195,13366, 3504, 3504,13420, 2157, 2157, 2157, 2157, 2157, 2157, 119, 119, 120, 119, 119, 119, 119, 119, 119, 124, 3747, 119, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 119, 119, 119, 119, 119, 119, 119, 417, 417, 417, 417, 417, 418, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 119, 119, 119, 119, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 119, 119,10921, 119, 119, 119, 119, 119, 119, 247, 119, 2192, 208, 220, 120, 120,13278,10974, 8852, 14200,14200, 2193, 119, 119, 119, 119, 119, 119, 120, 209,13303, 3504,12951, 3757,12195,12195,12195,12195,12195, 12195,12195,12195,12195,13245,13255, 120,10226, 221, 8853, 13271, 2195, 119, 119, 119, 119, 120, 119, 119, 119, 119, 119, 119,13283, 119, 2192,13240,13240,13240,13240, 13240,13240,13240,13240,13240, 2193, 119, 119, 119, 119, 119, 119, 3758, 8854,13262,10237, 5161, 3757,13310,13313, 10237,10423,14313,10237,10237,13038,13038,13038,13038,13038, 13038,13038,13038,13038, 2195, 119, 119, 119, 119, 7593, 119, 119, 119, 119, 119, 119, 4527, 119, 3761,13240, 13240,13240,13240,13240,13241,13242,13242,13242, 2193, 119, 119, 119, 119, 119, 119,13370,10237,10237, 6950, 1265, 3762,10237,10237,13373,14313,13304,13279,13306,13053,13053, 13053,13053,13053,13053,13053,13053,13053, 2195, 119, 119, 119, 119, 8852, 119, 119, 119, 119, 119, 119, 1266, 119, 3761,13242,13242,13242,13242,13242,13242,13242,13242, 13242, 2193, 119, 119, 119, 119, 119, 119, 3763,13375, 14318,10237, 8853, 3762, 1089, 8852,10237,13378, 4824,10237, 13265,13246,13315,10974,10237, 8589, 835,13430,13305,13311, 2195, 119, 119, 119, 119, 8590, 119, 119, 119, 119, 119, 119, 4824, 119, 3761, 8853, 8854, 6644, 4825, 1353, 602,13269,10226,13431, 2193, 119, 119, 119, 119, 119, 119, 1354,10237,14318, 8592,11003, 3766,10237,13247,13248, 6645,10237, 4825,13314, 5525, 1355,10237,13276, 8589, 8854, 406, 120, 4826, 2195, 119, 119, 119, 119, 8590, 119, 119, 119, 119, 119, 119, 7293, 119, 3761, 5525,13344, 6644,11364,11364,11364,13280,13801, 4826, 2193, 119, 119, 119, 119, 119, 119, 3767,10237,11021, 8592,14318, 3766, 13316,11021, 120, 6645,14313,14313,10974,13200,13200,13200, 13200,13200,13200,13200,13200,13200, 2195, 119, 119, 119, 119, 1086, 119, 119, 119, 119, 119, 119, 1023, 119, 3761,11028, 1326,13249,13359,10226,11029,12500,13375, 1087, 2193, 119, 119, 119, 119, 119, 119, 1265, 2048,13379, 1326, 833, 3769,14313, 3770,12501,13048,13048,13048,13048, 13048,13048, 1327, 726,10951,13049, 2049,12502,11019, 3771, 3772, 3772,14313, 8589,13277, 120,13268, 1266, 2050,12500, 3773, 119, 119, 8590, 119, 119, 119, 119, 119, 119, 120, 119, 2192, 7593,10952, 6644, 1328,12501,13340,12500, 13257,12503, 2193, 119, 119, 119, 119, 119, 119,12502, 13799,10953, 8592,13275, 3779, 9580, 6954,12501, 6645,13266, 11028,13369, 6950,14330,13251,11029, 8589, 7294,10954,12502, 13787, 2195, 119, 119, 119, 119, 8590, 119, 119, 119, 119, 119, 119,12503, 119, 2192, 6955, 857, 6644, 857, 6954, 7940,12500,10289,13281, 2193, 119, 119, 119, 119, 119, 119, 3780,12503,10237, 8592,13788, 3779,11008,10237, 12501, 6645,13370,11009,13375, 857,13317, 2525,10984, 8589, 6955, 120,12502,10985, 2195, 119, 119, 119, 119, 8590, 119, 119, 119, 119, 119, 119, 120, 119, 2192,13380, 13380, 6644, 857,13440, 2048, 8198,13416,13383, 2193, 119, 119, 119, 119, 119, 119,13380,12503,13252, 8592,13282, 3784,13285, 2049, 8199, 6645,13312,13384,12746,10237,13441, 7941,13337, 8589,10237, 2050, 8200,13253, 2195, 119, 119, 119, 119, 8590, 119, 119, 119, 119, 119, 119,11007, 119, 2192,14334, 416, 6644, 120,14339,12500, 726, 6919, 8586, 2193, 119, 119, 119, 119, 119, 119, 3785, 8201, 11135, 8592,13385, 3784,13267,12501,13971, 6645,13333,11021, 13388,11021, 120,12584,11021, 8589,11021,12502,12585, 6920, 2195, 119, 119, 119, 119, 8590, 119, 119, 119, 119, 119, 119,12583, 119, 2192,11021, 6921, 6644,14343,11019, 11021,13815, 416,13250, 2193, 119, 119, 119, 119, 119, 119,12503,13334,13260, 8592,13390, 3789,14348, 726,10951, 6645,13815, 8587,13393,13201,13201,13201,13201,13201,13201, 13201,13201,13201, 2195, 119, 119, 119, 119,13819, 119, 119, 119, 119, 119, 119, 1023, 119, 2192, 1265,10952, 11019,11028,11019, 726,10951,13821,11029, 2193, 119, 119, 119, 119, 119, 119, 3790,11021,10953,11021,11848, 3789, 11021,14352,11021, 8613,13385,11752,12581,13332, 1266,13335, 11019, 8589,13258,10954,10952,13389, 2195, 119, 119, 119, 119, 8590, 119, 119, 119, 119, 119, 119,13341, 119, 2192,10953,11028, 6644,11028,13815,13400,11029,13346,11029, 2193, 119, 119, 119, 119, 119, 119,13404,10954,13400, 8592,11137, 3793, 726, 6919,13256, 6645,13403,13342,13336, 11019,11021,11028, 120, 8589,13823,11021,11029, 9580, 2195, 119, 119, 119, 119, 8590, 119, 119, 119, 119, 119, 119,12580, 119, 2192, 6920, 416, 6644,11019,14361,13362, 13362,13363,13259, 2193, 119, 119, 119, 119, 119, 119, 3794, 6921,11019, 8592, 119, 3793,10289,13405,13345, 6645, 120,13324,11028,13368, 119,13408,12746,11029, 6922,11847, 9244,12746, 2195, 119, 119, 119, 119,12750, 119, 119, 119, 119, 119, 119, 3795, 119, 2192,13325,13827,11028, 11021,11019,14365, 119,13350,11021, 2193, 119, 119, 119, 119, 119, 119, 3795,11028,13331, 416, 120, 3797,11029, 13348,13202,13202,13202,13202,13202,13202,13202,13202,13202, 13452,13468,13833,13484, 3504, 2195, 119, 119, 3795, 3795, 119, 119, 1023, 119, 119, 119, 119, 119, 119,11839, 119, 119,12746,11028,12600, 120,13453,13469,11029,13480, 12749, 119, 119, 119, 119, 119, 119, 119,13361,13361, 13361,13361,13361, 3799,13203,13203,13203,13203,13203,13203, 13203,13203,13203,13364,13786,13364, 1023, 857,14375, 120, 119, 119, 119, 119, 119, 1023, 119, 119, 119, 119, 119, 119,13418, 119, 119,13429,14379,13995, 416, 120, 13430,12681,13494,13433, 119, 119, 119, 119, 119, 119, 119, 3800,11963,11019, 120,13365, 3799,13207,13207,13207, 13207,13207,13207,13207,13207,13207,13431,12620,12620,12620, 12620,12620,12620, 119, 119, 119, 119, 119, 1023, 119, 119, 119, 119, 119, 119,13445, 119, 2192, 120,11670, 11670,11670,14391,13789,11975,13494,13499, 2193, 119, 119, 119, 119, 119, 119,11137,11028,13498,13503, 416, 3804, 11029, 247, 120, 8198,13347,11019, 120,13360,13360,13360, 13360,13360,13360,13360,13360,13360, 2195, 119, 119, 119, 119, 8199, 119, 119, 119, 119, 119, 119, 120, 119, 2192,13970,13439, 8200,13451, 857,11137,13440,13504,13452, 2193, 119, 119, 119, 119, 119, 119, 3805, 120,13508, 11843, 416, 3804,13836,13844,11019,13494,11028,13343,13461, 13499,13254,11029,13441,13497,13453,13827, 8201,11989, 2195, 119, 119, 119, 119,11844, 119, 119, 119, 119, 119, 119,13478, 119, 2192,13467,14400,14457,13842,13867,13468, 12730, 7135,13418, 2193, 119, 119, 119, 119, 119, 119, 13351,12681,13352,13831,13433, 3808,13499,11028,13424,11173, 13418,13353,11029,11963,13502,13469,13525, 857,13354,12681, 13435, 120, 2195, 119, 119, 119, 119,13529, 119, 119, 119, 119, 119, 119, 416, 119, 2192,13836, 7135,13040, 13041,14475,13525, 120,13530,13433, 2193, 119, 119, 119, 119, 119, 119, 3809,11963,13534,11175,14475, 3808,13361, 13361,13361,13361,13361,13361,13361,13361,13361, 120, 416, 13042,13796,13844,13850,13840, 2195, 119, 119, 119, 119, 120, 119, 119, 119, 119, 119, 119, 3810, 119, 2192, 11156,11156,11156,11156,11156,11156,11156,11156,11156, 2193, 119, 119, 119, 119, 119, 119, 3810,14537, 120,13848, 13862, 3812,13535,13550,10274,10274,10274,10274,10274,10274, 10274,10274,10274,13539,13555, 3504,14537,14537, 2195, 119, 119, 3810, 3810, 277, 277, 120, 287, 277, 277, 277, 277, 277, 667, 280, 277, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 917, 277, 277, 277, 277, 277, 277, 3814, 3814, 3814, 3814, 3814, 3815, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669, 3813, 3813, 3813, 3813, 3813, 3813, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 278, 857,14475,13871, 120, 7135, 120, 7135, 14459, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 13445,13445,13461,13461,10423,11175,13478,11175,13530,11975, 11975,11989,11989,13504, 247,12730,13447, 120,13463, 120, 416,13507,13483,13509,13525, 416,13974, 416,11019,13601, 13951,13512,13528, 3814, 3814, 3814, 3814, 3814, 3814, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3242, 7135, 7135, 10437,12065,13433,11843, 3818, 3818, 3818, 3818, 3818, 3819, 11028,11963,13530,13535,13540,11029,13487,13487,13355,14475, 13533,13538,13543,13442, 247,13601,13624,11844, 120, 120, 3818, 3818, 3818, 3818, 3818, 3818, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3821,12065,13556,12065,13443, 13478, 857, 3820, 3820, 3820, 3820, 3820, 3822,13560,12730, 13488,13488,13488,13488,13488,13488,13488,13488,13488,13550, 13871,13629,14475,13634, 416, 120,12954,13553, 3820, 3820, 3820, 3820, 3820, 3820, 313,13578,13578,13578,13578,13578, 13578,13578,13578, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3825,14025,13877, 120,13433,13445,13445, 3824, 3824, 3824, 3824, 3824, 3826,11963,11975,11975,13556,13572, 13606,13827,13435,13447,13561,13572,13559,13442,13454,13454, 13580,13610,13564,13579, 6527, 3824, 3824, 3824, 3824, 3824, 3824, 3830, 3830, 3830, 3830, 3830, 3830, 3830, 3830, 3830, 2700,13835,11325,13443,13455,13455,13461, 3830, 3830, 3830, 3830, 3830, 3831,13581, 120,11989,13606,13611,13624,13629, 13624,13584,13463,13629,13609,13614,10423,13470,13627,13628, 13633,13632,14475, 3830, 3830, 3830, 3830, 3830, 3830, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3834,14587, 6527,13601,13461,13471,13478, 3833, 3833, 3833, 3833, 3833, 3835,11989,13605,12730,13634,13634,13639,13639,11327,13644, 13483,13654,13637,13470,13642,13485,13638,13647,13643,13657, 120, 3833, 3833, 3833, 3833, 3833, 3833, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 2710,13680,13681,13471, 13478,13486,13681, 3839, 3839, 3839, 3839, 3839, 3840,12730, 13488,13488,13488,13488,13488,13489,13490,13490,13490,13659, 13688,13485,13695,13703,13682, 1023, 1023,13662,13682, 3839, 3839, 3839, 3839, 3839, 3839, 3842, 3842, 3842, 3842, 3842, 3842, 3842, 3842, 3842, 3843,13687,13689,13486,13696,13704, 13688, 3842, 3842, 3842, 3842, 3842, 3844,13490,13490,13490, 13490,13490,13490,13490,13490,13490,13694,13702,13714,13728, 14140,13695,13703,11727,11727,11727,13689, 3842, 3842, 3842, 3842, 3842, 3842, 3848, 3849, 3850, 3851, 3851, 3851, 3851, 3851, 3851, 857, 857,13715,13729,14141,13696,13704, 2232, 2232, 2232, 2232, 2232, 2236,13554,13554,13554,13554,13554, 13554,13554,13554,13554,13721,13713,12954,13741,13746, 120, 13714,13550,13815,12185,12957, 2232, 2232, 2232, 2232, 2232, 2232, 3852, 3852, 3852, 3852, 3852, 3852, 3852, 3852, 3852, 2722, 6527,13654,14451,12954, 9697,13715, 3852, 3852, 3852, 3852, 3852, 3853,13658,13721,12958,13741,11002,13741,11327, 13727,13824,14061,12185,13744,13728, 247, 857,10423,13745, 13723, 120, 6527, 3852, 3852, 3852, 3852, 3852, 3852, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3856, 6527, 11327,13729,13741,13601,13721, 3855, 3855, 3855, 3855, 3855, 3857,13604, 120,12185,13746, 416,13746,13697,13751,10252, 13813,14679,13749,13827, 247,14683,13754,13750, 416, 120, 6527, 3855, 3855, 3855, 3855, 3855, 3855, 3861, 3862, 3863, 3864, 3864, 3864, 3864, 3864, 3864, 6527, 120,13697, 857, 13751,13756, 857, 2242, 2242, 2242, 2242, 2242, 2246,13759, 120,13755,13869,13491,11337,12743,12743,12743,12743,12743, 12743,12743,12743,12743,13741,14684, 120,13775,11841, 2242, 2242, 2242, 2242, 2242, 2242, 1904, 120, 3865, 3865, 3865, 3865, 3865, 3865, 3865, 3865, 3865, 1862, 6527, 6527, 857, 13721,13721,13741, 2240, 2240, 2240, 2240, 2240, 2241,12185, 12185,13741,13741,13745,13741,11339,11339,13723,13775,13744, 13744,13730,13730, 247,13780,13745,13778, 120, 120, 2240, 2240, 2240, 2240, 2240, 2240, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 2738,14685, 6527,13731,13731,13775, 13775, 3866, 3866, 3866, 3866, 3866, 3867,13775,13778,13775, 13779,13780,13780,13741,13705,13741,13775,13778,13779,13741, 13783, 247,13784,13744,13745, 6527, 120, 3866, 3866, 3866, 3866, 3866, 3866, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3870,11339, 6527,13741,13741, 857,13741, 3869, 3869, 3869, 3869, 3869, 3871, 120,13744,13745, 416,13871, 13836,13871,13705,13706,13706,13706,13706,13706,13706,13706, 13706,13706,13741, 120, 120, 3869, 3869, 3869, 3869, 3869, 3869, 3875, 3876, 3877, 3878, 3878, 3878, 3878, 3878, 3878, 13868,13879,14686,14683,14023,14688,13875, 2253, 2253, 2253, 2253, 2253, 2257,13706,13706,13706,13706,13706,13707,13708, 13708,13708,13708,13708,13708,13708,13708,13708,13708,13708, 13708, 6527, 6527, 2253, 2253, 2253, 2253, 2253, 2253, 3879, 3879, 3879, 3879, 3879, 3879, 3879, 3879, 3879, 1876,11351, 11353,13741, 120,13815,13785, 2251, 2251, 2251, 2251, 2251, 2252, 120, 120,14689,13822,14690,13491,13827,12743,12743, 12743,12743,12743,13492,12740,12740,12740,13791,13834,13871, 13785, 2251, 2251, 2251, 2251, 2251, 2251, 119, 119, 120, 656, 119, 119, 119, 119, 119,13881, 119, 119, 3881, 3881, 3881, 3881, 3881, 3881, 4520, 5155,13741, 3882, 119, 119, 119, 119, 119, 119,13744,14691,14708,13880,13491, 665,12740,12740,12740,12740,12740,12740,12740,12740,12740, 11019,14093,13890,13885,13881,11019, 4521, 119, 119, 119, 277, 277, 120, 278, 277, 277, 277, 277, 277, 8613, 280, 277, 3883, 3883, 3883, 3883, 3883, 3883, 6527, 6527, 13790, 3884, 277, 277, 277, 277, 277, 277,13887,13894, 13815,13827,13836, 668,13815,14651,11353,13716,13820,13832, 13841,13815,14719, 247, 247,10252, 6527, 6527, 120, 120, 277, 277, 277, 669, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3297,11353,13716,13826,13836, 8613, 8613, 3888, 3888, 3888, 3888, 3888, 3889, 120, 120,13843, 416, 13717,13717,13717,13717,13717,13717,13717,13717,13717, 8613, 13827, 5267, 120,13827,13871,14723, 3888, 3888, 3888, 3888, 3888, 3888, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 416, 1265,13881,13881,13952,13176,13973, 3890, 3890, 3890, 3890, 3890, 3891,13717,13717,13717,13717,13717,13718, 13719,13719,13719,13719,13719,13719,13719,13719,13719,13719, 13719,13719, 1266,13889, 3890, 3890, 3890, 3890, 3890, 3890, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2280, 5161,13058,13953, 857, 6644,14728, 2277, 2277, 2277, 2277, 2277, 2279,11364,11364,11364,11364,11364,11364,11364,11364, 11364,13844,13040,13041, 120,13815, 6644, 6645,13975,13849, 4527,13898, 2277, 2277, 2277, 2277, 2277, 2277, 2273, 2273, 2273, 2273, 2273, 2273, 2273, 2273, 2273, 1536,13797, 6645, 13871,13961,13871,13042, 2273, 2273, 2273, 2273, 2273, 2274, 13876,13878,13792,13881,13814,13890,13890,13898,13902,13890, 13825,13886,12951,13895,12195,12195,12195,12195,12195,12195, 2273, 2273, 2273, 2273, 2273, 2273, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 120,13915,13881,13890,13914, 13896,13913, 3901, 3901, 3901, 3901, 3901, 3902,13888,13897, 13908,13915,13926,13915,13926,13737,13738,13739,13740,13740, 13740,13740,13740,13740,13923,13933,13924, 857, 3901, 3901, 3901, 3901, 3901, 3901, 119, 119, 120, 3906, 119, 119, 119, 119, 119,13898, 119, 119,13915,13912,13919,13930, 857,13903,14117, 5161,13920, 903, 119, 119, 119, 119, 119, 119,13793,13793,13793,13793,13793, 665,13915,13926, 13926,13934,14732,13934, 120,14117,13881,13931,14475, 8589, 13934,13939,13944, 4527, 119, 119, 119, 277, 277, 8590, 278, 277, 277, 277, 277, 277, 667, 280, 277,13176, 120, 6644,13921,14018,13932,13949,13926,13179, 917, 277, 277, 277, 277, 277, 277,13925, 5161,13938, 8592,13948, 690,14027, 416,14535, 6645,13793,13793,13793,13793,13793, 13793,13793,13793,13793, 1265,13958,13950, 277, 277, 277, 669, 9950,13815,13807,13807,13808, 4527, 3910, 1557, 1557, 1558, 3913, 2788, 1557, 1557, 1557, 1557,13962, 1557, 1557, 13975,14112,14112,14113, 1266, 6644,13176,13975,13978, 1557, 1557, 1557, 1557, 1557, 1557, 1557,13208,13180,13979,13819, 1265, 2310, 120,14737,13994,14741, 120,13175, 6645,13802, 13802,13802,13802,13802,13802,13802,13802,13802, 1557, 1557, 1557, 119, 119,13967, 119, 119, 119, 119, 119, 119, 1266, 119, 119, 2842,13956,13956,13956,13956,13956,13956, 13962,13968, 119, 119, 119, 119, 119, 119, 119, 5161, 13969, 416,13964, 120, 1816, 6644,13983,14131,13794,13794, 13794,13794,13794,13794, 3392,13963,12681,13795, 1023,13972, 13175, 119, 119, 119, 1265,13982,13988,11019, 6645, 4527, 120, 2852,11019,13048,13048,13048,13048,13048,13048, 3915, 1557, 1557, 1558, 2312, 1557, 1557, 1557, 1557, 1557, 120, 1557, 1557, 247, 247, 1266, 120, 1023, 120, 120,14017, 14750, 2313, 1557, 1557, 1557, 1557, 1557, 1557, 1265, 120, 208, 247, 416, 1927, 3504, 3504, 120,13803,13803,13803, 13803,13803,13803,13803,13803,13803, 3504, 209, 1089, 120, 1557, 1557, 1557, 3504,14180,14002, 1023, 8852, 1266, 2842, 835, 1265, 120,12730, 220, 6954,14026,14028, 3917, 1265, 13805,13805,13805,13805,13805,13987,14754, 3928, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 8853,14003,14011, 3392, 1266, 1265, 237,14022, 6955, 6950,14024, 221, 1266, 1265,13806,13806,13806,13806,13806,13806, 2852, 3928, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 247,14036, 14035, 8854, 1266, 120,13966,13984,13985,13984,13985,14108, 1266, 1004, 1004,10974, 1265, 1004, 1004, 1004, 1004, 1004, 3504, 1004, 3367,14147,13992,13992,13992,13992,13992, 120, 416, 1023, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 120, 14117,11019,10226, 1265, 3945, 1023,11019,13986,14120,14148, 13987,14091,13804,13804,13804,13804,13804,13804,13804,13804, 13804, 3370, 1004, 1004, 1004, 1004,14020, 1265, 1004, 1004, 1004, 1004, 1004, 1266, 1004, 1004, 120, 120, 120, 416, 416, 416,14154,14030, 2049, 1004, 1004, 1004, 1004, 1004, 1004, 1004,14764, 3504, 3504, 3504, 2050, 3947,11670,11670, 11670,11670,11670,11670,11670,11670,11670, 247,14155, 3948, 120,14768, 120, 416, 1004, 1004, 1004,13922,13922,13922, 13922,13922,13922,13922,13922,13922,11019, 3504,14162, 3504, 247,11019,14398,13915,14094, 120, 3948, 1004, 1004,10974, 1265, 1004, 1004, 1004, 1004, 1004, 602, 1004, 3367,14033, 120,14095, 3504, 416,14163, 120,11019, 9967, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 3949,11019, 3504,10226, 1265, 3945,11019,14098, 416,14031,14089, 406,11019,13805,13805, 13805,13805,13805,13805,13805,13805,13805, 3370, 1004, 1004, 1004, 1004,10974, 1265, 1004, 1004, 1004, 1004, 1004, 1266, 1004, 3367,11727,11727,11727,11727,11727,11727,11727,11727, 11727, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 2525,10984, 14780,10226, 1265, 3955,10985, 4824, 120, 1326, 8852,13815, 13815,13809,13809,13809,13809,13809,13809,13809,13809,13809, 3370, 1004, 1004, 1004, 1004, 1326, 1265, 1004, 1004, 1004, 1004, 1004, 1266, 1004, 3367, 4825,14088, 1327, 8853,14037, 14029,14107, 1353,13821, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 3956,14657,14562, 1354,14114, 3955,13991,13991,13991, 13991,13991,13991,13991,13991,13991,14004,14005, 1355, 4826, 10252, 1328, 8854, 3370, 1004, 1004, 1004, 1004, 1023, 1265, 1004, 1004, 1004, 1004, 1004, 120, 1004, 3367,14117, 2048, 11019, 7593,14129, 726,10951,11019,14120, 3368, 1004, 1004, 1004, 1004, 1004, 1004,12000,12000,12000, 2049,14032, 3959, 13992,13992,13992,13992,13992,13992,13992,13992,13992, 2050, 6950,14096, 120, 416,10952,14287, 3370, 1004, 1004, 1004, 1004, 1023, 1265, 1004, 1004, 1004, 1004, 1004,14324, 1004, 3367,10953,14092, 6954,11019, 857,12500, 726,14013,11019, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 3960,14012,14019, 11019,14034, 3959,11019,12501,11019,12500,11006,11019,14090, 14117, 726,10951, 6955,14173,14055,12502,14475,10952, 3370, 1004, 1004, 1004, 1004,12501, 1265, 1004, 1004, 1004, 1004, 1004,11007, 1004, 3367,11821,10953,12502,14653,14680,14007, 14174,14475,10952, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 12503,14006,10954,11006,14479, 3962, 3963,10252,14117,10953, 857,14056,14008,14014, 726, 6919,11019,14117,14057,14121, 12503,14101, 3370, 1004, 1004,14481,10954,11007,14121,14075, 12501, 3676, 3963, 1004, 1004,14122, 1265, 1004, 1004, 1004, 1004, 1004,12502, 1004, 1004, 6920, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 120, 6921,14117,11019,12134, 3966,11840,11008,11019, 8198,14120,14016,11009,11825,14099,12503, 120, 8910, 6922, 7568,14695,11021, 1004, 1004, 1004, 1004, 1004, 8199, 1265, 1004, 1004, 1004, 1004, 1004, 9580, 1004, 1004,11021,14122, 8200,14789,14117,14009,14116,14117,11825, 1004, 1004, 1004, 1004, 1004, 1004, 1004,11021,11019,14121,14122,14122, 3966, 11019, 120,14115, 8198,11825,14125,14100, 857,14117,14126, 12587, 9580,11021,10289, 8201,14077, 1004, 1004, 1004, 1004, 1004, 8199, 1265, 1004, 1004, 1004, 1004, 1004,11021, 1004, 3367,14122,14117, 8200,14926,14117,14455,14939,14127,14125, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 726, 6919,10289, 14122, 857, 3968, 3969,13989,13989,13989,13989,13989,13989, 14122,14126,14010,13990,14127,11825,14015, 8201,14125, 3370, 1004, 1004,12584,11021,14117, 1023,13494,12585, 6920, 3969, 119, 119,14120, 3972, 119, 119, 119, 119, 119,11021, 119, 119,14117, 120,11657, 6921, 120,14117, 1086,14117, 14120, 119, 119, 119, 119, 119, 119, 119,14121,14117, 14121,11825, 6922, 3387,14076,13494, 1087,14120,14097,11021, 14696,11019,14139,13497,14944,12586,11019,14140, 833,14578, 119, 119, 119, 119, 119,11021, 3972, 119, 119, 119, 119, 119,11844, 119, 119, 7135,14111,14111,14111,14111, 14111, 857,14187,14141, 119, 119, 119, 119, 119, 119, 119, 3388,14021,11961,11825,11019, 3387, 120,14146,11845, 11019,13494,11021,14147,11846, 120,14200,14102,14188,14335, 14078, 416,13498, 119, 119, 119, 119, 119,11021, 119, 119, 119, 119, 119, 119,14200, 119, 119,14235,14148, 14475,14200, 7135,14203, 7135,14336,11825, 903, 119, 119, 119, 119, 119, 119,11021,11825,14153,11825,14081, 662, 11963,14154,14156,11021,12584,11021,14131,14200,14079,12585, 11021,14080, 120,14200, 120,12681, 119, 119, 119,11021, 14951,11021,14133,14205,14204,14535, 416,14155, 3974, 277, 277,14208, 287, 277, 277, 277, 277, 277, 667, 280, 277, 688, 688, 688, 688, 688, 688, 688, 688, 688, 917, 277, 277, 277, 277, 277, 277, 687, 687, 687, 687, 687, 690, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 3975, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,14161, 2841, 3979, 14957, 857,14162, 416,14966, 7135, 857, 7135,14131, 3980, 2841, 2841, 2841, 2841, 2841, 2841,13351,12681,13352,11019, 14180, 3981,14205,11963,11019,11973,14205,14087,14163,12730, 247,14200, 416,14209,13354, 120,14182, 120, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 857, 2841, 3979,14165,14165,14165,14165,14165,14165,14165, 14165,14165, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 3983, 14210,14215,14200,14200, 3981,14200, 416,14485,14213,14218, 14203,14203,14111,14111,14111,14111,14111,14111,14111,14111, 14111, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 120, 2841, 3979, 7135, 7135, 7135,14975, 7135, 7135, 7135, 7135,14489, 3980, 2841, 2841, 2841, 2841, 2841, 2841,14210,14200,11963,14156,11975, 3988,11975,14164, 11987,11989, 247,14214,14204, 247, 120, 120, 120, 416, 120, 120, 120, 120, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,14200, 2841, 3979, 7135, 7135, 7135, 857, 7135, 7135,14247, 416,14204, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 3989,14235,11975,14164,11989, 3988,11989,14175,14344,14238, 247, 247,14235,14982, 120, 120, 120, 416, 120, 120, 120, 416, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,14345, 2841, 3979,14165,14165,14165,14165,14165,14166,14167,14167, 14167, 3980, 2841, 2841, 2841, 2841, 2841, 2841,14235,14082, 7135,14083,14180, 3991,14235, 3992,14235,11021,14235,14239, 14084,12730,14238,14986,14238,12136,14240,14085,14175,14239, 3993, 3994, 3994,11021,14243, 247, 416, 120,14485,14172, 120, 3995, 119, 119,14173, 119, 119, 119, 119, 119, 119,13815, 119, 2192,14167,14167,14167,14167,14167,14167, 14167,14167,14167, 2193, 119, 119, 119, 119, 119, 119, 14174,14240,14491,14200,12136, 3757,14109,14109,14109,14109, 14109,14109,14244,14200,14204,14110, 120, 416,14200, 416, 13824,14203, 2195, 119, 119, 857,14203, 120,14176,14176, 14176,14176,14176,14176,14176,14176,14176,14176,14176,14176, 14176,14176,14177,14178,14178,14178,11861, 3999, 119, 119, 14240, 119, 119, 119, 119, 119, 119, 120, 119, 2192, 14178,14178,14178,14178,14178,14178,14178,14178,14178, 2193, 119, 119, 119, 119, 119, 119,14200,14186, 857, 857, 10423, 3757,14187,14200,14248,14180,14445,14204,14180,15056, 14200,14203,14257,14246,12730,10437,14248,12730, 2195, 119, 119,14182, 120,14200,14248,13601,14189,14260,14188,14189, 12000,12000,12000,12000,12000,12000,12000,12000,12000,14246, 13601,14494, 4000, 119, 119,15067, 119, 119, 119, 119, 119, 119,14190, 119, 119,14190,13491,14458,12740,12740, 12740,12740,12740,12740, 119, 119, 119, 119, 119, 119, 119, 4001,14502,14261, 4002,14261, 1465,14658,14498, 120, 1466,14264,14266, 1467, 1468, 1469,14265,12065, 1470,10423, 14269, 9811,10252, 119, 119, 119,14287,14196,14197,14198, 14199,14199,14199,14199,14199,14199,12065,14291,12065,14506, 14508,10423,14287, 120,13601, 1471, 119, 119, 120, 656, 119, 119, 119, 119, 119,13605, 119, 119,12153,12153, 12153,14313, 7812,14313,14292,14313,13601, 903, 119, 119, 119, 119, 119, 119,13604,14296,14317,14516,14353, 665, 12065,12065,12065,14225,14225,14225,14225,14225,14225,14225, 14225,14225,14287,14292,14297,14313, 119, 119, 119,14228, 14290,14295,14300,14316,14354,14313,14318,14313, 4003, 119, 119,14313, 656, 119, 119, 119, 119, 119,14313, 119, 119,14313,14317, 119,15083,10237,14316,14313,14318,14316, 903, 119, 119, 119, 119, 119, 119,14318,14317,14322, 10237,14318, 665,15275,14313,14321,14245,14245,14245,14245, 14245,14245,14245,14245,14245,14318,14318,14313,14366, 119, 119, 119,14240,14321,14321,14316,14318, 4004, 119, 119, 14313, 119, 119, 119, 119, 119, 119,14322, 119, 119, 14313,12164,12164,12164,14367,14313, 9697,14313,14316, 903, 119, 119, 119, 119, 119, 119,14317,14313,14317,14380, 14323, 662,14258,14258,14258,14258,14258,14258,14258,14258, 14258,15316,14524,14313,15322,12136,14400,14400, 119, 119, 119,14316, 247, 120,14403,14381,14323, 120,14404,14494, 14330,14502, 4005, 119, 119,14335, 4007, 119, 119, 119, 119, 119,14259, 119, 2192,14339,14348,14361,14375,14532, 14344,14353,14366,14380, 2193, 119, 119, 119, 119, 119, 119,14336,14392,14500,15293,14523, 2659,12153,12153,12153, 12153,12153,12153,12153,12153,12153,14345,14354,14367,14381, 416,14475,11035, 2195, 119, 119, 119, 119,14393, 119, 119, 119, 119, 119, 119, 857, 119, 2192,12164,12164, 12164,12164,12164,12164,12164,12164,12164, 2193, 119, 119, 119, 119, 119, 119, 6527, 6527, 6527, 6527,14391, 2659, 14400, 6527,14405,14392,14447, 119,14535, 857,13815,14405, 14408, 4010,12183,12185,12185,12185, 2195, 119, 119,14394, 14409, 247,14410,14415, 120, 120, 120, 120,14410,14393, 416, 120,14405,14414,14419,14448,14413,13955, 4010, 119, 119,15327, 119, 119, 119, 119, 119, 119, 124, 119, 119, 125, 126, 127, 128, 128, 128, 128, 128, 128, 129, 119, 119, 119, 119, 130, 119, 131, 131, 131, 131, 131, 132, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 119, 119, 119, 119, 131, 131, 131, 131, 131, 131, 133, 133, 133, 133, 133, 4014, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 778, 778, 14400, 778, 778, 778, 778, 778, 778, 857, 778, 2897, 6527,14404,15294,14475, 857, 4520,14450, 120,14415, 2898, 778, 778, 778, 778, 778, 778,14418,11035,14394,14420, 14430, 4030,14410,14434,14400, 247,13810,14423,14433,14400, 120,14437,14403,14444,14472, 120, 4521,14481, 2900, 778, 778, 778, 778,14466, 778, 778, 778, 778, 778, 778, 14475, 778, 2897,14395,14395,14395,14395,14395,14395,14395, 14395,14395, 2898, 778, 778, 778, 778, 778, 778, 4031, 14575, 120,14460, 1266, 4030,14395,14395,14395,14395,14395, 14396,14397,14397,14397, 120,14485,14475, 416,14475,14484, 15334, 2900, 778, 778, 778, 778,14449, 778, 778, 778, 778, 778, 778,14537, 778, 778,14397,14397,14397,14397, 14397,14397,14397,14397,14397, 778, 778, 778, 778, 778, 778, 778, 119,14479,14534,14479,14398, 4033,13740,13740, 13740,13740,13740,13740,13740,13740,13740, 9811,11839,14400, 14541,15289, 6644,14687, 778, 778, 778, 778, 778, 120, 778, 778, 778, 778, 778, 778, 416, 778, 778, 120, 14475,11035, 416, 119,14473, 6645,13815,14474, 778, 778, 778, 778, 778, 778, 778, 4034, 120,13822, 7812,14398, 4033,13740,13740,13740,13740,13740,14399,13737,13737,13737, 5161, 9811,14475, 8613,14481, 9811, 120, 778, 778, 778, 778, 778, 120, 778, 778, 778, 778, 778, 778,13815, 778, 778, 247, 120,14475,13815,13815, 120,13815, 617, 4527, 778, 778, 778, 778, 778, 778, 778,14475,13815, 14475,14484, 7812, 4036,14574,14475, 7812,13820, 857,13823, 13826,14482,13954,14480,14483, 4037, 9811,15340,14537,14452, 778, 778, 778,14276,14276,14276,14276,14276,14276,14276, 14276,14276,14485, 8613,14485,14537, 8613,14484, 120,14279, 14490, 5161, 4037, 778, 778,14492, 778, 778, 778, 778, 778, 778,14543, 778, 2897,13040,13041, 7812,14475,14453, 14485,14485,14494, 119, 2898, 778, 778, 778, 778, 778, 778, 4527,14541,14501,14537,14398, 4044,13737,13737,13737, 13737,13737,13737,13737,13737,13737,13042,14475,14537,14456, 14493,14547, 120, 2900, 778, 778, 778, 778, 120, 778, 778, 778, 778, 778, 778,14494, 778, 2897,14502, 3504, 8613,14541,14536,14499,14475, 416,14507, 2898, 778, 778, 778, 778, 778, 778, 4045,14482,14475,14546, 5161, 4044, 14557,14494,14475, 1265,14480,14475,14475,14454,14454,14454, 14454,14454,14454,14454,14454,14454, 2900, 778, 778, 778, 778,14461, 778, 778, 778, 778, 778, 778, 4527, 778, 2897,14533,14483, 1266, 8613,15349,14483,14475,14537,14475, 2898, 778, 778, 778, 778, 778, 778,14480,14482,14537, 14537, 5161, 4049,14537,14537,14537,14537,14542,14542,14475, 13794,13794,13794,13794,13794,13794,14544, 8613,14545, 2900, 778, 778, 778, 778,14537, 778, 778, 778, 778, 778, 778, 4527, 778, 2897, 416,14544,14537,14543,15358,14475, 14543,14541,14537, 2898, 778, 778, 778, 778, 778, 778, 4050,14537,14547,14475,14537, 4049,14547, 1265, 1265,14542, 14475,14462,14463,14462,14463,14475,14547,14470,14470,14470, 14470,14470, 2900, 778, 778, 778, 778,14554, 778, 778, 778, 778, 778, 778,14545, 778, 2897, 1266, 1266,14551, 14553, 416,14484,15365,14481,15369, 2898, 778, 778, 778, 778, 778, 778,14464,14547, 8613,14465, 1265, 4053,14475, 14547,14475,14552,14475,14475,14560,14469,14469,14469,14469, 14469,14469,14469,14469,14469, 2900, 778, 778, 778, 778, 14547, 778, 778, 778, 778, 778, 778, 1266, 778, 2897, 14555,14483, 8613,14483, 416, 6644,14479,14475,14481, 2898, 778, 778, 778, 778, 778, 778, 4054,14475,14482,14475, 1265, 4053,14475,14475,15568,14480,15571,14475, 6645,14470, 14470,14470,14470,14470,14470,14470,14470,14470, 2900, 778, 778, 778, 778,14475, 778, 778, 778, 778, 778, 778, 1266, 778, 2897,14475,14482,14475,14479,13815,14558,14479, 14479,14480, 2898, 778, 778, 778, 778, 778, 778, 1265, 14475,14475,14563, 120, 4056, 6644, 416,14475,14467,14467, 14467,14467,14467,14467,14558,14480,13957,14468, 4057,14580, 15574, 2900, 778, 778,14475,14536, 120,14559, 6645, 1266, 14584,13962,13962, 120,14517,14517,14517,14517,14517,14517, 14517,14517,14517, 1023,14576, 4057, 778, 778,12283, 778, 778, 778, 778, 778, 778, 120, 778, 778,14481, 9180, 14566,13175,13175, 120, 120,14568, 857, 778, 778, 778, 778, 778, 778, 778, 5945,14580,10188,14599,14567, 4059, 14572,14573,14625,14583,15577,14600, 416,14522,15581,14577, 120,14580,14579, 120, 237, 120, 778, 778, 778, 778, 778,14595, 778, 778, 778, 778, 778, 778, 120, 778, 778, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 778, 778, 778, 778, 778, 778, 778,14655,14588,14617, 14622, 1023, 4059, 2842,14569,14601,15584,14626, 416,10252, 14561,14561,14561,14561,14561,14561,14561,14561,14561, 778, 778, 4040, 778, 778,14650, 778, 778, 778, 778, 778, 778, 6644, 778, 2897, 3392, 208, 2842,14589,14589,14589, 14589,14589,14589, 2898, 778, 778, 778, 778, 778, 778, 120, 2852, 209, 1089, 6645, 4063, 9580,14707, 1023,10252, 120,14633,14593, 416,14593, 835, 120, 3392,14590,14590, 14591, 120, 2900, 778, 778, 778, 778, 3504, 778, 778, 778, 778, 778, 778, 2852, 778, 2897,14624, 1023, 1023, 14623, 6955,14702,15591,10289,14708, 2898, 778, 778, 778, 778, 778, 778, 4064,14594,14621,14712,14571, 4063,14592, 14592,14592,14592,14592,14592,14592,14592,14592,10974,13989, 13989,13989,13989,13989,13989, 2900, 778, 778, 778, 778, 1023, 778, 778, 778, 778, 778, 778, 247, 778, 2897, 1023,15594, 120,11003, 8226, 7593, 1086,10226,10974, 2898, 778, 778, 778, 778, 778, 778,14630,14654,14627, 3504, 10252, 4066,15083, 120, 1087,14517,14517,14517,14517,14517, 14517,14517,14517,14517, 6950, 4067, 833,10226, 2900, 778, 778,14521,14556,14556,14556,14556,14556,14556,14556,14556, 14556,14596,14596,14596,14596,14596,14596, 120,14547,15087, 14597,15058, 4067, 119, 119, 5945, 119, 119, 119, 119, 119, 119, 1023, 2917, 2192, 416,14620, 602,14628, 2048, 14631, 7593, 9967,14635, 2193, 119, 119, 119, 119, 119, 119,12437,12698,12698,12698,14632, 4071, 2049,11656,11656, 11656,11656,11656,11656,11656,11656,11656, 406, 857, 2050, 6950,14683, 120, 2195, 119, 119, 2658, 119, 119, 1023, 119, 119, 119, 119, 119, 119, 8852, 2917, 2192,12709, 12709,12709, 6954,14708,15602,14610,14652,14618, 2193, 119, 119, 119, 119, 119, 119, 4072,10252,15054,12560, 120, 4071, 2525,10984, 8852, 4824,12500, 8853,10985,10252,14602, 14636,11845, 6955,14787, 857, 220,11846, 2195, 119, 119, 2658, 119, 119,12501, 119, 119, 119, 119, 119, 119, 11021, 2917, 119, 8853, 4825,12502, 120,15179,14676,14708, 8854,14606, 119, 119, 119, 119, 119, 119, 119, 221, 14634,14659,14708, 1023, 4073,14708,11021,14708,14677,14789, 14711,10252,14603,14604,11021,14711,14712, 8854, 4826,12503, 14793, 119, 119, 119, 119, 119, 119,15200, 119, 119, 119, 119, 119, 119, 3476, 2917, 119, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 119, 119, 119, 119, 119, 119, 119, 3477, 3477, 3477, 3477, 3477, 3478, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3504, 119, 119, 119, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 119, 119,12500, 119, 119, 119, 119, 119, 119, 857, 2917, 2192,15605,10974, 120, 3880, 12679,12681,14854, 8198,12501, 2193, 119, 119, 119, 119, 119, 119, 120, 120, 120, 120,12502, 4077,14789,11021, 12584, 8199,12500,11843,14713,12585,10226,11021,14678, 120, 14697,14681,14697, 8200, 3482, 119, 119, 4078, 119, 119, 12501, 119, 119, 119, 119, 119, 119,11844, 2917, 2192, 12503,14724,12502,14733,15065, 416, 120,14605,14629, 2193, 119, 119, 119, 119, 119, 119, 4079,14609,10188,15201, 14704, 4077,14698, 726,10951, 726,14614,14725,13250,14734, 14701,14701,14701,14701,14701,14607,12503,14705, 3482, 119, 119, 4078, 119, 119, 8198, 119, 119, 119, 119, 119, 119, 120, 119, 2192,10952,14719, 6920,14742,14706,14755, 14724,14794, 8199, 2193, 119, 119, 119, 119, 119, 119, 14799,10953,14798, 6921, 8200, 4080, 726,10951,14611, 726, 14615,14803,14608,14743, 3098,14756,14725, 119,10954,11754, 6922,14891, 3482, 119, 119, 119, 119, 903, 119, 119, 119, 119, 119, 119,14708, 4081, 119,10952, 8201,14728, 6920, 726,10951,14612,14733,11006, 119, 119, 119, 119, 119, 119, 119,14656,10953,12681, 119, 6921, 4073,15613, 14737,14750, 247,11752,15069,14742,14755, 120,10252,11007, 14734,10954,10952, 120, 6922, 119, 119, 119, 119, 4086, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 3490,10953, 12681,14743,14756,11843, 120, 4087, 4087, 4087, 4087, 4087, 4088,14682, 120,14789,15068, 416,10954,14804,14764,15616, 14780,14792,14613,14769,14769,14781,14781,11844,14808, 2048, 14619, 4087, 4087, 4087, 4087, 4087, 4087, 3493, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3495, 2049,14945,14770, 14770,14782,14782, 3494, 3494, 3494, 3494, 3494, 3496, 2050, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070,14794, 14799,11836,11035, 2493,14946, 416,15626,14797,14802, 3494, 3494, 3494, 3494, 3494, 3494, 4090, 4091, 4091, 4091, 4091, 4091, 4091, 4091, 4091, 4092,14109,14109,14109,14109,14109, 14109, 4091, 4091, 4091, 4091, 4091, 4093,12698,12698,12698, 12698,12698,12698,12698,12698,12698, 120,12938,12938,12938, 857,14694, 857, 857,15083, 7135, 7135, 4091, 4091, 4091, 4091, 4091, 4091, 4095, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 7135,12728,12730,14794,14789,14799,14789, 4096, 4096, 4096, 4096, 4096, 4097, 120, 120,14793,15089, 416, 14783, 120,14835,14616,14616,14616,14616,14616,14616,14616, 14616, 3504, 120,14853,15094, 4096, 4096, 4096, 4096, 4096, 4098, 119, 119, 120, 119, 119, 119, 119, 119, 119, 15053, 119, 2192,12709,12709,12709,12709,12709,12709,12709, 12709,12709, 2193, 119, 119, 119, 119, 119, 119, 4101, 15285,15098,15632,14855, 4080,14784,14784,14784,14784,14784, 14784,14784,14784,14784,14859,15632, 7135,11035, 6527,14447, 15055, 3482, 119, 119, 4103, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4105,12730,15070,12887, 857, 857,14804, 4104, 4104, 4104, 4104, 4104, 4106, 120,14807, 120, 416, 14448, 1265,15060,11860,11860,11860,11860,11860,11860,11860, 11860,11860,14835,14855, 120, 120, 4104, 4104, 4104, 4104, 4104, 4104, 119, 119, 120, 119, 119, 119, 119, 119, 119, 1266, 2917, 2192,14784,14784,14784,14784,14784,14785, 14786,14786,14786, 2193, 119, 119, 119, 119, 119, 119, 14465,15083,15637,15094,15637, 4114,14860,14701,14701,14701, 14701,14701,14701,14701,14701,14701,12065,14864,15637,15632, 12065,12065, 3482, 119, 119, 4115, 119, 119, 120, 119, 119, 119, 119, 119, 119,14809, 2917, 2192, 7135, 7135, 15092,14891,15103,14812,14891,14896,14926, 2193, 119, 119, 119, 119, 119, 119, 4116,14895,12730,14783,14819, 4114, 14896,15632,14824, 247, 247,14789,14823,14835, 120, 120, 14827,14900, 119,14792,15094,14838, 3482, 119, 119, 4115, 119, 119, 119, 119, 119, 119, 119, 119, 119,14789, 119, 2192,14786,14786,14786,14786,14786,14786,14786,14786, 14786, 2193, 119, 119, 119, 119, 119, 119,15100,15632, 15104, 119,14787, 4117,14199,14199,14199,14199,14199,14199, 14199,14199,14199,12065,14987,15297, 3070,15632, 120, 120, 3482, 119, 119, 119, 119, 120, 119, 119, 119, 119, 119, 119,10400, 2917, 2192,14839,14931,15108,14926,15173, 14988,14945, 7157,14843, 2193, 119, 119, 119, 119, 119, 119,14855,14860,14865, 120,14875, 4120,14880,14891,14858, 14863,14868,14896,14879,14901,14883,14894,14946, 857,10400, 14899, 8419,14904, 3482, 119, 119, 4121, 119, 119, 7157, 119, 119, 119, 119, 119, 119, 247, 2917, 2192,14906, 3662, 120,15659,14998, 857,14901, 120,14909, 2193, 119, 119, 119, 119, 119, 119, 4122,14905,14916, 8419,14926, 4120,14926,14926,14926,14998,14919,14982,14929,14931,15003, 14929,14987,14930,10400,14930,15002, 416, 3482, 119, 119, 4121, 119, 119, 7157, 119, 119, 119, 119, 119, 119, 15113, 2917, 2192,14998, 1023, 120,15669,14988, 416, 6527, 15003,15001, 2193, 119, 119, 119, 119, 119, 119,15083, 6527,15007, 8419,11657, 4124, 4125,14787,14952,14199,14199, 14199,14199,14199,14788,14196,14196,14196,15117,12887, 120, 15003, 3482, 119, 119, 4126, 247,15008,15104,15006, 120, 120, 4125, 119, 119,15011, 119, 119, 119, 119, 119, 119,15121, 119, 119,15093, 2679, 2679, 2679, 2679, 2679, 2679, 2679, 2679, 119, 119, 119, 119, 119, 119, 119, 120,15110, 120, 120,14787, 2680,14196,14196,14196,14196, 14196,14196,14196,14196,14196, 857,15094, 857,15125,15837, 8613,15180, 119, 119, 119, 119, 119, 120, 119, 119, 119, 119, 119, 119,10400, 119, 2192, 6527,15185, 6527, 15008, 6527,15013,15008, 7157,15083, 2193, 119, 119, 119, 119, 119, 119, 119,15012,12897, 120,12887, 4127,14952, 15013,15163, 617, 119, 1265,11019, 247, 120,15016, 120, 14926, 120, 416, 8419, 120, 3482, 119, 119, 119, 119, 15661, 119, 119, 119, 119, 119, 119,15104, 2917, 2192, 857, 6527, 119,15077, 1266,15013,15018, 120,10400, 2193, 119, 119, 119, 119, 119, 119,15017,15022, 7157,12897, 120, 4129, 4130,14699,14699,14699,14699,14699,14699,15018, 120, 120,14700, 1266, 416,15023,15162,15021, 3482, 119, 119, 4131, 8613,15026, 120,15184, 5839, 8419, 4130, 119, 119, 6527, 119, 119, 119, 119, 119, 119,15033, 119, 2192,15059,10188, 9562, 1265,15815,15036,15094,15083,14958, 2193, 119, 119, 119, 119, 119, 119, 4132, 6527, 6527, 6527, 120, 4117,14834,14834,14834,14834,14834,14834,14834, 14834,14834, 5161,15081, 1266,15033,12897,12909,14958, 3482, 119, 119, 366, 247, 120, 247,15037,15092, 120, 120, 120, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 3534, 8613, 4527, 120, 120,15038,11019, 4139, 4139, 4139, 4139, 4139, 4140,15041,14822,14822,14822,14822,14822,14822, 14822,14822,14822,15083,15043,15083,15104,15061,15304, 209, 14819, 6527,15046, 4139, 4139, 4139, 4139, 4139, 4139, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141,11019,14967, 15164, 8613,15897,15091, 9697, 4141, 4141, 4141, 4141, 4141, 4142, 120,14878,14878,14878,14878,14878,14878,14878,14878, 14878,15083,15094,15094,15104,15083,15083, 209,14875,15088, 15099, 4141, 4141, 4141, 4141, 4141, 4141, 2010,15038, 2434, 2434, 2434, 2434, 2434, 2434, 2434, 2434, 2434, 2437,15042, 15900,15165,14259,15102,15112, 2434, 2434, 2434, 2434, 2434, 2436,14959,14959,14959,14959,14959,14959,14959,14959,14959, 14959,14959,14959,14959,14959,14960,14961,14961,14961, 6527, 6527, 2434, 2434, 2434, 2434, 2434, 2434, 2430, 2430, 2430, 2430, 2430, 2430, 2430, 2430, 2430, 1631,12909,12925,15083, 15083, 120,15094, 2430, 2430, 2430, 2430, 2430, 2431, 120, 120,15090, 416,15101,15104,14258,14258,14258,14258,14258, 14258,14258,14258,14258,15916,15111,15186,15083,15166, 2430, 2430, 2430, 2430, 2430, 2430, 4150, 120, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3549,14961,14961,14961,14961, 14961,14961,14961,14961,14961,14259,13040,13041, 208,14968, 14968,14968,14968,14968,14968,14968,14968,14968,14057,15104, 6527, 6527,15093, 120, 6644, 209, 4150,15109, 3549, 3549, 3549, 3549, 3549, 4151, 3546, 3546, 3546,13042,12909,14967, 15113,10237,15328,15066, 120, 247, 247, 6645,15118, 208, 120, 120,14968,14968,14968,14968,14968,14969,14970,14970, 14970,15193, 857,15082,15919,15234, 209, 4150,15329, 3546, 3546, 3546, 3546, 3546, 3546, 3546, 3546, 3546,14970,14970, 14970,14970,14970,14970,14970,14970,14970,15187, 857,14398, 208,13737,13737,13737,13737,13737,13737, 6527,14977,14977, 14977,14977,14977,14977,14977,14977,14977, 209, 378,15113, 416, 6527, 120,15308, 6527,12925, 120, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 3563, 120, 6527,14976, 416,15113,12925, 4160, 4160, 4160, 4160, 4160, 4161, 247, 1265, 120,15120,15119, 120,15221,14976,15121,15127,15072, 15072,15073,15121, 247,15137,15126,14447,15055, 120, 4160, 4160, 4160, 4160, 4160, 4160,13478,13478,13478,15922,15925, 1266,15192, 221, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162,15057, 120,15137,15135,15136,14448,15144, 4162, 4162, 4162, 4162, 4162, 4163,14977,14977,14977,14977,14977, 14978,14979,14979,14979,14979,14979,14979,14979,14979,14979, 14979,14979,14979, 5161,15113, 4162, 4162, 4162, 4162, 4162, 4162,15141,15062,15062,15062,15062,15062,15062, 221, 2035, 15146, 2466, 2466, 2466, 2466, 2466, 2466, 2466, 2466, 2466, 2469,10237, 416, 4527,15145,15929,15932, 2466, 2466, 2466, 2466, 2466, 2468,12938,12938,12938,12938,12938,12938,12938, 12938,12938,15137,15146,15152, 7593,15083,15150,15146,15252, 15143,15151,15083, 2466, 2466, 2466, 2466, 2466, 2466, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 1658,15083, 13962,15230, 416,15083, 6950, 2462, 2462, 2462, 2462, 2462, 2463,15160,15161,15087,15090,15168,15089,14994,14995,14996, 14997,14997,14997,14997,14997,14997, 6644, 6644, 120,15091, 13175, 2462, 2462, 2462, 2462, 2462, 2462, 4171, 120, 3578, 3578, 3578, 3578, 3578, 3578, 3578, 3578, 3578,15083, 6645, 6645,15181, 5161, 857,15217,15939,15088, 5945,15170, 120, 220,15063,15063,15063,15063,15063,15063, 5945,15183,15942, 15064,15187,15187, 120,15083,10237, 1265,13962,15381,15190, 2842, 120, 4527,15191, 120,15071,15071,15071,15071,15071, 15071, 120,11861,15182, 221, 4171, 5945, 3578, 3578, 3578, 3578, 3578, 4172, 3575, 3575, 3575, 1266,13175, 1265, 8852, 1265,15176,15075,15174,15075,15254, 120,15192, 220,15074, 15074,15074,15074,15074,15074,15074,15074,15074,15177, 120, 10237,15657, 416, 416,15286, 1265,15222,15224, 1266, 8853, 1266, 2842,15178, 120,14467,14467,14467,14467,14467,14467, 15223,15250, 221, 4171,15076, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 1575, 1266, 120, 237, 1265,11035, 120, 220, 3392,15204,10237,15225, 220,12282,12282,12282, 12282,12282,12282,12282,12282,12282,15196,15196,15197, 2852, 1265,15313,15195,15195,15195,15195,15195,15211, 1266,15078, 15078,15078,15078,15078,15078, 221,15249, 1023,15079,15950, 221, 235, 235, 1023, 4193, 235, 235, 235, 235, 235, 1266, 235, 235,15671,14596,14596,14596,14596,14596,14596, 10974, 208, 235, 235, 235, 235, 235, 235, 235,13058, 15192, 8910, 1089, 8852, 3596, 1023,15231, 247, 209,15298, 7593,15198, 120,15198, 835, 120,10685,15202,15226,10226, 15675, 235, 235, 235, 235, 235, 8590, 4193, 235, 235, 235, 235, 235, 8853, 235, 235, 406, 1023, 6644, 6950, 2048,15203, 2048,15220,15299, 235, 235, 235, 235, 235, 235, 235, 3597,15199,15233, 8592,10685, 3596, 2049,15228, 2049, 6645, 120,10237,15953,11840, 8590, 8854,15291,10974, 2050,15287, 2050, 7293, 235, 235, 235, 4197, 6644,15290, 11035,11035,11035, 2060, 6955,15648, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 8592,15251,15218,10226,15229, 10237, 6645, 2060, 2060, 2060, 2060, 2060, 2061, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 404, 404,12500, 4201, 404, 404, 404, 404, 404,15253, 404, 404, 416, 7135,15467, 6527, 15961,15308, 4824, 6954,12501, 404, 404, 404, 404, 404, 404, 404,15312,15964,15683,13427,12502, 3605,15194,15194, 15194,15194,15194,15194,15194,15194,15194, 120, 120, 120, 15232, 9580, 4825, 6955, 404, 404, 404, 404, 404, 1023, 4201, 404, 404, 404, 404, 404,10685, 404, 404, 416, 15206,15687,15276,15300,15300,15301, 8590,15205, 404, 404, 404, 404, 404, 404, 404, 3606, 4826, 6957, 6644,10289, 3605,13690,13690,13690, 120,15207,15142,15142,15142,15142, 15142,15142,15142,15142,15142, 8592,10685, 404, 404, 404, 1381, 6645,15137,12501,15288,11825, 8590, 1382,11825, 4207, 7294,14683,10685,11021,11035,12502,15277,13346, 6644, 726, 10951, 1383, 8590, 1384, 120, 1385, 9967,11035, 1386,11021, 8198,15278,11021, 1387, 6644, 8592, 1388, 7940, 1389,11021, 1390, 6645, 1391, 1392, 1393, 1381,15295, 7941,15209,12503, 10952, 8592, 1382,10685,10685,11021,11035, 6645,15649,15974, 8200,15308,11019, 8590, 8590,13676, 1383,10953, 1384,15311, 1385,15276,15381, 1386,14704, 6644, 6644, 120, 1387, 4208, 15384, 1388, 8586, 1389,10954, 1390, 8198, 1391, 1392, 1393, 1381,14705, 8592, 8592, 8201,15370,10974, 1382, 6645, 6645, 8587, 8613,15386,14704, 8199, 726,10951,10685, 416,10685, 15389, 1383,14706, 1384,11825, 1385, 8200, 8590, 1386, 8590, 14705,15371,11021, 1387, 4209,10226, 1388,10685, 1389, 6644, 1390, 6644, 1391, 1392, 1393, 1381,10952, 8590,11021,15391, 15671,14706, 1382,15210,15381,15212, 8592,15394, 8592, 6644, 8201, 8860, 6645,10953, 6645,15385, 1383,15227, 1384,15305, 1385, 857, 9580, 1386,14704,15307, 8592,15980, 1387, 9950, 10954, 1388, 6645, 1389,11825, 1390,15279, 1391, 1392, 1393, 1381,14705,11021, 9244, 857,15681,15386, 1382,15386,15167, 15167,15167,15167,15167,15167,15167,15167,15167,11021,15390, 10289, 1383,14706, 1384,11825, 1385,15391,12578, 1386,15391, 6644, 120,15280, 1387, 2522,15396, 1388,15395, 1389,11825, 1390,11843, 1391, 1392, 1393, 1381,15400,11021,11021,15292, 15980,15281, 1382, 6645,15195,15195,15195,15195,15195,15195, 15195,15195,15195,11021,11035,11844, 1383, 857, 1384, 4210, 1385,15798,15396, 1386,15401, 1023,12500, 1086, 1387,15316, 15399, 1388,15404, 1389,15328, 1390,15683, 1391, 1392, 1393, 2525, 2526,15396,15985,12501, 1087, 1380,12436,12436,12436, 12436,12436,12436,12436,12436,12436,12502, 833, 726,10951, 15329,11825, 726, 6919,15401,15416, 120,13676, 1023,11021, 14704, 2527, 726, 6919,15282,15405,15421,15208, 2528, 120, 15406,15693, 416,15416, 4212,11021,15219,14705,15409,10952, 12503,15419, 2529, 6920, 2530,15306, 2532,15365,15985, 2533, 15214, 120,15370, 6920, 2535,15652,10953, 2536,14706, 2537, 6921, 2538,15213, 2539, 2540, 2541, 2525, 2526,15671, 7566, 6921,15653, 1380,10954,11825,11825,15276, 6922,15371, 7566, 15283,15284,11021,11021,15985,15651,15215, 6922,15216,15216, 15216,15216,15216,15216,15216,15216,15216, 2527,11021,11021, 15422, 120,15677, 4213, 2528,15671, 7135, 120,15425, 120, 15422,14699,14699,14699,14699,14699,14699,15438, 2529,11825, 2530,15426, 2532,15443,15335, 2533,12584,11021,15442, 7135, 2535,12585, 120, 2536,15450, 2537, 120, 2538, 120, 2539, 2540, 2541, 1381,11021,15680,15790, 7135,13427, 857, 1382, 12618,12618,12618,12618,12618,12618,12618,12618,12618, 120, 15427,15468, 416, 1383,13437, 1384,15438, 1385,15430, 1699, 1386, 120,15472,15438,15441, 1387, 120, 7135, 1388,15660, 1389, 7135, 1390, 4228, 1391, 1392, 1393, 1381,15302,15302, 15302,15302,15302,15302, 1382,13427, 7135,15303,11019,15335, 15980,15980, 247,15899, 7135,15443, 247, 120, 1383, 120, 1384, 120, 1385,15449,13437, 1386,15451, 7135, 7135, 4229, 1387, 247,13437, 1388,15454, 1389, 120, 1390,10275, 1391, 1392, 1393, 1381, 7135, 120,15341,15341, 416,15468, 1382, 15578, 7135, 247,15473, 857,15683,15471, 120, 120, 7135, 15473,13449, 120, 1702,15477, 1384, 857, 1385,15476,13449, 1386, 4230,15478, 120,15980, 1387, 247,13449, 1388,15468, 1389, 120, 1390,15482, 1391, 1392, 1393, 1703, 1381, 120, 7135,15473, 416,15694,15692, 1382,15342,15342,15342,15342, 15342,15342,15342,15342,15342, 7135,15493, 7135,15350, 1383, 15478, 1384,15694, 1385, 4231, 247, 1386,15498,15481,15483, 120, 1387,11021,15350, 1388,13465, 1389,15486, 1390,15894, 1391, 1392, 1393, 1381, 7135, 120,11021, 120,15774,15980, 1382,15342,15342,15342,15342,15342,15343,15344,15344,15344, 7135,15703,13465, 120, 1383,15493, 1384,15499, 1385, 247, 13676, 1386, 4232,15496, 120,15502, 1387, 247,13465, 1388, 15499, 1389, 120, 1390,15504, 1391, 1392, 1393, 1381, 7135, 120,15503,15507, 416,15515, 1382,15344,15344,15344,15344, 15344,15344,15344,15344,15344,15519,15520,15359, 208, 1383, 15515, 1384,15520, 1385, 247,15525, 1386,15524,15518, 120, 15523, 1387, 4233,15528, 1388, 209, 1389,12065, 1390,15816, 1391, 1392, 1393, 1713,15351,15351,15351,15351,15351,15351, 15351,15351,15351,15351,15351,15351,15351,15351,15352,15353, 15353,15353,15515,15530, 7135, 1714,12065,12065,13698,13698, 13698,15533, 1715,15353,15353,15353,15353,15353,15353,15353, 15353,15353,15359,15999,15525,15530, 1716,11019, 1717,15535, 1718,15520,15525, 1719, 120,15529,15534,15538, 1720,15902, 4234, 1721,15683, 1722,15671, 1723,12065, 1724, 1725, 1726, 1713,15360,15360,15360,15360,15360,15360,15360,15360,15360, 15360,15360,15360,15360,15360,15361,15362,15362,15362,15545, 15776,15560, 1714,13709,13709,13709,15689,15548, 4235, 1715, 15362,15362,15362,15362,15362,15362,15362,15362,15362,15999, 15545,15550,15560, 1716,15560, 1717,14998, 1718,14998,15553, 1719,15549,15563,15564,15001, 1720,13040,15658, 1721,15002, 1722, 857, 1723,15694, 1724, 1725, 1726, 1713,13478,13478, 13478,13478,13478,13478,13478,13478,13478,15377,15378,15379, 15380,15380,15380,15380,15380,15380,14998,13042,14787, 1714, 14196,14196,14196,14196,14196,14196, 1715,15700, 120,15420, 15420,15420,15420,15420,15420,15420,15420,15420, 6527,15578, 2094, 120, 1717,15632, 1718,15416, 247, 1719, 4236,15632, 15632, 120, 1720, 1023,15636, 1721,13725, 1722,15635, 1723, 15636, 1724, 1725, 1726, 2095, 2525, 3071,15437, 120, 9697, 857, 1712,12437,16040, 3072, 120,14834,14834,14834,14834, 14834,14834,14834,14834,14834,15497,15497,15497,15497,15497, 15497,15497,15497,15497,15632,15632, 3073, 120, 6527,15908, 6527,15493,15635, 3074,13690,13690,13690,13690,13690,13690, 13690,13690,13690, 6527,15632,15632,13725, 3075,13725, 3076, 857, 3078,15635, 247, 3079,14259,15636,15637, 120, 3081, 120,15627, 3082, 416, 3083,15640, 3084,15637, 3085, 3086, 3654, 2525, 3071, 120,16040,15632, 857, 1712,15641, 857, 3072,13698,13698,13698,13698,13698,13698,13698,13698,13698, 13709,13709,13709,13709,13709,13709,13709,13709,13709, 6527, 15637,15632, 3073,15637,15637,15637,15694,15637,15640, 3074, 15632,15642, 857,15640,15641, 4241, 857,15627,15632,15645, 15642,15632,15632, 3075, 247, 3076,15635, 3078,15671, 120, 3079,15646,15636,15636, 8613, 3081,15632,15642, 3082,15678, 3083,15632, 3084,15698, 3085, 3086, 3087, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 3682,11019,15632,15671, 120,15647,15901, 4266, 4266, 4266, 4266, 4266, 4267,15628, 15628,15628,15628,15628,15628,15628,15628,15628,15628,15628, 15628,15628,15628,15629,15630,15630,15630,15647,15796, 4266, 4266, 4266, 4266, 4266, 4266, 4268, 4268, 4268, 4268, 4268, 4268, 4268, 4268, 4268, 4269,15671, 1265, 8613,15812,15812, 15813, 4268, 4268, 4268, 4268, 4268, 4270,15630,15630,15630, 15630,15630,15630,15630,15630,15630,15632,15632,16040, 1023, 15682,15999,15683, 6644,15635,15635, 1266, 4268, 4268, 4268, 4268, 4268, 4268, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4273, 5161,15671,12283, 6645,15671, 264, 4272, 4272, 4272, 4272, 4272, 4274,15676,15683,15683,15694,15694, 14447,15055,15670,15683,15688,15694,15699, 8613,15690,15704, 15701,15704,15704, 4527,15679, 4272, 4272, 4272, 4272, 4272, 4272, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 3109,14448,15694,15691,15650,15702,15704, 4278, 4278, 4278, 4278, 4278, 4279,15704,15709,15710,15708,15654,15713, 1265, 15704,15748,15999,15999,15711,15713, 8613,15721,15663,15663, 15663,15663,15663, 4278, 4278, 4278, 4278, 4278, 4278, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4282, 1266, 15712,15704,15719,15713,15713, 4281, 4281, 4281, 4281, 4281, 4283,15718,15717,15721,15725,15720,15721, 1265, 1265,15713, 15999,15726,15666,15731,15666,15738,15664,15664,15665,15738, 15749, 4281, 4281, 4281, 4281, 4281, 4281, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 3119, 1266, 1266,15737, 15736,15738,16052, 4287, 4287, 4287, 4287, 4287, 4288,15743, 15735,15738,15742,15744,15667,15738,15749,15753,15749,15757, 15671,15757,15746,15767, 1575,15757,15754,15762, 120, 4287, 4287, 4287, 4287, 4287, 4287, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4291,15747,15749,16052,16057,15777, 15755, 4290, 4290, 4290, 4290, 4290, 4292,15756,15761,15772, 15771,15785, 5161,15749,16057,16057,15671,15786,15795,15683, 16052,15063,15063,15063,15063,15063,15063, 4290, 4290, 4290, 4290, 4290, 4290, 4296, 4297, 4298, 4299, 4299, 4299, 4299, 4299, 4299, 4527,15773,15775,15778,16052,13175, 120, 2587, 2587, 2587, 2587, 2587, 2591,15745,15745,15745,15745,15745, 15745,15745,15745,15745, 120, 2842,16052,15789,16052, 857, 120,15738, 120, 2842,15793, 2587, 2587, 2587, 2587, 2587, 2587, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 3131, 6644,15807,15791,15800, 9967, 3392, 4300, 4300, 4300, 4300, 4300, 4301,15794,15176,15797,15799,15800,15800,15808, 15814,16065, 416, 2852, 6645,15803, 120,16068, 120,15804, 15782,15177, 120, 4300, 4300, 4300, 4300, 4300, 4300, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4304, 1023, 1023, 120,15787,15838,15308, 4303, 4303, 4303, 4303, 4303, 4305,15833, 2525,10984,15850,15312, 1265,15898,10985, 120, 15851, 120,15834,15896,11019,15078,15078,15078,15078,15078, 15078, 4303, 4303, 4303, 4303, 4303, 4303, 4309, 4310, 4311, 4312, 4312, 4312, 4312, 4312, 4312, 1266, 4824,15835, 7593, 15849,11019, 416, 2597, 2597, 2597, 2597, 2597, 2601,11021, 15839,15892,11021,15905,15890,15780,15780,15780,15780,15780, 15780,16071, 416,11021,16078, 8910,11021, 4825, 6950, 2597, 2597, 2597, 2597, 2597, 2597, 2168, 6644, 4313, 4313, 4313, 4313, 4313, 4313, 4313, 4313, 4313, 2132, 2842,15811,15811, 15811,15811,15811, 2595, 2595, 2595, 2595, 2595, 2596, 6645, 11021,15819,15893, 1089,15308, 120,14149,14149,14149, 1023, 416, 120,15311,15788,11021, 835, 220,16084,15176, 2595, 2595, 2595, 2595, 2595, 2595, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 3147,15177, 8852,15825,15832,15906, 15912, 4314, 4314, 4314, 4314, 4314, 4315,14157,14157,14157, 221,14168,14168,14168,15817,10974,15787,10237,10237,10237, 10237,10237,10237,10237,10237,10237, 8853, 4314, 4314, 4314, 4314, 4314, 4314, 4317, 4317, 4317, 4317, 4317, 4317, 4317, 4317, 4317, 4318,12500,10226,10974,15381,15842,15381, 4317, 4317, 4317, 4317, 4317, 4319,14704,15384,15385,15909, 416, 8854,12501,14057,10237,10237,10237,10237,10237,10237,10237, 10237,10237,14705,12502,10226, 4317, 4317, 4317, 4317, 4317, 4317, 4323, 4324, 4325, 4326, 4326, 4326, 4326, 4326, 4326, 12500, 6954,15823,14706, 857,16090, 416, 2608, 2608, 2608, 2608, 2608, 2612, 9580,14135,14135,15926,12503,12501,16096, 8199,15911, 247,15822,15840, 416, 120, 120, 120,15308, 12502, 6955, 8200, 2608, 2608, 2608, 2608, 2608, 2608, 4327, 4327, 4327, 4327, 4327, 4327, 4327, 4327, 4327, 2146,15824, 2048,10289,16102, 857,15820, 2606, 2606, 2606, 2606, 2606, 2607,16105, 416,15848,12503,13252, 8201, 8199, 2049,10237, 10237,10237,10237,10237,10237,10237,10237,10237,15381, 8200, 2050, 2606, 2606, 2606, 2606, 2606, 2606, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 3731, 726, 6919,15980, 857,15980,16111, 4328, 4328, 4328, 4328, 4328, 4329,15983, 15984, 120,14135, 8201,15830,10237,10237,10237,10237,10237, 10237,10237,10237,10237, 120,15980,16111, 416, 6920, 4328, 4328, 4328, 4328, 4328, 4328, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330,10974, 6921, 7593, 857,15980,15980, 119, 4330, 4330, 4330, 4330, 4330, 4331,15983,15926,15984, 15828,13308, 6922,15980,15841, 247, 7135,14387,14387,14387, 120,15983,15980,10226, 120, 6950, 7135, 4330, 4330, 4330, 4330, 4330, 4330, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2627, 1086,14184,16116, 120,15980,15985, 2624, 2624, 2624, 2624, 2624, 2626,16128, 120,15843,15984,15989, 15669, 1087,15863,14057,10237,10237,10237,10237,10237,10237, 10237,10237,10237, 833, 7135, 2624, 2624, 2624, 2624, 2624, 2624, 2620, 2620, 2620, 2620, 2620, 2620, 2620, 2620, 2620, 1780, 7135,14184,16138, 857,15985,15831, 2620, 2620, 2620, 2620, 2620, 2621,15988, 120,16138,16150, 416, 8852,15975, 15811,15811,15811,15811,15811,15811,15811,15811,15811,15980, 16150, 120,15671, 2620, 2620, 2620, 2620, 2620, 2620, 119, 119, 1023, 119, 119, 119, 119, 119, 119, 8853, 4342, 119, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 119, 119, 119, 119, 119, 119, 119,15907,15907,15907, 15907,15907, 250,15985,15985,15818,15985,15681,15990,15980, 16150,15988, 8854, 9500,15988,15989,15993,15983, 120, 119, 119, 119, 119, 119, 119, 120, 119, 119, 119, 119, 119, 119,15845, 119, 2192,10237,10237,10237,10237,10237, 10237,10237,10237,10237, 2193, 119, 119, 119, 119, 119, 119,16127,15990, 857,16138, 6527, 4352,16138,16138,15861, 120,16129,15846,15994,14997,14997,14997,14997,14997,14997, 14997,14997,14997, 2195, 119, 119, 119, 119,15985, 119, 119, 119, 119, 119, 119, 120, 119, 2192, 857,15302, 15302,15302,15302,15302,15302,15980,15847, 2193, 119, 119, 119, 119, 119, 119, 4353,15980,15984,15980, 6527, 4352, 120,16138, 120,15990,15671,15983,15984,14997,14997,14997, 14997,14997,15631,14994,14994,14994, 2195, 119, 119, 119, 119, 7812, 119, 119, 119, 119, 119, 119, 120, 119, 3761,10237,10237,10237,10237,10237,10237,10237,10237,10237, 2193, 119, 119, 119, 119, 119, 119,16173,16137,15980, 15999, 6527, 4357,15669,16201, 726,10951,15983,16002, 857, 14994,14994,14994,14994,14994,14994,14994,14994,14994, 2195, 119, 119, 119, 119, 6954, 119, 119, 119, 119, 119, 119, 120, 119, 119,15980,15837,10952,15826,15864,14704, 857,15999,16004, 119, 119, 119, 119, 119, 119, 119, 16013,12500,16003,10953, 6955, 4359,14705,15809,15809,15809, 15809,15809,15809,15671,16004,15999,15810, 4360, 857,12501, 10954,15910, 119, 119, 119,16014,15671,14706, 1023, 6527, 6956,12502,15985,15980,12582,15980,15996,15821, 6957,15776, 11021,15671,15891,16004, 4360, 119, 119,13987, 119, 119, 119, 119, 119, 119,11021, 119, 3761,13250,12583, 120, 857,15980,15996,15675,16015,12503, 2193, 119, 119, 119, 119, 119, 119, 4361,16015,16019,16020, 5161, 4357, 120, 15680,16294,16018, 416,16023,15999,15655,15655,15655,15655, 15655,15655,15655,15655,15655, 2195, 119, 119, 119, 119, 16119, 119, 119, 119, 119, 119, 119, 4527, 119, 3761, 14149,14149,14149,14149,14149,14149,14149,14149,14149, 2193, 119, 119, 119, 119, 119, 119,15999,15999,15999,16040, 5161, 4365,16297, 416,16002,16300,16002,16043,16003,15656, 15656,15656,15656,15656,15656,15656,15656,15656, 2195, 119, 119, 119, 119,15671, 119, 119, 119, 119, 119, 119, 4527, 119, 3761,14157,14157,14157,14157,14157,14157,14157, 14157,14157, 2193, 119, 119, 119, 119, 119, 119, 4366, 15999, 857,16040, 1265, 4365,15256, 416,15677,16307,16266, 16043,16003,15662,15662,15662,15662,15662,15662,15662,15662, 15662, 2195, 119, 119, 119, 119,15999, 119, 119, 119, 119, 119, 119, 1266, 119, 3761,14168,14168,14168,14168, 14168,14168,14168,14168,14168, 2193, 119, 119, 119, 119, 119, 119,16040,16040, 857,16229, 1265, 4369, 416,16313, 15837, 416,16319,16044,16044,15663,15663,15663,15663,15663, 15663,15663,15663,15663, 2195, 119, 119, 119, 119,16040, 119, 119, 119, 119, 119, 119, 1266, 119, 3761,15976, 15976,15976,15976,15976,15976,15976,15976,15976, 2193, 119, 119, 119, 119, 119, 119, 4370,16040,16045,15999, 1265, 4369, 726,10951,16138,16043,16048,16002, 416,13057,13057, 13057,13057,13057,13057,13057,13057,13057, 2195, 119, 119, 119, 119, 120, 119, 119, 119, 119, 119, 119, 1266, 119, 3761,10952, 7135, 7135,16325,16040,16045,16138,15999, 16142, 2193, 119, 119, 119, 119, 119, 119,16049,10953, 857,14184,15975, 4372, 4373, 416,15999,16185, 247, 247, 15827,15999,15999, 120, 120,15999,10954,16003, 857,16002, 2195, 119, 119,16003, 120,16045,16138,16147,16138,16052, 4373, 119, 119,16130, 119, 119, 119, 119, 119, 119, 16056, 119, 119,15999, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 119, 119, 119, 119, 119, 119, 119,16331, 16144,16334,16144,15215, 4376,15216,15216,15216,15216,15216, 15216,15216,15216,15216, 120,15999,16138, 416,16051, 120, 16138, 119, 119, 119, 119, 119, 120, 119, 119, 119, 119, 119, 119, 7812, 119, 119,15829,15829,15829,15829, 15829,15829,15829,15829,16051, 119, 119, 119, 119, 119, 119, 119,16191,16142,16144, 416, 120, 4376,10237,10237, 10237,10237,10237,10237,10237,10237,10237, 120,16340,16348, 16138,15999,16406, 617, 119, 119, 119, 119, 119,16002, 119, 119, 119, 119, 119, 119, 7812, 119, 3761,15976, 15976,15976,15976,15976,15977,15978,15978,15978, 2193, 119, 119, 119, 119, 119, 119,16052,15253,12065,12065,16147, 4378, 4379,15863,16055,10237,10237,10237,10237,10237,10237, 10237,10237,10237,16052,16052,16052,16052, 2195, 119, 119, 16138,16055,16052,16052,16055,16056,16056, 4379, 119, 119, 16117, 119, 119, 119, 119, 119, 119,16138, 119, 2192, 15978,15978,15978,15978,15978,15978,15978,15978,15978, 2193, 119, 119, 119, 119, 119, 119, 120,16142,16150,16413, 120, 4384,15907,15907,15907,15907,15907,15907,15907,15907, 15907,12065,12065, 416,16416,16150,16147,11641, 2195, 119, 119, 119, 119, 120, 119, 119, 119, 119, 119, 119, 16057, 119, 2192,16057,16150,16154,16052,16057,16060,16057, 16057,16060, 2193, 119, 119, 119, 119, 119, 119, 4385, 16061,16061,16154,16150, 4384,13365,13365,13365,13365,13365, 13365,13365,13365,13365,16057,12065, 416,16052,16156,16150, 16422, 2195, 119, 119, 119, 119, 120, 119, 119, 119, 119, 119, 119,16057, 119, 2192,16052,16156, 416,12065, 16052,16060,16052,16052,16055, 2193, 119, 119, 119, 119, 119, 119,16052,16056,16052,15560, 7135, 4389,16159,16150, 16055,16131,16055,15563,15560,15380,15380,15380,15380,15380, 15380,15380,15380,15380, 2195, 119, 119, 119, 119,16052, 119, 119, 119, 119, 119, 119, 120, 119, 2192,16111, 16056, 1266, 857,16156,16426,15560,16111,16114, 2193, 119, 119, 119, 119, 119, 119, 4390,15564,16115,16160, 7135, 4389, 416,16160,16052, 6527, 857,16062,16111,15380,15380, 15380,15380,15380,15979,15377,15377,15377, 2195, 119, 119, 119, 119,14332, 119, 119, 119, 119, 119, 119, 120, 119, 2192,16062, 857, 120, 120,16166,16170,16111,15671, 16111, 2193, 119, 119, 119, 119, 119, 119,16114,16115, 15678,15671, 7135, 4394, 7812,15256,16430, 6527,16111,15676, 15256,15377,15377,15377,15377,15377,15377,15377,15377,15377, 2195, 119, 119, 119, 119,14332, 119, 119, 119, 119, 119, 119, 120, 119, 2192, 6527, 6527, 120, 247, 6527, 416, 6527, 120, 120, 2193, 119, 119, 119, 119, 119, 119, 4395,16150,14332,14341, 1265, 4394,14341,15671,14350, 247, 5161, 7812,15783, 247, 120, 120,16120, 8613, 120, 16150, 120, 6644, 2195, 119, 119, 119, 119, 6527, 119, 119, 119, 119, 119, 119, 1266, 119, 2192,15679,16154, 16138, 4527, 6527,15671,16138, 6645,14341, 2193, 119, 119, 119, 119, 119, 119,13058,16145, 416,16154, 120, 4399, 14350, 416,16079,16079,16079,16079,16079,16079,16079,16079, 16079,16160, 120,16434,16144, 416, 2195, 119, 119, 119, 119,16121, 119, 119, 119, 119, 119, 119,16138, 119, 2192,16079,16079,16079,16079,16079,16080,16081,16081,16081, 2193, 119, 119, 119, 119, 119, 119, 4400,16164, 416, 14447,15055, 4399,16081,16081,16081,16081,16081,16081,16081, 16081,16081,16438,16138,16138,16142,15671,16138,16138, 2195, 119, 119, 119, 119, 6527, 119, 119, 119, 119, 119, 119,14448, 119, 2192, 6527, 6527, 8613,16118, 6527, 6527, 5161,15682,14363, 2193, 119, 119, 119, 119, 119, 119, 16142,16142,14350,14363, 120, 4403,14363,14377,16122, 247, 247,16138,16148,16148, 120, 120, 4404, 416, 120, 120, 4527, 416, 2195, 119, 119,16085,16085,16085,16085,16085, 16085,16085,16085,16085,16085,16085,16085,16085,16085,16086, 16087,16087,16087, 4404, 119, 119,16138, 119, 119, 119, 119, 119, 119,16138, 119, 2192,16087,16087,16087,16087, 16087,16087,16087,16087,16087, 2193, 119, 119, 119, 119, 119, 119,16138,14776,14776,14776,16146, 4406,16091,16091, 16091,16091,16091,16091,16091,16091,16091,16144,16138,16138, 120,16138, 120,16461, 2195, 119, 119, 119, 119,16143, 119, 119, 119, 119, 119, 119,16144, 119, 2192,16091, 16091,16091,16091,16091,16092,16093,16093,16093, 2193, 119, 119, 119, 119, 119, 119, 4407,16142,16147,16468,16192, 4406,16093,16093,16093,16093,16093,16093,16093,16093,16093, 120,16138, 120, 1023, 8613, 120, 1111, 2195, 119, 119, 119, 119, 6527, 119, 119, 119, 119, 119, 119,16138, 119, 119, 6527,16138,16208,16138,16149,16143,13796,16138, 14377, 119, 119, 119, 119, 119, 119, 119,16138,16138, 14377,16202, 120, 4409,16228, 416,16138, 247,16150,16145, 16145,16150, 120,16146,16143,16146,16155,16150, 120,16155, 119, 119, 119, 119, 119,16155, 119, 119, 119, 119, 119, 119,10237, 119, 119,16097,16097,16097,16097,16097, 16097,16097,16097,16097, 119, 119, 119, 119, 119, 119, 119, 4410,16226, 8613,16535,16150, 4409,16097,16097,16097, 16097,16097,16098,16099,16099,16099,16157, 120,15669,16247, 16607,16467, 120, 119, 119, 119, 119, 119,16138, 119, 119, 119, 119, 119, 119, 120, 119, 2192,16099,16099, 16099,16099,16099,16099,16099,16099,16099, 2193, 119, 119, 119, 119, 119, 119,16186, 120, 8613,16193,16150, 4415, 14387,14387,14387,14387,14387,14387,14387,14387,14387,16157, 8613, 6644, 416,16287, 120, 120, 2195, 119, 119, 119, 119,16150, 119, 119, 119, 119, 119, 119, 1265, 119, 2192, 120,16610,16451, 6645,16160,16150,16135,16135,16136, 2193, 119, 119, 119, 119, 119, 119, 4416,16450,16160, 120, 6527, 4415,16448,16150,16227,16150,16165, 1266,16138, 14994,14994,14994,14994,14994,14994,16158, 8613, 416, 2195, 119, 119, 119, 119,16138, 119, 119, 119, 119, 119, 119, 120, 119, 2192,16158,16138,16160,14947,14947,14947, 16447, 1265,16138, 2193, 119, 119, 119, 119, 119, 119, 16134,16134,16134,16134,16134, 4420,16160,16138, 5161,16138, 16138,16138,16123,16124,16123,16124,16168,16167,16143,16148, 16145, 1266, 2195, 119, 119, 119, 119, 120, 119, 119, 119, 119, 119, 119,16138, 119, 2192,16146, 4527,16138, 16138,16146,16143,16171,16138,16138, 2193, 119, 119, 119, 119, 119, 119, 4421,16125,16145,16138,16126, 4420,16239, 10237,15671,15671,16187,16143,16172, 2842, 120,16190,16171, 16149, 6644,14953,14953,14953, 2195, 119, 119, 119, 119, 13962, 119, 119, 119, 119, 119, 119,16187, 119, 2192, 15777,15778,16181,15793, 6645,16194,16179, 3392, 120, 2193, 119, 119, 119, 119, 119, 119,16198,16187, 857,15845, 13175, 4424,16188,16194, 2852,10188,16182,15793, 208, 1089, 16284,16197, 4425,16209, 120,16249,16468,14567, 2195, 119, 119, 835, 120,16194, 220, 209, 2842,15793,16203,15846, 16203,15809,15809,15809,15809,15809,15809,16210,16230, 4425, 119, 119,16225, 119, 119, 119, 119, 119, 119,10237, 119, 2192, 1023,16217, 1023,16477,14935,15176, 221,16189, 16184, 2193, 119, 119, 119, 119, 119, 119, 120,16340, 16204,16616, 1265, 4427,15177,16211,16212, 726,10951, 2842, 16344,16134,16134,16134,16134,16134,16134,16134,16134,16134, 2195, 119, 119, 119, 119,15787, 119, 119, 119, 119, 119, 119, 1266, 119, 2192, 8853, 8853,16233,10952,10974, 15176,16218,16248, 1023, 2193, 119, 119, 119, 119, 119, 119, 4428, 2525,16240,16340,10953, 4427,15177,10985,16232, 416,15837,16343,16340,16533,16183,10226,16514,10226, 8854, 8854,16343,10954, 2195, 119, 119, 277, 277,15787, 287, 277, 277, 277, 277, 277, 667, 280, 277, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 917, 277, 277, 277, 277, 277, 277, 4430, 4430, 4430, 4430, 4430, 4431, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669, 4429, 4429, 4429, 4429, 4429, 4429, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 278,14962,14962,14962, 120, 16468,16231, 7593,10974, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430,13986,13986,13986,13986,13986,13986,13986, 13986,13986,16207,16207,16207,16207,16207,16207,16207,16207, 16207, 6950,10226,15256, 1023,14971,14971,14971,15256,16477, 16234,16531,16620, 1023,15871,16260, 4430, 4430, 4430, 4430, 4430, 4430, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 3242,16207,16207,16207,16207,16207, 857, 4434, 4434, 4434, 4434, 4434, 4435,15995,15995,15995,15995,15995,15995,15995, 15995,15995, 1023, 119, 4824, 857, 857,12806, 120,15990, 16340,16340, 416, 4434, 4434, 4434, 4434, 4434, 4434, 4437, 4437, 4437, 4437, 4437, 4437, 4437, 4437, 4437, 4438, 120, 16340,16348, 119, 9697, 4825, 4437, 4437, 4437, 4437, 4437, 4439, 1265, 2048,16283,15256, 857,12808,16526, 120,15256, 16132,16132,16132,16132,16132,16132,16263, 1086, 6954,16133, 2049, 4437, 4437, 4437, 4437, 4437, 4437, 313, 4826, 5527, 16353, 1266, 2050, 8910,16213, 1087, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440,15845, 7135, 833, 6955,16495, 14465,16624, 4440, 4440, 4440, 4440, 4440, 4441,16030,16030, 16030,16030,16030,16030,16030,16030,16030, 7593,16224, 857, 16236,16468,16223, 120,16033,15846, 120,16238, 4440, 4440, 4440, 4440, 4440, 4440, 4443, 4443, 4443, 4443, 4443, 4443, 4443, 4443, 4443, 3825,16371, 857, 6950,16480, 119,16499, 4443, 4443, 4443, 4443, 4443, 4444,16050,16050,16050,16050, 16050,16050,16050,16050,16050, 120,16348, 416,12065,12065, 16348,16468,16045,16468,16351,16235, 4443, 4443, 4443, 4443, 4443, 4443, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445,15845,15845,16406,16406,16628,14259,16291, 4445, 4445, 4445, 4445, 4445, 4446,16169,16169,16169,16169,16169,16169, 16169,16169,16169,16452,16265, 416,16478, 857,16478,16632, 16160,15846,15846,12500, 4445, 4445, 4445, 4445, 4445, 4445, 4450, 4450, 4450, 4450, 4450, 4450, 4450, 4450, 4450, 3834, 12500,12501,16442, 4527, 9967,16340, 4450, 4450, 4450, 4450, 4450, 4451,16290,12502,10237,15847,16344,16237,12501, 5161, 15863,16353,15256, 8613, 9580,16468,15874,15256, 416,16356, 12502,15875, 4450, 4450, 4450, 4450, 4450, 4450, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452,12503,16468, 4527, 16479, 1023,16348,16215, 4452, 4452, 4452, 4452, 4452, 4453, 15256,14704,10289,16352,12503,15256,16357,16288,16126,16598, 13987,11008, 8910,16728,16360, 416,11009,16262,14705,12500, 4452, 4452, 4452, 4452, 4452, 4452, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 3843,16738,12501,14935,14706, 16353,16371, 4456, 4456, 4456, 4456, 4456, 4457,16371,12502, 120,16370,16375, 416, 120,16468,16374,16741,16214,11019, 11019,11019,11019,11019,11019,11019,11019,11019, 4456, 4456, 4456, 4456, 4456, 4456, 4458, 4458, 4458, 4458, 4458, 4458, 4458, 4458, 4458,12503, 7157, 7157, 8613,16376,16348,16474, 4458, 4458, 4458, 4458, 4458, 4459, 120, 120,16380,16352, 416,16406,16177,16177,16177,16177,16177,16177,16177,16177, 16177,16468,16410, 8419, 8419, 120, 4458, 4458, 4458, 4458, 4458, 4458, 1904, 6644, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2710, 726,10951, 857, 120,16782, 120, 2709, 2709, 2709, 2709, 2709, 2711, 6645,14683,11019,11019, 11019,11019,11019,11019,11019,11019,11019, 5161,16535, 120, 120,16503,16509,16468,16544,10952, 2709, 2709, 2709, 2709, 2709, 2709, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 3856,10953, 7157,16600,16604,16406, 4527, 4465, 4465, 4465, 4465, 4465, 4466,16219, 120,16376,16410,16381,10954, 16472, 617,16391,16396,16379,16261,16384,16835,15256,16836, 16395,16399, 8419,15256, 4465, 4465, 4465, 4465, 4465, 4465, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467,15873, 726, 6919,15330,15330,15330, 857, 4467, 4467, 4467, 4467, 4467, 4468,11019,11019,11019,11019,11019,11019,11019,11019, 11019,11019,11019,11019,11019,11019,11019,11019,11019,11019, 16636, 6920, 4467, 4467, 4467, 4467, 4467, 4467, 2721, 2721, 2721, 2721, 2721, 2721, 2721, 2721, 2721, 2722, 6921,16837, 857,16442,16468,16348, 2721, 2721, 2721, 2721, 2721, 2723, 16220,16351,16446,16475,16468, 6922,11019,11019,11019,11019, 11019,11019,11019,11019,11019,16643,16277,16468, 7135, 7135, 2721, 2721, 2721, 2721, 2721, 2721, 2718, 2718, 2718, 2718, 2718, 2718, 2718, 2718, 2718, 1862,14721,14730,16838,16468, 16568,16472, 2718, 2718, 2718, 2718, 2718, 2719, 120, 120, 16475,16474,14093,16280,14683,11019,11019,11019,11019,11019, 11019,11019,11019,11019,16510,16510,16511,14704, 2718, 2718, 2718, 2718, 2718, 2718, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 3870,14705, 1023,16839,16840,16289,16841, 4474, 4474, 4474, 4474, 4474, 4475,11019,11019,11019,11019, 11019,11019,11019,11019,11019,14706,16460,11019,11019,11019, 11019,11019,11019,11019,11019,11019, 4474, 4474, 4474, 4474, 4474, 4474, 4476, 4476, 4476, 4476, 4476, 4476, 4476, 4476, 4476,16278,16468,15336,15336,15336, 120,16842, 4476, 4476, 4476, 4476, 4476, 4477,15901,16280, 119,11019,11019,11019, 11019,11019,11019,11019,11019,11019,15345,15345,15345,15354, 15354,15354,16476,16348, 4476, 4476, 4476, 4476, 4476, 4476, 2737, 2737, 2737, 2737, 2737, 2737, 2737, 2737, 2737, 2738, 14447,16449,15565,15565,15565, 119, 2737, 2737, 2737, 2737, 2737, 2739,11019,11019,11019,11019,11019,11019,11019,11019, 11019,16308,16308,16308,16308,16308,16308,16308,16308,16308, 7135,14448, 2737, 2737, 2737, 2737, 2737, 2737, 2734, 2734, 2734, 2734, 2734, 2734, 2734, 2734, 2734, 1876,14721, 7135, 15622,15622,15622,16406, 2734, 2734, 2734, 2734, 2734, 2735, 120,16409,16406, 416,14935, 120,16264,14721,15256,16281, 16409, 247,16468,15256, 247,16468, 120,11019,11019, 120, 2734, 2734, 2734, 2734, 2734, 2734, 119, 119,15870, 119, 119, 119, 119, 119, 119,16252, 119, 119,16442,16843, 7135,16481, 7135,11635, 7135,16476,16445, 119, 119, 119, 119, 119, 119, 119, 1463, 7135, 4483, 1464,14730, 1465, 14730,16253,14739, 1466,15256, 247, 1467, 1468, 1469,15256, 120, 1470, 120,14739, 120, 416, 119, 119, 119,16259, 247,16596,16597,16747,16503, 120,16468,16205,16205,16205, 16205,16205,16205,16468,16473,16507,16206,16848, 1471, 119, 119,16473, 656, 119, 119, 119, 119, 119, 1023, 119, 119, 4484, 4484, 4484, 4484, 4484, 4484, 4484, 4484, 4484, 903, 119, 119, 119, 119, 119, 119,11657,16757,16849, 16508,16508, 665,16308,16308,16308,16308,16308,16309,16310, 16310,16310, 120, 120,16850,16491, 416,16853,16883, 119, 119, 119, 277, 277, 120, 278, 277, 277, 277, 277, 277, 667, 280, 277, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 906, 277, 277, 277, 277, 277, 277, 667, 667, 667, 667, 667, 668, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 277, 277, 277, 669, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 119, 119, 7135, 1171, 119, 119, 119, 119, 119, 119, 119, 119, 4487, 4487, 4487, 4487, 4487, 4487,16458, 119,14752, 119, 119, 119, 119, 119, 119, 119, 119, 16870, 416,16483, 120, 454,16310,16310,16310,16310,16310, 16310,16310,16310,16310,11019, 857,16406, 7135, 7135, 857, 16459, 119, 119, 119, 119, 4491, 4491, 4491, 4491, 4491, 4491, 4491, 4491, 4491, 3297,14739,14766, 7157, 119,16487, 16648, 4491, 4491, 4491, 4491, 4491, 4492, 120, 120, 120, 416,16314,16314,16314,16314,16314,16314,16314,16314,16314, 857, 857,12065, 857,16888,16888, 8419, 4491, 4491, 4491, 4491, 4491, 4491, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4495,16923,16923,16674,16679,16720,16442, 4494, 4494, 4494, 4494, 4494, 4496,16314,16314,16314,16314,16314, 16315,16316,16316,16316,16316,16316,16316,16316,16316,16316, 16316,16316,16316, 7135,13962, 4494, 4494, 4494, 4494, 4494, 4494, 4500, 4501, 4502, 4503, 4503, 4503, 4503, 4503, 4503, 7135,14752, 7135,16515, 120,15318,16923, 2762, 2762, 2762, 2762, 2762, 2766, 120,13175,10188, 416, 120,14752,16508, 14766, 5945,16500,16492,16187, 247, 247, 247,16468,16732, 120, 120, 120, 2762, 2762, 2762, 2762, 2762, 2762, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 2280,16488, 5945,16888, 120,16888,15793, 2760, 2760, 2760, 2760, 2760, 2761,16320,16320,16320,16320,16320,16320,16320,16320,16320, 16320,16320,16320,16320,16320,16321,16322,16322,16322, 6644, 16496, 2760, 2760, 2760, 2760, 2760, 2760, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509,16812,16888,16501,16888, 4527,16535, 6645, 4509, 4509, 4509, 4509, 4509, 4510,16322, 16322,16322,16322,16322,16322,16322,16322,16322,16326,16326, 16326,16326,16326,16326,16326,16326,16326,12806, 120, 4509, 4509, 4509, 4509, 4509, 4509, 119, 119, 8198, 656, 119, 119, 119, 119, 119, 247, 119, 119,15256, 120, 120, 12806, 120,12806,16747,16586, 8199, 903, 119, 119, 119, 119, 119, 119, 7157,16216,16187,12808, 8200, 665,16777, 247, 120, 120, 120, 120, 120, 8198, 416, 617,16285, 16285,16285,16285,16285,16285, 119, 119, 119,16286,12808, 120,12808, 8419, 8858, 8199,15793,16946,16740,16497, 6644, 120, 8201,16502, 4514, 277, 277, 8200, 4517, 277, 277, 277, 277, 277, 667, 280, 277, 7135, 6527, 6527,11861, 6527,16530, 6645,16532,16779, 917, 277, 277, 277, 277, 277, 277, 8858,16489,14766,14984,14984, 690,14984, 120, 8201,16780,16973, 247,16503, 1111, 120, 120, 120, 416, 120, 120,16506, 416, 277, 277, 277, 669, 119, 119, 16537, 119, 119, 119, 119, 119, 119,10237, 119, 2192, 16326,16326,16326,16326,16326,16327,16328,16328,16328, 2193, 119, 119, 119, 119, 119, 119,16221,15669,17012,10226, 8613, 2194,16561,16746, 208,16222,16222,16222,16222,16222, 16222,16222,16222,16222,14057,16636,16561,16551, 2195, 119, 119, 209,11009,16639,10237,16747, 120,16328,16328,16328, 16328,16328,16328,16328,16328,16328,16516, 220,11019, 4522, 1557, 1557, 1558, 2312, 1557, 1557, 1557, 1557, 1557, 120, 1557, 1557,14776,14776,14776,14776,14776,14776,14776,14776, 14776, 2313, 1557, 1557, 1557, 1557, 1557, 1557, 7135,16522, 16942, 221,16747, 1927,16636,16595, 120,15377,15377,15377, 15377,15377,15377,16187, 1089,16640, 857, 2525,10984,15850, 1557, 1557, 1557,10985,12806, 120, 835, 120, 120,16394, 16394,16394,16394,16394,16394,16394,16394,16394, 5161,16751, 16518, 4524, 1265,15793,16773,16391, 120,16454,16454,16455, 3928, 4545, 4545, 4545, 4545, 4545, 4545, 4545, 4545, 4545, 16593,11019,16935,12808,16747,16731,16529,16594, 4527,14259, 4825,16542, 1266, 1004, 1004,16498, 1265, 1004, 1004, 1004, 1004, 1004,16747, 1004, 3367,16417,16417,16417,16417,16417, 16417,16417,16417,16417, 3368, 1004, 1004, 1004, 1004, 1004, 1004,15846,16779,16756, 4826,16599, 4552,16417,16417,16417, 16417,16417,16418,16419,16419,16419,16753,10237,16483,16780, 16345, 120,16483, 3370, 1004, 1004, 1004, 1004,16642, 1265, 1004, 1004, 1004, 1004, 1004, 120, 1004, 3367,16419,16419, 16419,16419,16419,16419,16419,16419,16419, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 4553,16487,16765,15318,16603, 4552, 14947,14947,14947,14947,14947,14947,14947,14947,14947, 120, 120, 120, 416,16643,11005,16826, 3370, 1004, 1004, 1004, 1004,16646, 1265, 1004, 1004, 1004, 1004, 1004, 9580, 1004, 1004,14953,14953,14953,14953,14953,14953,14953,14953,14953, 1004, 1004, 1004, 1004, 1004, 1004, 1004,11019,16790,17056, 16875,16643, 4555,14962,14962,14962,14962,14962,14962,14962, 14962,14962,16647,16648,16747, 120,10289, 247, 416, 1004, 1004, 1004, 1004, 1004,16652, 1265, 1004, 1004, 1004, 1004, 1004,16869, 1004, 1004,14971,14971,14971,14971,14971,14971, 14971,14971,14971, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 4556,16751, 8910,16936,16653, 4555,16439,16439,16439,16439, 16439,16439,16439,16439,16439,16657,16846, 617,16747,16648, 16747,16847, 1004, 1004, 1004, 1004, 1004,16651, 1265, 1004, 1004, 1004, 1004, 1004,16872, 1004, 1004,16439,16439,16439, 16439,16439,16440,16441,16441,16441, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 857,16753,10974, 8590,16756, 4558,16441, 16441,16441,16441,16441,16441,16441,16441,16441, 6644, 5161, 4559,16561,16539,16563, 7593, 1004, 1004, 1004,16453,16453, 16453,16453,16453,16453,10226, 8592,16653,16536, 120, 8590, 7593, 6645,11774,10974,16656,16747, 1265, 4559, 1265, 4527, 16462, 6644,16462, 6950, 7940,16674,16538, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561,16678,16730, 8592, 6950, 5161,16759,10226, 1086, 6645, 2842, 1266,16679, 1266,16456, 16456,16456,16456,16456,16456,16456,16456,16456,16683, 8590, 120, 1087,16463,16684,16540, 120, 7293, 4562, 3952,15837, 4527, 6644, 1575, 833,16688,16811,15176, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 2842,15260, 8592,15845, 1265,16747,16747,15177, 6645,15256,17369, 120, 1266,14464, 14464,14464,14464,14464,14464,14464,14464,14464,16493, 8590, 6954,15877,16601,16528,15787,16747,16758,15176,16965,15846, 1266, 6644,16541,16494, 1575, 1004, 1004, 8590, 1265, 1004, 1004, 1004, 1004, 1004,15177, 1004, 3367,16757, 8592, 6644, 6955,16759,14704,16699, 6645, 8586, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7294,16704,15787, 8592, 1265, 4566,14705, 120, 8590, 6645,16705,16658,16543,16132,16132,16132,16132, 16132,16132,16661, 6644,16709, 3370, 1004, 1004, 1004, 1004, 14706, 1265, 1004, 1004, 1004, 1004, 1004, 1266, 1004, 3367, 8592,15913,15913,15913,16994,17369, 6645,16720, 8587, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 4567,16442,16724,17374, 1265, 4566,16205,16205,16205,16205,16205,16205,16446,16466, 16466,16466,16466,16466,16466,16466,16466,16466, 3370, 1004, 1004, 1004, 1004, 1023, 1265, 1004, 1004, 1004, 1004, 1004, 1266, 1004, 3367,16674, 120, 6527, 6527, 120, 7135, 8613, 1265,16677, 3368, 1004, 1004, 1004, 1004, 1004, 1004,16466, 16466,16466,16466,16466, 4571,16992,15367, 8590,11019,11825, 6527, 247,16781,14669,16280, 120, 120,11021, 120, 6644, 1266, 3370, 1004, 1004, 1004, 1004, 8590, 1265, 1004, 1004, 1004, 1004, 1004,11021, 1004, 3367, 8592, 120, 6644, 6527, 120, 8852, 6645, 416, 8590, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 4572, 1023,16679, 8592, 6644, 4571,16684,17048, 8590, 6645,16682, 6527, 6527,11845,16687, 7941,16517, 120, 11846, 8853, 6644, 8592, 3370, 1004, 1004, 1004, 1004, 6645, 1265, 1004, 1004, 1004, 1004, 1004, 8852, 1004, 3367, 8592, 9244,16977,17374, 120, 120, 6645, 416, 9498, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 8854, 120,16689,16878,16699, 4575, 9580, 9950, 6527,12500,16692, 8853,16702,14594,14594, 14594,14594,14594,14594,14594,14594,14594, 3370, 1004, 1004, 1004, 1004,12501, 1265, 1004, 1004, 1004, 1004, 1004, 1023, 1004, 3367, 9498, 120,12502,16519, 7135, 6527,16974,10289, 8854, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 4576, 2525, 10984,15669,15318, 4575,15367,10985, 6527, 2048, 6527, 247, 17276, 726,10951,16545, 120,17374, 120, 120,12503, 416, 3370, 1004, 1004, 1004, 1004, 2049, 1265, 1004, 1004, 1004, 1004, 1004,11783, 1004, 3367,16705, 120, 2050, 120, 416, 14704, 416,10952,16708, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 1265, 6527,12500, 8198,16978, 4578,14705,10188,10953, 16464,16464,16464,16464,16464,16464,16527,16747, 857,16465, 4579,12501, 8199, 3370, 1004, 1004,16524, 247,14706, 726, 6919, 1266, 120,12502, 8200,16602,16512,16512,16512,16512, 16512,16512,11019,16783, 120,16513,16760, 4579, 1004, 1004, 12283, 1265, 1004, 1004, 1004, 1004, 1004, 1023, 1004, 1004, 6920,16520, 6527, 6527,17362, 7135,16521,12503, 8201, 1004, 1004, 1004, 1004, 1004, 1004, 1004,12437, 6921,16710, 1023, 16720, 4581,16993,15367,17369,16525,16713,16557,16723,16442, 247, 120, 120, 120, 6922, 120, 416,16445, 1004, 1004, 1004, 1004, 1004,16792, 1265, 1004, 1004, 1004, 1004, 1004, 16747, 1004, 1004, 4582, 4582, 4582, 4582, 4582, 4582, 4582, 4582, 4582, 1004, 1004, 1004, 1004, 1004, 1004, 1004,16747, 16747,17319,15260,16221, 4581, 726,10951,16752, 120,16761, 15256,16754,16222,16222,16222,16222,16222,16222,16222,16222, 16222, 1004, 1004, 4562, 1004, 1004,15256, 1265, 1004, 1004, 1004, 1004, 1004, 120, 1004, 3367,10952, 6527,16285,16285, 16285,16285,16285,16285,16523, 3368, 1004, 1004, 1004, 1004, 1004, 1004,16964,10953,17369,15260,16779, 4585,16558, 120, 6527, 6527, 247,15256,16733,16458,16737, 120, 120,15876, 10954,16591,15276,16780, 3370, 1004, 1004, 1004, 1004,15256, 1265, 1004, 1004, 1004, 1004, 1004, 247, 1004, 3367,11825, 120, 120, 6527, 416, 120,16275,16459,11021, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 4586,16873,17050,15260,16874, 4585, 120,16483,11021,16747,11825,15256, 247, 6527,16559, 16764,16591, 120,11021, 6644, 120,17369, 3370, 1004, 1004, 1004, 1004,15256, 1265, 1004, 1004, 1004, 1004, 1004,11021, 1004, 3367,15260, 247,16755, 5161,16734, 6645, 120,16808, 15256, 3368, 1004, 1004, 1004, 1004, 1004, 1004,16560,17369, 15260,15260,16769, 4588,16767,11825,15256,15874,15256,15256, 1265, 120,15875,11021,16579, 4527, 120, 4589,17417,15260, 3370, 1004, 1004,16783,15256,15256,15874,15256,16783,11021, 15260,15875, 120,16580,16787, 1089,16786,17270,15256,16988, 1266, 5845,16581,15256, 4589, 119, 119, 835, 3972, 119, 119, 119, 119, 119,15256, 119, 119,16458,16737,14465, 13962, 120,16187,16793,16187,11825, 119, 119, 119, 119, 119, 119, 119,11021,16825,17018,16807,16187, 3387,15256, 16592,16563,10237,16739, 4592,16561,16804,16859,16459,11021, 13175,16770,15793,10188,15793, 119, 119, 119, 119, 119, 16775, 119, 119, 119, 119, 119, 119,15793, 119, 119, 16611,16611,16611,16611,16611,16611,16611,16611,16611, 903, 119, 119, 119, 119, 119, 119,16851,16582,17343,16583, 16774, 662,16776,16636,15256,15256,16860,16852,16584,15970, 15970,15970,15256,16535,16640,16585,16996,17426, 119, 119, 119,15256,14698,14698,14698,14698,14698,14698,14698,14698, 14698,16611,16611,16611,16611,16611,16612,16613,16613,16613, 4593, 277, 277, 120, 287, 277, 277, 277, 277, 277, 667, 280, 277, 688, 688, 688, 688, 688, 688, 688, 688, 688, 917, 277, 277, 277, 277, 277, 277, 687, 687, 687, 687, 687, 690, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 4594, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,11022, 2841, 3979,16613,16613,16613,16613,16613,16613,16613,16613, 16613, 3980, 2841, 2841, 2841, 2841, 2841, 2841,16791,16791, 16791,16791,16791, 4598,15330,15330,15330,15330,15330,15330, 15330,15330,15330, 120,17043,17031,16561, 220,17335, 1023, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,17021, 2841, 2841,15336,15336,15336,15336,15336, 15336,15336,15336,15336, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 221,16561, 208,16955,16643, 4600,15345,15345,15345, 15345,15345,15345,15345,15345,15345,16647,16846, 4601, 120, 209,16563,16847, 2852, 2841, 2841,15354,15354,15354,15354, 15354,15354,15354,15354,15354,16633,16633,16633,16633,16633, 16633,16633,16633,16633,16809, 4601, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,17113, 2841, 3979,16633,16633, 16633,16633,16633,16634,16635,16635,16635, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 4602,17344,17192,15256,16810, 4598, 16635,16635,16635,16635,16635,16635,16635,16635,16635, 2525, 10984,15256,17117, 120,17113,10985, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 120, 2841, 3979,15565,15565,15565,15565,15565,15565,15565,15565,15565, 3980, 2841, 2841, 2841, 2841, 2841, 2841,17269,17280, 8910, 17113,11022, 4608,15622,15622,15622,15622,15622,15622,15622, 15622,15622, 120,16512,16512,16512,16512,16512,16512, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 1265, 2841, 3979, 1023, 208,16821,17117,16844,17466, 16742,16742,16743, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 4609,17044, 209,17471, 5161, 4608,11846,16816,10974,15845, 16794, 1266,16845,16735,16735,16735,16735,16735,16735,16735, 16735,16735, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 4527, 2841, 3979,10226,15669,15846, 16563,14683,16888,16893,17111,16818, 3980, 2841, 2841, 2841, 2841, 2841, 2841,16892,16897,15256,15874, 5161, 4612, 120, 7135,15875, 8852,15256,16861,11019,16736,16736,16736,16736, 16736,16736,16736,16736,16736, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 4527, 2841, 3979, 120, 220, 8853, 120,17330,17340, 726, 6919,16898, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 4613,16888, 1023,16902, 5161, 4612,17426, 9580, 7593, 2842,16800,16879,16892,16736, 16736,16736,16736,16736,16795, 221, 8854, 6920, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 4527, 2841, 3979, 6950, 6921,17052,15176,17305, 2048, 7135, 7135,10289, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 1265, 7135,16803, 857,15177, 4615, 4616, 2049,16771,15076,15076, 15076,15076,15076,15076,15076,15076,15076,16817, 2050, 120, 120, 3982, 2841, 2841,15787, 247,16636,16636,10188, 1266, 120, 4616, 119, 119,16639, 119, 119, 119, 119, 119, 119,16805, 119, 119, 120, 2679, 2679, 2679, 2679, 2679, 2679, 2679, 2679, 119, 119, 119, 119, 119, 119, 119, 17140,16643,16888,16893, 1265, 2680,16563, 4824,16796,16646, 16891,16896,10974,16464,16464,16464,16464,16464,16464,17409, 16815, 119, 119, 119, 119, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 1266, 2841, 2841, 4825, 1086, 2842, 16772,10226, 726,10951, 7135,16898, 2841, 2841, 2841, 2841, 2841, 2841, 2841,16901,16563,16888, 1087,17351, 4618,16903, 119,16801, 6954, 5525, 7135,11019,16892,16906, 833, 247, 15176, 4826,17102,10952, 120, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,15177, 2841, 3979, 10953,16871, 6955, 120, 120,12500,11846,16806,17342, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 7135,10954,15787, 857, 857, 4620, 4621,12501,17317,16703,16703,16703,16703,16703, 16703,16703,16703,16703, 208,12502,16820, 7593, 3982, 2841, 2841,16699, 857,16813,16643,16888, 120, 7135, 4621, 119, 119, 209, 119, 119, 119, 119, 119, 119,16979, 119, 2192,16563,12500, 8198,16798,14259, 6950,16893,16923,12503, 2193, 119, 119, 119, 119, 119, 119, 120, 857,16927, 12501, 8199, 4352,16791,16791,16791,16791,16791,16791,16791, 16791,16791,12502, 8200,16888,16797, 857, 726,10951, 2195, 119, 119,16891,16888, 1023, 1023, 7135, 4624, 119, 119, 17458, 119, 119, 119, 119, 119, 119,16888, 119, 2192, 16561,16888,16799,11774,10974,16891,12503, 8201,10952, 2193, 119, 119, 119, 119, 119, 119, 120,16814, 1265, 416, 15845, 4352,16747,17029, 857,10953,16923,16744,16744,16744, 16744,16744,16744,10226,16926,16802,16745, 120, 2195, 119, 119,16563,10954,11754,16923, 7135,16923,14704, 1266,16923, 15846,16760,16926,16876, 4625, 119, 119,16927, 119, 119, 119, 119, 119, 119,14705, 119, 119,13058,16563, 7135, 247, 7135,17468, 6527,16877, 120, 119, 119, 119, 119, 119, 119, 119,14704,15847,14706,16561,17345, 1816,16819, 15199,15199,15199,15199,15199,15199,15199,15199,15199, 120, 14705, 120, 416, 120, 416, 119, 119, 119,16842,17026, 4626, 1023,15913,15913,15913,15913,15913,15913,15913,15913, 15913,14706, 857,17341, 1817, 857,17671, 119, 7135, 1818, 119, 119, 7135, 119, 119, 119, 119, 119, 119, 7135, 119, 119, 7135, 7135, 7135, 120,16923,16928,16928,16888, 16888, 119, 119, 119, 119, 119, 119, 119, 120,16932, 12065, 416, 120, 1816, 247, 416, 119, 247, 247, 120, 16923,16928, 120, 120, 120,16888,16888, 416,16926,16931, 119, 119, 119,17101,16891,16720,16563,16888, 1819, 8910, 17346,16888, 4627, 119, 119,16891, 656, 119, 119, 119, 119, 119,16892, 119, 119,15970,15970,15970,15970,15970, 15970,15970,15970,15970, 903, 119, 119, 119, 119, 119, 119,16888,16888,17363,16934, 6527, 665, 6527, 8910,16888, 16891,16913,16913,16913,16913,16913,16913,16913,16913,16913, 16892,16720,16720, 119, 119, 119,16937,16916, 5161,16723, 16934,16938, 247,16724, 120, 120, 120, 120, 416,16458, 16737, 4628, 119, 119,16943, 656, 119, 119, 119, 119, 119, 119, 119, 119,16747, 120, 120,17392, 4527,16945, 16747, 4527,16752, 903, 119, 119, 119, 119, 119, 119, 16459,16754,16747,16941, 8613, 665,16747,16747, 120,16933, 16933,16933,16933,16933,16933,16933,16933,16933,17274,15669, 15669,17393, 119, 119, 119,16928,13962,16966,16960,16747, 16963,16758,16755,11635, 120,16779,16761,14704,16970, 4629, 119, 119,16953, 119, 119, 119, 119, 119, 119,14259, 119, 119,16780, 857,14705,16187,13175,16187,15793,16956, 120, 903, 119, 119, 119, 119, 119, 119,10974,16966, 5161,16995, 6644, 662, 220,14706, 2842,16969,16966,16939, 16939,16939,16939,16939,16939,15793, 119,15793,16940,16962, 119, 119, 119, 1265,17000, 6645,17002,10226,16984, 4824, 4527,15837,16944,16944,16944,16944,16944,15176, 221, 4630, 119, 119,16961, 119, 119, 119, 119, 119, 119,16126, 119, 2192,16959, 1266,15177, 119,15846,16561, 120, 4825, 1089, 2193, 119, 119, 119, 119, 119, 119, 4636,16851, 17128,17045, 835, 3194, 1265,15787,15837,17433,17005,11022, 17017,16561,16957,16744,16744,16744,16744,16744,16744,16561, 2195, 119, 119, 4826, 4636, 119, 119, 7593, 119, 119, 119, 119, 119, 119, 1266, 119, 2192,16991, 120,17028, 16997,16563, 4637,16561,17024,17056, 2193, 119, 119, 119, 119, 119, 119,17059,16568,15837, 6950, 1265, 3194, 726, 16985,17154, 8910,17032, 7593, 120,16944,16944,16944,16944, 16944,16944,16944,16944,16944, 2195, 119, 119, 119, 119, 8852, 119, 119, 119, 119, 119, 119, 1266, 249, 119, 10952,17047,17452, 6950,17049, 2842,16563,16561,17056, 119, 119, 119, 119, 119, 119, 119, 1265,10953,16568,17060, 8853, 266, 857,16571,17061,15667,15667,15667,15667,15667, 15667,15667,15667,15667,10954,17065,15176,10974, 119, 119, 119, 257,16958,17001,16561,16815, 1266,17056,16998,16980, 10188,17454,17027,15177, 8854,12500, 268, 778, 778,12500, 778, 778, 778, 778, 778, 778,10226, 778, 2897,15845, 17019, 6954, 7135,12501,15787,10974,16845,12501, 2898, 778, 778, 778, 778, 778, 778,12502,16999,17061,16561,12502, 4657, 726,16986,16981, 8198,17064,17020,16535,16561,15846, 16563, 6955, 120,17155,10226, 857,16853, 2900, 778, 778, 778, 778, 8199, 778, 778, 778, 778, 778, 778,12503, 778, 2897,10952,16982, 8200,17023, 857, 2048, 726, 6919, 17061, 2898, 778, 778, 778, 778, 778, 778, 4658,10953, 17003,17004,17066, 4657,16561, 2049,17348, 1086,11022,16983, 17069,17066,17163,17030,17019, 120,10954, 2050, 8201, 6920, 2900, 778, 778, 778, 778, 1087, 778, 778, 778, 778, 778, 778,16561, 778, 4661,16841, 6921, 833,16989,17283, 17020,17066, 6955,15260, 2898, 778, 778, 778, 778, 778, 778,17014,17070, 6922, 7568,17071, 4662,17071,17025,16987, 120,17015,16561,17074,17013,11842,17046,15256,17075,15256, 16844,17013,16990, 2900, 778, 778, 778, 778,17022, 778, 778, 778, 778, 778, 778,15256, 778, 4661,15260,17296, 17033, 7135,16563,17859,16845,17056,15256, 2898, 778, 778, 778, 778, 778, 778, 4663, 1023,17060,15260, 119, 4662, 17076,17086,15256, 7135,15260,15256, 247,15260,17079,17090, 15868, 120,15256, 857,17337,17034, 2900, 778, 778, 778, 778,15256, 778, 778, 778, 778, 778, 778,15256, 778, 4661,15256, 6644, 120,17419,17119, 416, 119,17056,15260, 2898, 778, 778, 778, 778, 778, 778,15256,14704,17107, 15260,17035, 4666,17091,17056, 6645,17037,17051,15256,17103, 15260,17094,17059,15256, 6644,14705,17038, 119,15256, 2900, 778, 778, 778, 778,15256, 778, 778, 778, 778, 778, 778,17132, 778, 4661,15256,16779,14706, 6645,17129,17135, 16187,16187, 120, 2898, 778, 778, 778, 778, 778, 778, 4667, 119,16780,15260,17132, 4666, 119,16458,16737,12808, 120,15256, 857, 5161, 1023,17136,17036,17104,17056,17104, 15793,15793, 2900, 778, 778, 778, 778,15256, 778, 778, 778, 778, 778, 778,17108, 778, 4661,17132,16459,17139, 119, 119,17127, 4527,17106, 119, 2898, 778, 778, 778, 778, 778, 778,17125,10188,16563, 8910,16561, 4669,17105, 4670,16975,16975,16975,16975,16975,16975, 119, 119, 5845, 16976,17930,17158,10974, 857, 4671, 4672, 4672,17137, 119, 119,17202, 1023,17306, 119,13962, 4673, 778, 778,17210, 778, 778, 778, 778, 778, 778,17121, 778, 2897,17210, 17214,13987,10226, 120,17459, 857, 119, 119, 2898, 778, 778, 778, 778, 778, 778,13175,17182, 119, 119,16187, 4679, 119, 5161,17122,17130,17930,17304,17137,17013,17131, 17215,16939,16939,16939,16939,16939,16939, 2900, 778, 778, 778, 778, 416, 778, 778, 778, 778, 778, 778,15793, 778, 2897, 4527, 7593, 2842,17126, 119, 120, 8852,17156, 119, 2898, 778, 778, 778, 778, 778, 778, 4680,17053, 119,15260,17138, 4679, 120,16496,17123,17209,15874,15256, 17137,17210, 6950,15875,17388,15176, 857, 247, 8853,17213, 2900, 778, 778, 778, 778,15256, 778, 778, 778, 778, 778, 778,15177, 778, 2897,16563,18052,17177,16563, 119, 17681,17220, 1089,17141, 2898, 778, 778, 778, 778, 778, 778, 119, 8854,15787, 835, 5161, 4684,16975,16975,16975, 16975,16975,16975,15845,16125,16125,16125,16125,16125,16125, 16125,16125,16125, 2900, 778, 778, 778, 778, 1023, 778, 778, 778, 778, 778, 778, 4527, 778, 2897,17150,16570, 119,15256,17350,15846,16572,17448,17190, 2898, 778, 778, 778, 778, 778, 778, 4685,15256,17215, 120, 120, 4684, 726,17146,17147,12500,17218,10974,17162,14258,14258,14258, 14258,14258,14258,14258,14258,14258, 2900, 778, 778, 778, 778,17142, 778, 778, 778, 778, 778, 778,17220, 778, 2897, 6920, 2048,12502,10226,17364,17223,17431,17160, 7593, 2898, 778, 778, 778, 778, 778, 778,14259, 6921, 119, 2049,15845, 4689,16204,16204,16204,16204,16204,16204,16204, 16204,16204, 2050,18059, 119, 6922,17159,12503, 6950, 2900, 778, 778, 778, 778, 1023, 778, 778, 778, 778, 778, 778,15846, 778, 2897,17225, 857,16561,17161, 119, 8198, 1086,17471,17228, 2898, 778, 778, 778, 778, 778, 778, 4690, 119,17148, 119,15256, 4689,17193, 8199, 1087,12500, 17225,17151,16561, 119,17267,15847,17174, 119,15256, 8200, 833,17153, 2900, 778, 778, 778, 778,12501, 778, 778, 778, 778, 778, 778,17215, 778, 2897,17275,16570,12502, 119,16561,10974,16572,17268,17219, 2898, 778, 778, 778, 778, 778, 778,17144,17149,17157, 119, 120, 4693, 726, 10951, 726,10951,17152,16570,17164,17143, 120,16561,16572, 17178,10226, 120,12503,13252, 2900, 778, 778, 778, 778, 17220, 778, 778, 778, 778, 778, 778,17145, 778, 2897, 10952,17224,10952,16570,16563,17389,17933,17293,16572, 2898, 778, 778, 778, 778, 778, 778, 4694,10953, 119,10953, 16849, 4693,17201,16561,16561,16561,11752,11821,11752,17230, 16570,16561,17225, 120,10954,17183,10954,17233, 2900, 778, 778, 778, 778,17229, 778, 778, 778, 778, 778, 778, 4695, 778, 2897,16561,18275,16458,17273, 119,17295,17456, 11019,11030, 2898, 778, 778, 778, 778, 778, 778, 4695, 119,17175,17176,17179, 4697,16570,16570,16570,16561,17204, 16572,16572,16572,16570,16848, 119,16459, 857,16572,17181, 17488, 2900, 778, 778, 4695, 4695, 778, 778,17205, 778, 778, 778, 778, 778, 778,16570, 778, 778,11845, 119, 16572, 120,17297,11846,17180,11019,11030, 778, 778, 778, 778, 778, 778, 778, 119,15256,16568,17203,17235, 4699, 16570,16571,17194,16561,17230,16572,17238, 5161,17290,15256, 17313,14704,17206,17245,18308,17234, 778, 778, 778, 778, 778,17248, 778, 778, 778, 778, 778, 778,14705, 778, 778,17251, 120, 120,11022, 120, 9580, 4527,15793,17254, 778, 778, 778, 778, 778, 778, 778, 4700,17184,14706, 17185,17245, 4699,17251,15837,16570,16126,16187,16561,17186, 16572,17318,17250,17320,17255,17207,17187, 120,17479, 778, 778, 778, 778, 778,10289, 778, 778, 778, 778, 778, 778,17256, 778, 2897,15872,17465, 2842,15793, 857,17259, 15256, 5161,17191, 2898, 778, 778, 778, 778, 778, 778, 17271,17271,17272,16844,15256, 4704,17113,17467,15873,17321, 16570,17326,17297,17210,17279,16572, 857,17286,17188,17292, 17300, 4527, 2900, 778, 778, 778, 778,16845, 778, 778, 778, 778, 778, 778,17287, 778, 2897,16779, 857,16535, 6950,17369, 120,17294,16561,17297, 2898, 778, 778, 778, 778, 778, 778, 4705,16780,17288,17301, 1265, 4704,16563, 15845, 8852,13962,17369, 2842,17365,16463,16463,16463,16463, 16463,16463,16463,16463,16463, 2900, 778, 778, 778, 778, 17284, 778, 778, 778, 778, 778, 778, 1266, 778, 2897, 15846, 8853,13175,16839,18312,15176,17289,17308,17339, 2898, 778, 778, 778, 778, 778, 778,16563,17540,16839,17770, 1265, 4708,15177,17323,10974,12501,17349, 7593,17328,17109, 17109,17109,17109,17109,17109,17307,17322,12502, 2900, 778, 778, 778, 778,15787, 778, 778, 778, 778, 778, 778, 1266, 778, 2897,10226, 2048,17315, 6950,16187,17316,17309, 8198, 857, 2898, 778, 778, 778, 778, 778, 778, 4709, 17210,12503, 2049, 1087, 4708,17210, 1089,12501, 8199,10974, 17267,17214, 857,17213, 2050, 833,17369,15793, 835,12502, 8200, 2900, 778, 778, 778, 778,17291, 778, 778, 778, 778, 778, 778, 4710, 778, 2897,17369,17374,10226,15669, 17268, 857,17484,17314,17372, 2898, 778, 778, 778, 778, 778, 778, 4710,12503, 8201, 8860,16563, 4712,17369,10974, 17310, 726,10951, 726, 6919,17312,17379,17325,15845,17373, 857, 120,17324,17369, 2900, 778, 778, 4710, 4710, 119, 119,17372, 119, 119, 119, 119, 119, 119,10226, 2917, 2192, 6644,10952,17933, 6920,17369,17391, 9580,15846,17347, 2193, 119, 119, 119, 119, 119, 119,17327,16563,10953, 17369, 6921, 4716,16563, 6645, 6954,17329,17369,17267,17374, 7566,17373,17367,16845,17311,17372,10954,17377, 6922, 2195, 119, 119, 3193, 119, 119,10289, 119, 119, 119, 119, 119, 119,16593, 2917, 2192, 6955,17374,17400,17268,17369, 16563,17184,18176,17185, 2193, 119, 119, 119, 119, 119, 119, 4717,17338,16846,14704,17369, 4716,17366,16847,17187, 17369,17352,17374,17385,17386,17369,17373,13175,17374, 6957, 17377,14705,11019, 2195, 119, 119, 3193, 119, 119,17378, 119, 119, 119, 119, 119, 119,17374, 2917, 119,17385, 11845,17267,14706,17405,18313,11846,17457,17378, 119, 119, 119, 119, 119, 119, 119, 4719,17374,17379,17379,17369, 4073,17369,17369,17369,17377,17382,17387,17372,17369,17383, 17372,17268,17373,15793,17373,17410,17372, 119, 119, 119, 119, 119, 119,17413, 119, 119, 119, 119, 119, 119, 3476, 2917, 119, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 119, 119, 119, 119, 119, 119, 119, 3477, 3477, 3477, 3477, 3477, 3478, 3477, 3477, 4720, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3504, 119, 119, 119, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 119, 119,17536, 119, 119, 119, 119, 119, 119, 120, 2917, 2192,16187, 120,16187, 1111,17407,16563,14704, 5161, 16561, 2193, 119, 119, 119, 119, 119, 119,17390,17390, 17390,17390,17390, 4723,17399,14705,17410,17406,17543,16561, 17430, 2842,15793, 120,15793,17404,16779,17414, 120, 4527, 3482, 119, 119, 4724, 119, 119,14706, 119, 119, 119, 119, 119, 119,16780, 2917, 2192, 857, 120,16496, 2842, 120,10188,17286,17408,10974, 2193, 119, 119, 119, 119, 119, 119, 4725,16841, 120, 1089,16561, 4723,17544,17287, 17432,17410,17418,16535, 2842,17401,17420, 835,17436,17434, 17286, 120, 857,10226, 3482, 119, 119, 4724, 119, 119, 17288, 119, 119, 119, 119, 119, 119,17287, 119, 2192, 120,17429,17441, 857,18017,15176,17471,17471,17403, 2193, 119, 119, 119, 119, 119, 119,16563,17475,17288,17640, 5161, 4726,15177,15845, 726, 6919,17435, 7593,17471,17390, 17390,17390,17390,17390,17390,17390,17390,17390, 3482, 119, 119, 119, 119,15787, 119, 119, 119, 119, 119, 119, 4527, 119, 2192,15846,17439, 6920, 6950,18314,17423,17453, 16563,10974, 2193, 119, 119, 119, 119, 119, 119, 4728, 15837,16561, 6921,17519, 4726,17440, 8199,16561, 6954,17089, 17089,17089,17089,17089,17089,17089,17089,17089, 8200, 6922, 10226, 3482, 119, 119, 119,17086, 4729, 4730, 4731, 4732, 4732, 4732, 4732, 4732, 4732,15846,16568, 8852, 6955,17471, 17471,17455,17483, 120, 1265,17438, 416,17474,17474,14259, 3477, 120, 8201,17109,17109,17109,17109,17109,17109,17335, 12808, 9580,17110, 2842, 119, 119, 119, 8853, 119, 119, 119, 119, 119, 119, 1266, 4081, 119, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 3484, 119, 119, 119, 119, 119, 119, 119,14465,15176,17470,18315,17471, 4073,10289, 10974, 8854, 9500,17124, 8226, 7593,17437,17421,17475,16846, 17539,15177, 120,16561,16847, 119, 119, 119, 119, 4733, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4092,10226, 16563, 120,15787,17734, 6950, 4734, 4734, 4734, 4734, 4734, 4735,17249,17249,17249,17249,17249,17249,17249,17249,17249, 17478,17499, 857,16561,16835,17482,18312,17245,17449,17502, 17537, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4094, 726,10951,17495, 120,14259, 120, 4734, 4734, 4734, 4734, 4734, 4735,17384, 17384,17384,17384,17384,17384,17384,17384,17384,17506,12808, 16535,17604,18317, 120, 120,17379, 120, 1023,10952, 4734, 4734, 4734, 4734, 4734, 4734, 4736, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4738,10953, 2048,17497,17499,14259, 15260, 4737, 4737, 4737, 4737, 4737, 4739,17424,15256,17503, 17498,17504,10954,10188, 2049,17461,17505,17512, 120,16561, 857, 120,17426, 120,15256,16561, 2050, 4737, 4737, 4737, 4737, 4737, 4737, 4742, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4744, 247,17267,17499, 120,17507, 120, 4743, 4743, 4743, 4743, 4743, 4745,14704, 120,17518,17556,16535, 17600,17427, 617,17469,13962,12808,17559,17516,17520,18318, 17622, 3504,14705,12808,17268, 4743, 4743, 4743, 4743, 4743, 4743, 4752, 4753, 4753, 4753, 4753, 4753, 4753, 4753, 4753, 4105,17489,17504,14706,13175, 120,17504, 4753, 4753, 4753, 4753, 4753, 4754, 247, 120,17556,17584, 416, 120,17267, 2842,14567,17476,17527,15260, 120,17560,17588,16833,16563, 120, 2842,15256, 4753, 4753, 4753, 4753, 4753, 4753, 4755, 4756, 4756, 4756, 4756, 4756, 4756, 4756, 4756,15256,17268, 17517,17286,17477, 120,17601, 4756, 4756, 4756, 4756, 4756, 4757,16779,17286,16561,16563,17490,16561,17496,17287,16561, 17538,16187,16844,16843,17541,18319,17402, 120,16780,17287, 17450, 4756, 4756, 4756, 4756, 4756, 4758, 119, 119,17288, 119, 119, 119, 119, 119, 119,16845, 2917, 2192, 1086, 17288,15793,17552, 1086,17493,16187,18320,16844, 2193, 119, 119, 119, 119, 119, 119,17451,16561, 1087,16561,17426, 4764, 1087, 120,17545,16561, 120,15260,17551,17862, 833, 10188,16845,17356, 833,15256,15793,17460, 3482, 119, 119, 4765, 119, 119, 1356, 119, 119, 119, 119, 119, 119, 15256, 2917, 2192,17428,17514,10974,17553, 8910,17564,12500, 17508,16496, 2193, 119, 119, 119, 119, 119, 119, 4766, 17592,17426,17914,17649, 4764, 1089,17494,12501, 7593,12500, 15260,15845,17460,17013,10226,15669,17422, 835,15256,12502, 8853, 3482, 119, 119, 4765, 119, 119,12501, 119, 119, 119, 119, 119, 119,15256, 119, 2192, 6950,17515,12502, 17521,15846, 857, 120,17525,13250, 2193, 119, 119, 119, 119, 119, 119,12503, 8854,17522,15260, 9580, 4767,17682, 726,10951,15669,10974,15256,13250,16844,17556,17565,17563, 17569,15837,16561,12503,17542, 3482, 119, 119, 119, 119, 15256, 119, 119, 119, 119, 119, 119,17573, 119, 2192, 16845,10952,10226, 120,10974,10289, 2842,17555, 120, 2193, 119, 119, 119, 119, 119, 119, 4769,17523,10953,17993, 17267, 4767,17584,17267,17930,12500,17511, 120,17582,17935, 17587,17580, 857,10226,17935,10954,17524,17286, 3482, 119, 119, 119, 119,12501, 119, 119, 119, 119, 119, 119, 17268, 2917, 2192,17268,17287,12502,17583,17584,16187,17562, 2048, 120, 2193, 119, 119, 119, 119, 119, 119,17491, 120, 120,17556,17426, 4772,17288,17596,13962, 2049, 8198, 17510, 120,10974,17560,15669,17561, 120,17509,15793,12503, 2050, 3482, 119, 119, 4773, 119, 119, 8199, 119, 119, 119, 119, 119, 119,17591, 2917, 2192,13175,17597, 8200, 2842,10226,17602,17554,15845,17635, 2193, 119, 119, 119, 119, 119, 119, 4774,17513,14704, 2049,17579, 4772,15837, 120,16187,15837, 120,16561, 8858, 120,17603, 2050,17574, 16561,17286,14705, 8201,15846, 3482, 119, 119, 4773, 119, 119,17606, 119, 119, 119, 119, 119, 119,17287, 119, 2192,15793,17576,14706,17620,17672,17779, 120, 1089,17578, 2193, 119, 119, 119, 119, 119, 119,17611,15847,17288, 835, 5161, 4775,16561,17642,17526, 8852,17593,16561,16561, 17105,17105,17105,17105,17105,17105,17105,17105,17105, 3482, 119, 119, 119, 119, 8198, 119, 119, 119, 119, 119, 119, 4527, 2917, 2192, 857, 1086, 8853, 2842,10974,17644, 17599,16779, 8199, 2193, 119, 119, 119, 119, 119, 119, 17581,16561,16561, 1087, 8200, 4778,17577,16561,16780,17556, 12500,17619, 9498,10974,17633, 833,17645,10226,15176,17607, 8854,17769, 3482, 119, 119, 4779, 119, 119,12501, 119, 119, 119, 119, 119, 119,15177, 2917, 2192, 8201,17768, 12502,15845,10226, 8910, 726,10951, 120, 2193, 119, 119, 119, 119, 119, 119, 4780,17598,15787,17608,16561, 4778, 7593,16561,16561,17621,16561,17335,16561,16561,16561,17594, 17634,15846,16561, 120,12503,10952, 3482, 119, 119, 4779, 119, 119,17664, 119, 119, 119, 119, 119, 119, 6950, 2917, 2192,10953,17668,16779,17661,16535,17662, 2842,17683, 17566, 2193, 119, 119, 119, 119, 119, 119, 5161,17595, 17610,16780,17267, 4782,17639,17637,17644,17480,17480,17480, 17480,17480,17480,17605,17623,17625,17481, 4783, 120,15176, 3482, 119, 119, 4784,15845,16561,17626,17492, 4527, 5161, 18013,16561,17268,17645,17268, 9580,15177,17933,17480,17480, 17480,17480,17480,17480, 4783, 119, 119,16126, 119, 119, 119, 119, 119, 119,15846, 119, 2192,15787,17641, 4527, 17636, 120,17609, 2842, 857,17638, 2193, 119, 119, 119, 119, 119, 119,10289,17556,17426,17664,17735, 4785,16561, 13962,17676,17559,17624,17667,17738,17653,16187, 120,17664, 14704, 120, 120, 120,17286, 3482, 119, 119, 119, 119, 17575, 119, 119, 119, 119, 119, 119,14705, 119, 2192, 13175,17287, 2842,17655,17673,16187, 2842,15793,17663, 2193, 119, 119, 119, 119, 119, 119, 4786,18363,14706,17735, 17690, 4775,17288,17658,17723, 8852,16846,18171, 120,17654, 17739,16847,17659,17286,10188,15793, 120,17286, 3482, 119, 119, 119, 119,15845, 119, 119, 119, 119, 119, 119, 17287, 2917, 2192,17680,17287, 8853, 2842,17657, 120, 7593, 12500,17688, 2193, 119, 119, 119, 119, 119, 119,16779, 17797,17288,17732,15846, 4788,17288,17741,17783,12501,17942, 15669,17801,17656,17710,17943,17740,16780,15176, 6950, 8854, 12502, 3482, 119, 119, 4789, 119, 119, 120, 119, 119, 119, 119, 119, 119,15177, 2917, 2192,17660,17660,17660, 17660,17660,17660,17660,17660,17674, 2193, 119, 119, 119, 119, 119, 119, 4790,12503,15787,16535, 120, 4788, 1089, 17684,17797, 726,10951,17752,10974,17687,10974,15845,17800, 857, 835,18429, 120,17949, 3482, 119, 119, 4789, 119, 119, 2048, 119, 119, 119, 119, 119, 119,10974, 2917, 2192, 1086,17679,10952,10226,17735,10226,17686,15846, 2049, 2193, 119, 119, 119, 119, 119, 119, 8699,17713, 1087, 10953, 2050, 4792,17749,17644, 120, 120,10226,17426,17775, 11019, 833,17685,17689,17807, 2493, 4793,10954,11754, 3482, 119, 119, 4794,17675,17712,17677,17717, 120,17268,17776, 17759,17645,17678,16561,16561,16561,16561,16561,16561,16561, 16561,16561,17719, 4793, 119, 119,17267, 119, 119, 119, 119, 119, 119, 9580, 119, 2192,16561,16561,16561,16561, 16561,16561,16561,16561,16561, 2193, 119, 119, 119, 119, 119, 119,15669,13962,17728,16187,17268, 4795,17711, 120, 17699,14704,17714, 120,11848,17949,17716,17733,17698,17644, 17745,10289,17742, 120, 3482, 119, 119, 366,14705,18458, 17793,16535,17386,13175,15793,15793, 4803, 4803, 4803, 4803, 4803, 4803, 4803, 4803, 4803, 3534,17645, 120,17715,14706, 17426,10188, 4803, 4803, 4803, 4803, 4803, 4804,17724,17750, 16561,16561,16561,16561,16561,16561,16561,16561,16561,17751, 17766,16561, 120,17729, 209,17949, 120,17767, 4803, 4803, 4803, 4803, 4803, 4803, 4806, 4806, 4806, 4806, 4806, 4806, 4806, 4806, 4806, 4807,17755,10974, 857,17860,17795,15837, 4806, 4806, 4806, 4806, 4806, 4808,17343,17701,17335,16561, 16561,16561,16561,16561,16561,16561,16561,16561, 7593,17813, 17967,17797,15837, 2842,10226,17747, 4806, 4806, 4806, 4806, 4806, 4806, 4812, 4813, 4814, 4815, 4815, 4815, 4815, 4815, 4815, 120,17757, 1087,17756,17726,17968, 6950, 2959, 2959, 2959, 2959, 2959, 2963,17286, 833,16561,16561,16561,16561, 16561,16561,16561,16561,16561,17843,10974,15845,17753,17949, 209,17287,15846,10226, 2959, 2959, 2959, 2959, 2959, 2959, 2010,17740, 4816, 4816, 4816, 4816, 4816, 4816, 4816, 4816, 4816, 2437,17288, 120, 9580,10226, 416,15846, 2957, 2957, 2957, 2957, 2957, 2958,17625,17701,17644,16561,16561,16561, 16561,16561,16561,16561,16561,16561, 120, 120,17921,17748, 17754,16535, 120,17267, 2957, 2957, 2957, 2957, 2957, 2957, 378,17426,10289,17645,17978,17758,17811, 1089,16561, 4832, 4832, 4832, 4832, 4832, 4832, 4832, 4832, 4832, 3563, 835, 17780,17787,17812,17268,16561, 4832, 4832, 4832, 4832, 4832, 4833,16561,16561,16561,16561,16561,16561,16561,16561,16561, 11019,11019,11019,11019,11019,11019,11019,11019,11019,17386, 17740, 4832, 4832, 4832, 4832, 4832, 4832, 247, 2842,14704, 12500, 120, 120, 120, 221, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 4836, 2048,14705,17644,12501,16779, 17933, 4835, 4835, 4835, 4835, 4835, 4837,17794,17702,17286, 12502,17777,17796, 2049, 2842,17725,16780,14706,17792,17820, 120,17709,18015, 120,17645, 2050,17287, 4835, 4835, 4835, 4835, 4835, 4835, 4841, 4842, 4843, 4844, 4844, 4844, 4844, 4844, 4844,17727,17267,17743,15176,17746,17288,15793, 2984, 2984, 2984, 2984, 2984, 2988,17730, 726,17744,17930,18527, 17833,18069,15177,17848,17731,17731,17731,17731,17731,17731, 17731,17731,17731,17268,15669, 2984, 2984, 2984, 2984, 2984, 2984, 120,17778,15787,13962, 120,17804,10952, 221, 2035, 17644, 4845, 4845, 4845, 4845, 4845, 4845, 4845, 4845, 4845, 2469,11774,10974,17814,10953,17918,17839, 2982, 2982, 2982, 2982, 2982, 2983,16561,13175,16535, 120,17645, 120,17701, 17781,10954,11021,11021,11021,11021,11021,11021,11021,11021, 11021,10226, 120, 2982, 2982, 2982, 2982, 2982, 2982, 235, 235,17819, 4193, 235, 235, 235, 235, 235,17788, 235, 235, 2048,16187, 2842,18119,17933,17267,17810,17836,17897, 235, 235, 235, 235, 235, 235, 235,17850, 120, 2049, 16846,15846, 3596, 1089,18028,16847,10974, 120, 4866,17791, 2842, 2050,15793,17773,17286, 835,17268,17835, 120, 235, 235, 235, 404, 404, 7593, 4201, 404, 404, 404, 404, 404,17287, 404, 404,10974,10226, 2842,17644,16496,17851, 120,17286,14704, 404, 404, 404, 404, 404, 404, 404, 17789,17808,17288, 6950,17852, 3605, 857,17852,17287,14705, 18593, 4873,17855,10226,17645,12500,17817,15176,17856,17816, 17837,17834, 404, 404, 404, 1381, 4877,17730,17867,17288, 14706,17852, 1382,12501,15177,17815,17731,17731,17731,17731, 17731,17731,17731,17731,17731,12502, 1383,13962, 1384,17790, 1385,15845,16187, 1386, 1086,15787,17809, 120, 1387,18277, 17885, 1388,17426, 1389, 2842, 1390, 120, 1391, 1392, 1393, 2525, 2526, 1087, 726,10951,17806, 1380,13175,17818,12503, 13252,15846,15793,17869, 833,17805,16561,16561,16561,16561, 16561,16561,16561,16561,16561,17286,17845,16187, 1356,17849, 15837, 2527, 120,16561,10952, 2048,17902,17911, 2528,17825, 17879,16779,17287,16535,17847,15847,18025,17844,17861, 120, 17898,10953, 2529, 2049, 2530, 7593, 2532,15793,16780, 2533, 11752,17866,17868,17288, 2535, 2050,12501, 2536,10954, 2537, 120, 2538,17933, 2539, 2540, 2541, 2525, 2526,12502, 2842, 13175, 120, 1380,16496, 6950, 4878,17863,16561,16561,16561, 16561,16561,16561,16561,16561,16561,16561,16561,16561,16561, 16561,16561,16561,16561,16561,17827,17890, 2527, 120,10974, 15176,16561,12503,17870, 2528,17335,16561,16561,16561,16561, 16561,16561,16561,16561,16561, 1089,17884,15177, 2529,15669, 2530,16847, 2532,16561,17949, 2533, 120, 835,10226,17846, 2535, 726,10951, 2536,17826, 2537,17904, 2538,15787, 2539, 2540, 2541, 1381,10974,17893,16842,17886,17644,17894, 1382, 16561,16561,16561,16561,16561,16561,16561,16561,16561, 1086, 15845, 120,10952, 1383,17566, 1384,17865, 1385,17871, 2842, 1386,18262,10226, 120,17645, 4879,14704, 1087, 1388,10953, 1389,17875, 1390,17267, 1391, 1392, 1393, 1381,16187, 833, 15846,17875, 120,14705, 1382, 2842,10954,12412, 1111,17828, 17286,17891,17905,17899,16847,17903,17872,15837, 1383, 4896, 1384,17876, 1385,17268,14706, 1386,17892,17287,15793, 857, 1387,17876,17873, 1388, 120, 1389,15176, 1390,17864, 1391, 1392, 1393, 1381,17906,16535,16779,17920,17877,17288, 1382, 120,17909,17911,15177,17906,17878,17911,17901,17906, 247, 7593,17900,16780, 1383, 120, 1384,17912, 1385, 120,17910, 1386, 416,18312,18061,15787, 1387, 4897,17915, 1388, 1086, 1389,15845, 1390,17970, 1391, 1392, 1393, 1381,11610, 6950, 17919,17973,10974,10974, 1382, 2049, 120, 1087, 119, 119, 119, 119, 119, 119, 119, 119, 119, 2050, 1383, 833, 1384,15846, 1385,17922, 1089, 1386, 4898,12500,17913,11611, 1387,10226,10226, 1388,17875, 1389, 835, 1390,17977, 1391, 1392, 1393, 1381,17875,17916,12501,18128,16846,17949, 1382, 17925,17875,16847,17933,16561,16573,17959,12502, 120,17875, 17923,17917,14704, 1383,17876, 1384,17952, 1385,17926,17267, 1386,16835,15669,17876,17924, 1387, 4899, 120, 1388,14705, 1389,17876, 1390,13250, 1391, 1392, 1393, 1381, 2842,17876, 17970,12503,16187, 120, 1382,18017,17954,17957,17878,17268, 14706,17974, 120, 2842,16561,16573,17644,17955, 1383,17426, 1384,18697, 1385,13962,17960, 1386,17927,17982,17964,15176, 1387, 857,15793, 1388,17928, 1389, 120, 1390, 4900, 1391, 1392, 1393, 1713,17645,17286,17965,15177, 1089,16779,17956, 17969,12500,17961,13175, 120,15837,17970,17963, 1086, 835, 17875,17287,16535,17962, 1714,16780, 2048,15787,17979,12501, 14567, 1715,10974,17986, 7593,15845, 1087,17933,17933,17983, 17984,12502,17288,10974, 2049, 1716,17875, 1717, 833, 1718, 17876, 4901, 1719,17990,17985,17992, 2050, 1720,17933,17981, 1721,10226, 1722, 6950, 1723,15846, 1724, 1725, 1726, 1713, 2493,17933,10226,17933,17933,12503,17876,17933,18012,17933, 17933,18014,16562,18016,17987,17876,18045,15669,17980, 120, 17989, 1714,14704,17988,18048,17267,18019,18026, 1715,18440, 4902,17644,17949,18130,18018,18021,18023, 2842,18027,14705, 18022,18036, 1716,18032, 1717,17426, 1718,17991,13962, 1719, 18020,18034,18040,18024, 1720,17268,18037, 1721,17645, 1722, 14706, 1723,18031, 1724, 1725, 1726, 1713,18033,17286, 2842, 16570, 120,16187,16779,18030,16572,18042,17967,13175, 120, 18045,17967,17967, 120,17426,17287, 120, 857, 1714,15837, 16780,18049,18054,18123,17935, 1715, 7593, 2048,18165,18770, 15176,18126,15793,17968,18044,18041,17288,17968,17968, 1716, 17601, 1717,18045, 1718,10974, 2049, 1719,15177,18053, 1086, 18043, 1720, 4903,18060, 1721, 6950, 1722, 2050, 1723, 1089, 1724, 1725, 1726, 1713,18092,18111,18039, 1087,15787,17941, 18038, 835,10974,10226,15845,17875,17941,17875,18062, 833, 18104, 120,17875,16535,18095, 1714,17941,17944,18134,17941, 18093,18057, 1715,18096,18063,17268,18055,17944,17941,18056, 17944,10226,15669,18442,15846,17876, 1716,17876, 1717,17944, 1718,18066,17876, 1719,18093,18059,18094,18211, 1720, 4904, 17941, 1721, 857, 1722,18129, 1723,17941, 1724, 1725, 1726, 1713,17944,17941,18064,16835,18028,18018,18101,18065,17941, 18094,18067,18113,17944,17941,18098,17878,18123,17933,18142, 17944,18068, 1714,17933,18097,17944,17644,18106,18100, 1715, 15256,15256,15256,15256,15256,15256,15256,15256,15256,18015, 17941,18110, 120, 1716,18099, 1717,18614, 1718,18102,17876, 1719,17944,17941,17645,18112, 1720,18105,17941, 1721,17941, 1722,15837, 1723,17944, 1724, 2087, 1726, 1713,17944,16187, 17944,14704,18020,18103,18015,17941,17941,17949,18017,18021, 2842,18116,18115,18107,18022, 2048,17944,17944,14705, 1714, 16779,18072,17967, 2842,18117,18121, 1715,10773,18197,15793, 17967,18136,18123, 2049, 1089,18382,18200,16780, 120,14706, 1716,17286, 1717,18127, 1718, 2050, 835, 1719,17968,18120, 17949, 7593, 1720, 3068,15176, 1721,17968, 1722,17287, 1723, 18128, 1724, 1725, 1726, 1713,18122,18128, 247,18134,18118, 18131,15177, 120,16535,10974,18133, 1086, 857, 120,17288, 6950, 416,17933,10974,17935,17930, 1714,15845,17875,17935, 18135,18145,15787, 1715, 1087,18059, 120,17875,18137,17933, 120,18161,18197,10226,17933,18197, 833, 1716,18242, 1717, 4905, 1718,10226,18164, 1719,18138,18201,15846,17876, 1720, 18151,18204, 1721,18777, 1722,17933, 1723,17876, 1724, 1725, 1726, 2525, 3071,17935,17942,18132,17933, 1712,17935,17943, 3072,18140,18143,18139,18080,18159,18152,18160,17935,17935, 17935,18024, 120,17935,17935,17935,18163,18141,17935, 120, 18162,17935, 3073,17935,18158,18083,17935,17933,18144, 3074, 18084,18082,17997,18168,17933, 4906,18309,17942,18079,18188, 17933,18192,17943, 3075,18169, 3076,18261, 3078,17942,18185, 3079,17933,18189,17943,17933, 3081,17967,18167, 3082,18193, 3083,17933, 3084,16779, 3085, 3086, 3087, 2525, 3071,15669, 17933,15793,17933, 1712, 4907,15669, 3072,17267,14704,17942, 16780,18433,17968,18268,17943,18019,17942,17644,18194,18196, 18173,17943,17942,18170,18272,14705,17949,17943, 3073,18172, 17933,17933,18205,17942,18186, 3074,17942,17268,17943,18020, 18023,17943,18134,17942,17645,18174,14706,18187,18177, 3075, 18015, 3076,17942, 3078,17942,18099, 3659,17943,18175,17943, 18210, 3660,17426,17386, 3082, 2842, 3083,18191, 3084,18059, 3085, 3086, 3087, 1713, 857,18178,18019,18179,17967,10974, 18134, 2842,17942,17942,18195, 2048,18180,17943,17943, 1089, 15837,18182, 7593,18181,18215, 1714,15176,18217,17935,18268, 18020, 835, 1715, 2049,17968,18239,18001,18059,10226,18190, 18209,18268,17286,15177,17935, 2050, 1716,18241, 1717,18271, 1718, 6950, 2091, 1719,15846,18208,16535,17876, 1720,17287, 18086, 1721,18214, 1722,15787, 1723, 4923, 1724, 1725, 1726, 4931, 4931, 4931, 4931, 4931, 4931, 4931, 4931, 4931, 3682, 17288,18329,10974,18749,18212,18206, 4931, 4931, 4931, 4931, 4931, 4932,18178, 120,18179,17933,18283,17933,17875,18219, 17933,17933,17933,18240,17933,18246,17933,18244,18330,17933, 18181,10226, 4931, 4931, 4931, 4931, 4931, 4931, 4934, 4934, 4934, 4934, 4934, 4934, 4934, 4934, 4934, 4935,17876,17930, 17967,17644,18265,18001, 4934, 4934, 4934, 4934, 4934, 4936, 18213,17935,16779,17933,18230,17933,18325,18245,17933,17933, 17933,18218,18243,18247,17933,18249,17968,17935,17645,16780, 4934, 4934, 4934, 4934, 4934, 4934, 4937, 4937, 4937, 4937, 4937, 4937, 4937, 4937, 4937, 1086,18266, 120,18012,17949, 18001, 264, 4937, 4937, 4937, 4937, 4937, 4938,17935,18248, 18251,17935,18374, 1087,17933,17933,18231,17933,17933,18305, 17930,18276,17933,18254,17935, 833,18290,17875, 4937, 4937, 4937, 4937, 4937, 4937, 4940, 4940, 4940, 4940, 4940, 4940, 4940, 4940, 4940, 4273,17267,18385,16561,17949,18001,18207, 4940, 4940, 4940, 4940, 4940, 4941,17935,17876,14704,17933, 17933,18232,18016,18216,17933,17933,18282,17930,18015, 857, 18252,18253,17935,18316,17268,14705, 4940, 4940, 4940, 4940, 4940, 4940, 4942, 4942, 4942, 4942, 4942, 4942, 4942, 4942, 4942,17878, 2842,17949,18333,15837,14706,18001, 4942, 4942, 4942, 4942, 4942, 4943,18083,17935,18259,17933,18326,18084, 1089,18021,17933,18280,16187,18264,18022, 120,18228,18255, 16849,17935, 835,17286, 4942, 4942, 4942, 4942, 4942, 4942, 4947, 4947, 4947, 4947, 4947, 4947, 4947, 4947, 4947, 4282, 17287,18329,17930,18419,15793,18001, 4947, 4947, 4947, 4947, 4947, 4948,18083,17935,17935,18263,18306,18084,17930,18233, 16187,17288,17935,18001,17949, 120,17644,18358,18330,17935, 16496,17935, 4947, 4947, 4947, 4947, 4947, 4947, 4949, 4949, 4949, 4949, 4949, 4949, 4949, 4949, 4949,17935, 2842, 7593, 15793,18333,18001,17645, 4949, 4949, 4949, 4949, 4949, 4950, 17935,18260,18337,18312,18234,17935,18083,18267,18286,10974, 17875,18084,10974,17935,18307, 120,17935, 120, 6950,15176, 4949, 4949, 4949, 4949, 4949, 4949, 4953, 4953, 4953, 4953, 4953, 4953, 4953, 4953, 4953, 4291,15177,17967,10226,18394, 17876,10226, 4953, 4953, 4953, 4953, 4953, 4954,16779,18288, 18398,18284,18333,18021,18537,18445,17875,15787,18022,18250, 18336, 5764,17933,17968,18355,16780, 1086,17933, 4953, 4953, 4953, 4953, 4953, 4953, 4955, 4955, 4955, 4955, 4955, 4955, 4955, 4955, 4955,18020, 1087, 2048,17876,18279,18331,18338, 4955, 4955, 4955, 4955, 4955, 4956, 833,18338,18349,18001, 18379, 120,18229, 2049, 247,17426,17267,17935,17930, 120, 18350,18474,17949,18085,18289, 2050, 4955, 4955, 4955, 4955, 4955, 4955, 2168,17935, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3119,10974,18278,17268,18342,18019,18373, 3118, 3118, 3118, 3118, 3118, 3120,18310,16561,16561,16561, 16561,16561,16561,16561,16561,16561,17949,18340,17967, 416, 5761, 695,18020,10226,18332,18324, 3118, 3118, 3118, 3118, 3118, 3118, 4962, 4962, 4962, 4962, 4962, 4962, 4962, 4962, 4962, 4304,15845,18287,17968,18338,18019,18341, 4962, 4962, 4962, 4962, 4962, 4963,18311,18375,18435, 120,18285,18376, 416,18173,18134,18351,18352,17949,18134,17949,18323,17949, 18020,17949,15846,15845, 4962, 4962, 4962, 4962, 4962, 4962, 4964, 4964, 4964, 4964, 4964, 4964, 4964, 4964, 4964,18059, 17875, 2048,18377,18059,16535,18281, 4964, 4964, 4964, 4964, 4964, 4965,18016,15846,18383,18504,15847,18394,18434, 2049, 7593,17875,17949,18357,17949,18397,18378, 120, 5757,17949, 17876, 2050, 4964, 4964, 4964, 4964, 4964, 4964, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3131, 2842, 6950, 18381,17876,18356,17876, 3130, 3130, 3130, 3130, 3130, 3132, 18343,17949,18438,18451,17878,18437,18439,18499,17949,18387, 18353,17426,17644, 857,18455,17949,17949,17949,18503,17286, 3130, 3130, 3130, 3130, 3130, 3130, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 2132,17287,18345,18394,17645, 18403,18001, 3127, 3127, 3127, 3127, 3127, 3128,18327,18365, 16561,18485,18451, 5694,18489,18346,17267,17288,18441,18388, 18454,17949,17949,18436,18364,17935,17426,18347, 3127, 3127, 3127, 3127, 3127, 3127, 4971, 4971, 4971, 4971, 4971, 4971, 4971, 4971, 4971, 4318,10974,17949,17268,18329,18366, 120, 4971, 4971, 4971, 4971, 4971, 4972,17935, 416,18499,18576, 18507,17930,18390,18340,18392,18340,18502,18001,18486,18523, 18532,18386,17935,10226,18330,17935, 4971, 4971, 4971, 4971, 4971, 4971, 4973, 4973, 4973, 4973, 4973, 4973, 4973, 4973, 4973,17935,18329,18341,16779,18341,18001,18001, 4973, 4973, 4973, 4973, 4973, 4974,17935,17935,17949,18354,18369,17949, 18370,16780,18401,18447,18391,17949,18329, 120,18574,18330, 17935,17935,17426,17875, 4973, 4973, 4973, 4973, 4973, 4973, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3147, 18340, 857,18409,18330,18019,17967, 3146, 3146, 3146, 3146, 3146, 3148,18380,17876,18393,18534,18417,18349,18492, 5677, 17949, 416,18553,17949,18413,18402,18451,17949,18020,18350, 18341,17968, 3146, 3146, 3146, 3146, 3146, 3146, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 2146,18345,18407, 18409,18405,18405,16535, 3143, 3143, 3143, 3143, 3143, 3144, 18533,18644,18544,18544,17930,18349,18346,18346,18415,10974, 17949,18547,18411,18548, 120,17967,18450,18350,18347,18347, 3143, 3143, 3143, 3143, 3143, 3143, 4980, 4980, 4980, 4980, 4980, 4980, 4980, 4980, 4980, 3731,18345,18410,10226,18405, 18409,17968, 4980, 4980, 4980, 4980, 4980, 4981,18575,18586, 5667,18567,18619,18586,18346,18349,17949,18589,18449,18420, 18475,18408,17644,17930,18590,18421,18347,18350, 4980, 4980, 4980, 4980, 4980, 4980, 4983, 4983, 4983, 4983, 4983, 4983, 4983, 4983, 4983, 4984, 7593,10974,18444,16779,18001,17645, 4983, 4983, 4983, 4983, 4983, 4985,17935,18624, 247,18504, 18658,18424, 5664, 120,16780,18627, 247,18001,18661,18367, 17426, 120,17935, 6950,10226,17935, 4983, 4983, 4983, 4983, 4983, 4983, 4989, 4990, 4991, 4992, 4992, 4992, 4992, 4992, 4992,17935,17949,17875,17949,18461,18001,18001, 3162, 3162, 3162, 3162, 3162, 3166,17935,17935,18577,18414,18624,18416, 18425,18022,18364, 7593, 120, 416, 5656, 416,18074,18628, 17935,17935,17949,17876, 3162, 3162, 3162, 3162, 3162, 3162, 4993, 4993, 4993, 4993, 4993, 4993, 4993, 4993, 4993, 2627, 2048,17267, 6950,18312,18001,18001, 3160, 3160, 3160, 3160, 3160, 3161,18431,17935,18488,18001,18428,17878, 2049,18690, 5653,18795, 416,17935,18418,17949,18469,18693,17935,17935, 2050,17268, 3160, 3160, 3160, 3160, 3160, 3160, 4341,17935, 3747, 3747, 3747, 3747, 3747, 3747, 3747, 3747, 3747,18235, 18001,18236,18246,18077,18404,18134,18001,17935,18368,18439, 18237, 120,18371,18504,17935,18443,16779,18238,18653,17949, 18839,17949,18629,17935,17935, 120,17949, 120, 416, 120, 17935,17949,18059,16780, 120, 4998, 119, 119,18412, 119, 119, 119, 119, 119, 119, 124, 4341, 119, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 119, 119, 119, 119, 119, 119, 119, 417, 417, 417, 417, 417, 418, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 119, 119, 119, 119, 417, 417, 417, 4999, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 5003,17967,18134,18420,18498, 2842,18682,18329,18409, 5004, 5004, 5004, 5004, 5004, 5004, 5004, 5004, 5004,18001,18488,18312, 5645, 5642,18349,18372, 416,17935,17968,18345,18059, 120,18405,18364,18001,18330, 18350,17286,18448,18468,18422,17949,17935,17935, 5003, 119, 119,18346, 119, 119, 119, 119, 119, 119,17287, 119, 2192,18001,17935,18347,18426,18340,18389,10974, 857,17935, 2193, 119, 119, 119, 119, 119, 119,18406,18423,17288, 18001,17949, 5009,18312,17644,17935,18340,18083,17935,10974, 18001,17949,18084,18499, 5635,18341,10226,17930,17935, 2195, 119, 119, 119, 119,17935, 119, 119, 119, 119, 119, 119,17645, 119, 2192,17935,18495,18341,18409,10226,18460, 2842,10974,18470, 2193, 119, 119, 119, 119, 119, 119, 5010,18459,18349,18001,18312, 5009, 5632,18789, 416,18519, 18001,17935,18496,18491,18350,18430,18230,18467,17935,17949, 10226,17286, 2195, 119, 119, 119, 119,17935, 119, 119, 119, 119, 119, 119,17935, 119, 3761,18001,17287,18134, 18329,18535, 2048,18078,17267,17935, 2193, 119, 119, 119, 119, 119, 119,18471,18639,18446,18001,18427, 5014,17288, 2049,17935, 5628,18462,17935, 5625,18059,18330,18552,18432, 17949,17268, 2050,18497,17268, 2195, 119, 119, 119, 119, 17935, 119, 119, 119, 119, 119, 119,18340, 119, 3761, 18345,18345,18345,18405,18405,18405,17875,18509,18341, 2193, 119, 119, 119, 119, 119, 119, 5015, 416,18346,18346, 18346, 5014,18463,17875,18490,18510,18001,18341,18649,18134, 18347,18347,18347,18506,18477,18465,17876,18511, 2195, 119, 119, 119, 119,18409, 119, 119, 119, 119, 119, 119, 17935, 119, 119,17876,18466,18340,18059,18517,18349,17949, 18134,18472, 119, 119, 119, 119, 119, 119, 119, 5622, 18350, 5619, 3072,17875, 5017,18473,18476,18476,18476,18476, 18476,18476,18476,18476,18476,18341,18478,18059,18001,18480, 18561, 119, 119, 119, 119, 119,17935, 119, 119, 119, 119, 119, 119,17876, 119, 119,18001,17644,18509,18409, 857,18512,17935,18616,17935, 119, 119, 119, 119, 119, 119, 119, 5018,18505,18349,18001,18510, 5017,18522, 4878, 17935,10974,18001,17935,17645,18544,18350,18479,18511,17644, 18482,17949,18516,18524, 119, 119, 119, 119, 119,17935, 119, 119, 119, 119, 119, 119,17935, 119, 119,18019, 10226,18345,17997,18536,18405, 2842,17645,18487, 119, 119, 119, 119, 119, 119, 119,18464,18001,18001, 7593,18346, 5020,18134,17949,18020,17935,17935,18001,17949, 569,18481, 18483,18347, 5021,18520,17935,18518,17286, 119, 119, 119, 17935,17935,18409,18683,17949,18406,18484, 6950,18059,18539, 17935,18515,18495,17287,18001,17949,18603,18349,18298, 5021, 119, 119,17935, 119, 119, 119, 119, 119, 119,18350, 119, 3761,18345,17875,17288,18405,18493,18345,17935,18496, 18405, 2193, 119, 119, 119, 119, 119, 119, 5537,18513, 18346,18521, 555, 5025,18658,18346,18542,18539,18001,18329, 18495,18340,18347,17876,18483,18662,17935,18347,18514, 120, 2195, 119, 119, 119, 119,18540, 119, 119, 119, 119, 119, 119,17935, 119, 3761, 120,18330,18496,18488,18742, 18565,18341,17875,18526, 2193, 119, 119, 119, 119, 119, 119, 5026,18528,18364,18001,18714, 5025,18717,17949, 5517, 18580,18001,17935,18528,18530,18539,18551,18525,18495,17935, 17876,18531,17876, 2195, 119, 119, 119, 119,17935, 119, 119, 119, 119, 119, 119,17935, 119, 3761,18509,18021, 18541,18512,18562, 7593,18022,18496,18001, 2193, 119, 119, 119, 119, 119, 119,17935,17949,18510,18001,18715, 5030, 18566, 416,10974,17930,18690,17935,17967,18596,18511,10974, 17935,17949, 6950,17949,18543,18694, 2195, 119, 119, 119, 119,17935, 119, 119, 119, 119, 119, 119,17949, 119, 3761,10226,17968, 2842,18538,18678,18555,17426,10226,18512, 2193, 119, 119, 119, 119, 119, 119, 5031,18018,18617, 18001, 5418, 5030, 5156,18510, 416,18629,17949,17935,18564, 18563,17267,18578, 247,17286,18529,18511, 857, 120, 2195, 119, 119, 119, 119,17935, 119, 119, 119, 119, 119, 119,17287, 119, 3761,18539,18509,18509,18495,18512,18512, 18608,17268,18586, 2193, 119, 119, 119, 119, 119, 119, 18571, 5147,17288,18510,18510, 5034,18726,17644,18721,18558, 18556,17644,18405,18001,18496,18511,18511,17386, 120,18725, 17876,17935, 2195, 119, 119, 119, 119,18346, 119, 119, 119, 119, 119, 119,17645, 119, 3761,17935,17645,18347, 18539,18345, 416,18495,18405,18409, 2193, 119, 119, 119, 119, 119, 119, 5035,18726,18557,18559,18585, 5034,18346, 18349, 247,18509,18579,18329,18512, 120,18569,18618,17967, 18496,18347,18350,18583,18570, 2195, 119, 119, 119, 119, 18510, 119, 119, 119, 119, 119, 119,18609, 119, 3761, 18560,18330,18511,18409,18340,17968, 2842,18584,18581, 2193, 119, 119, 119, 119, 119, 119,18554,18615,18349, 120, 17267, 5037,18022,18539, 5139, 617,18495,17930,18001,18340, 18350,10974, 7593,17949,18341, 5038,17935,17286, 2195, 119, 119,18568,18568,18568,18568,18568,18568,18568,18568,18568, 17268, 857,17935,18496,17287,18594, 120,18001,18604,18341, 10226, 6950, 5038, 119, 119,17935, 119, 119, 119, 119, 119, 119,18573, 119, 119,17288,18624, 2842,18409,18509, 18599,17935,18512,18405, 119, 119, 119, 119, 119, 119, 119,18582,18605,18349,18001,18796, 5040,18510,18346, 416, 18630, 5119,17935,18528,18721,18350,17949,18572,17286,18511, 18347,18602,18724, 119, 119, 119, 119, 119,17935, 119, 119, 119, 119, 119, 119,17287, 119, 119, 5041, 5041, 5041, 5041, 5041, 5041, 5041, 5041, 5041, 119, 119, 119, 119, 119, 119, 119,18747,18629,17288,18001,18021, 5040, 18726,18340,18750,18022,18083,17935, 5116, 120,18539,18084, 416,18495, 120, 120,17949, 416, 119, 119, 3204, 119, 119,17935, 119, 119, 119, 119, 119, 119,10974, 119, 3761,18341,18509,18601,18409,18512,18409,18595,18496,18632, 2193, 119, 119, 119, 119, 119, 119,18610,18401,18349, 18510,18349, 5044,18818,17875,18623,18539,10226,10974,18495, 10974,18350,18511,18350,18637,18598,18001,18620,17426, 2195, 119, 119, 119, 119,17935, 119, 119, 119, 119, 119, 119,18607, 119, 3761,17876,17967,18496,10226,18329,10226, 17935,18606,18621, 2193, 119, 119, 119, 119, 119, 119, 5045,18018,18650, 416, 5108, 5044, 5105, 416, 5097, 5094, 17949,17968,18641,18642,18655,18330,18656,18495,17878,18001, 857,18612, 2195, 119, 119, 119, 119,17935, 119, 119, 119, 119, 119, 119,18611, 119, 3761,18345,18329,18509, 18405,10974,18512,17935,18496,18658, 2193, 119, 119, 119, 119, 119, 119,18597,18001,18346,18001,18510, 5047,18340, 18685, 857,17935,18613,17935,18330, 7593,18347,18084,18511, 10226, 857, 5048,18600,18622, 2195, 119, 119,17935,18509, 17935,18406,18512,18554,18509,17875,18690,18512,18651,18341, 120,18633, 416,17997,18675, 6950,18721,18510,18631, 5048, 119, 119,18510, 119, 119, 119, 119, 119, 119,18511, 119, 2192,18340,18409,18511,17876,18345,17644,18329,18405, 18634, 2193, 119, 119, 119, 119, 119, 119,18349, 5087, 18640, 5084,17875, 5052,18346,17949,18657,18340, 120,17967, 18350,18340,18341,18647,17645,18330,18347,18643,18688,18638, 2195, 119, 119, 119, 119,18636, 119, 119, 119, 119, 119, 119,17876, 119, 2192,17968,18743,18341,18666,17967, 18539,18341,17930,18495, 2193, 119, 119, 119, 119, 119, 119, 5053,18665,18645,18652, 416, 5052,18747,17877,18673, 18345,18001,18134,18405,18001,17968,17878,18738,18751,17935, 18496,18689,17935, 2195, 119, 119, 119, 119,18346, 119, 119, 119, 119, 119, 119,17935, 119, 119,17935,18059, 18347,10974,18668,18635, 5080,18512,18409, 119, 119, 119, 119, 119, 119, 119,18406, 5077,18654,18001,18676, 5057, 18510,18349,18340,18800,18646,17935, 7593,17875,18684,18084, 10226,17644,18511,18350,18672, 120, 119, 119, 119, 119, 119,17935, 119, 119, 119, 119, 119, 119,18708, 119, 119,18345,18341,18539,18405, 6950,18495,17876,17645, 416, 119, 119, 119, 119, 119, 119, 119, 5058, 5074,18346, 18001,18021, 5057, 5071,18686, 695,18022,10226,17935, 5066, 18698,18347,18670,18496,18080,18648,18677,17949,18674, 119, 119, 119, 277, 277,17935, 287, 277, 277, 277, 277, 277, 667, 280, 277, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 917, 277, 277, 277, 277, 277, 277, 5064, 5064, 5064, 5064, 5064, 5065, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669, 5063, 5063, 5063, 5063, 5063, 5063, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 278,18681,18700,18134,18509,18512,17930,18512,18340, 5064, 5064, 5064, 5064, 5064, 5064, 5064, 5064, 5064,18667, 17930,18510,18001,18510,18001,18793,18001,18768,18706, 5008, 17935,18059,18740,18511,17935,18511,18080,18680, 5008,18341, 5008,18765,18699, 5008,18530,18837,17935, 5051,17935,18711, 17935, 5051, 5064, 5064, 5064, 5064, 5064, 5064, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 5068, 5068, 5068, 5068, 5068, 5068, 5068, 5068, 5068, 4438,18345,18409,18409, 18405, 5051, 5008, 5068, 5068, 5068, 5068, 5068, 5069,17949, 17949, 5008,18021,18349,18349,18346,17875,18022,18709,10974, 17949,18716, 857,17644, 416,18350,18350,18347,17949, 5068, 5068, 5068, 5068, 5068, 5068, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 5070, 7593,17876,18747,10226,18704, 17645, 4440, 4440, 4440, 4440, 4440, 4441,18679, 4986,18671, 4982,18669,18001, 416, 4975,18001,18767, 416, 4966, 416, 17935,18710,18345,17935, 6950,18405, 4957, 4440, 4440, 4440, 4440, 4440, 4440, 313,18539,18509,17935,18495,18512,17935, 18346,18329, 5072, 5072, 5072, 5072, 5072, 5072, 5072, 5072, 5072,18409,18347,18510,17967,18530,18745,18707, 5072, 5072, 5072, 5072, 5072, 5073,18496,18511,18349, 416,18330, 4951, 18687,18701, 7593,18539,18539,18702,18495,18495,18350,18554, 17968,18705, 120,18720, 5072, 5072, 5072, 5072, 5072, 5072, 5075, 5075, 5075, 5075, 5075, 5075, 5075, 5075, 5075, 3825, 18409, 6950,18582,18496,18496,18744, 5075, 5075, 5075, 5075, 5075, 5076,18712,18021, 416,18349, 4944,18771,18022,11774, 10974, 416,18735,18001, 4939, 4933,18329,18350, 3070,17949, 2524,17935, 5075, 5075, 5075, 5075, 5075, 5075, 5078, 5078, 5078, 5078, 5078, 5078, 5078, 5078, 5078,17935,18345,10226, 18409,18405,18001,18330, 5078, 5078, 5078, 5078, 5078, 5079, 17935,18719,18732,18713, 569,18349,18346,18800, 857,18539, 18773,18340,18495,18329, 247, 4838,17935,18350,18347, 120, 5078, 5078, 5078, 5078, 5078, 5078, 5082, 5082, 5082, 5082, 5082, 5082, 5082, 5082, 5082, 3834,10974,18134, 120,18496, 18330,18341, 5082, 5082, 5082, 5082, 5082, 5083,18718,18727, 4834, 555, 4809,18730, 4805,18759, 7593,18778,17967,18134, 18768,18134,18736,17967,18059,10226,18769,17875, 5082, 5082, 5082, 5082, 5082, 5082, 5085, 5085, 5085, 5085, 5085, 5085, 5085, 5085, 5085,18746,17968, 6950,18059,18341,18059,17968, 5085, 5085, 5085, 5085, 5085, 5086,18734,17876,18741,18741, 18741,18741,18741,18741,18741,18741,18741, 416,18134,18786, 17967,17967, 4740,18785,18340,18761, 5085, 5085, 5085, 5085, 5085, 5085, 5088, 5089, 5090, 5091, 5091, 5091, 5091, 5091, 5091,18737,18754,17949,18409,18059,17968,17968, 3251, 3251, 3251, 3251, 3251, 3252,18341,18774, 3492, 4532, 4531,18760, 18799,18539, 120, 416,18495,18788, 4511, 416, 4497, 4493, 18739,18350,18012,17949, 3251, 3251, 3251, 3251, 3251, 3251, 5092, 5092, 5092, 5092, 5092, 5092, 5092, 5092, 5092, 3843, 18509,18496,18409,18512,18772,17876, 5092, 5092, 5092, 5092, 5092, 5093,18800, 416, 4478, 416, 4469,18349,18510,18809, 7593, 416, 4460,18001, 120, 416,18329, 416, 4454,18350, 18511,17935, 5092, 5092, 5092, 5092, 5092, 5092, 5095, 5095, 5095, 5095, 5095, 5095, 5095, 5095, 5095,17935,18509, 6950, 18798,18512,18001,18330, 5095, 5095, 5095, 5095, 5095, 5096, 17935, 416, 4447, 416,18755,18792,18510,18783, 4442, 4436, 18539,18812, 695,18495, 4432,18079,17935, 416,18511,18756, 5095, 5095, 5095, 5095, 5095, 5095, 5098, 5099, 5100, 5101, 5101, 5101, 5101, 5101, 5101,18345,18345,17875,18405,18405, 18496,17930, 3258, 3258, 3258, 3258, 3258, 3259,18797, 4332, 416, 4320, 4316,18346,18758, 416, 4306,18345, 4302, 416, 18405, 4293,10974, 4289, 416,18347,18347,17876, 3258, 3258, 3258, 3258, 3258, 3258, 1904,18346, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 2710, 7593,18347,10974,18409, 18703,10226, 3256, 3256, 3256, 3256, 3256, 3257, 4284, 4280, 18466, 416, 4275,18757,18349, 4271, 3070,18764, 3070,18340, 4237, 569,18833,18807, 4164, 6950,18350,10226, 3256, 3256, 3256, 3256, 3256, 3256, 5103, 5103, 5103, 5103, 5103, 5103, 5103, 5103, 5103, 3856,10974,18345,18801,18134,18405,18341, 5103, 5103, 5103, 5103, 5103, 5104, 555, 4143, 120,18762, 4074, 3921,18763,18346, 3919, 3914,18401,17875, 416, 3903, 416, 3892, 416,10226,18059,18347, 5103, 5103, 5103, 5103, 5103, 5103, 5106, 5106, 5106, 5106, 5106, 5106, 5106, 5106, 5106,18509,18782,18784,18512,18405,18409,17876, 5106, 5106, 5106, 5106, 5106, 5107, 3872, 3868,18787, 416,18808,18510, 18346,18349, 3858,18781, 3854, 416,18834, 3845,18817, 3841, 416,18511,18347,18350, 5106, 5106, 5106, 5106, 5106, 5106, 5109, 5110, 5111, 5112, 5112, 5112, 5112, 5112, 5112,10974, 18134,17875,18811,18329,18779,17930, 3266, 3266, 3266, 3266, 3266, 3267,18794,18794,18794,18794,18794,18794,18794,18794, 18794, 3836, 3832,18329, 416, 3827, 3823,18059,10226, 695, 18330,17876, 3266, 3266, 3266, 3266, 3266, 3266, 5113, 5113, 5113, 5113, 5113, 5113, 5113, 5113, 5113, 2722,18509,18409, 18330,18512,17949,18024, 3264, 3264, 3264, 3264, 3264, 3265, 3816,18810,18820, 3733,18349,17878,18510,18831, 416,18790, 18821, 3719,18329, 416, 3708,18791,18350,17949,18511,18841, 3264, 3264, 3264, 3264, 3264, 3264, 5114, 5114, 5114, 5114, 5114, 5114, 5114, 5114, 5114, 3870,18816,18813,18524,18330, 17967,18806, 5114, 5114, 5114, 5114, 5114, 5115, 416, 3700, 416, 3693, 3686,18802, 3666, 3663,18340,17997, 3662,18001, 3661, 3656, 3655, 3654,18856, 3653,17968,17935, 5114, 5114, 5114, 5114, 5114, 5114, 5117, 5117, 5117, 5117, 5117, 5117, 5117, 5117, 5117,17935,18539,18340,18341,18495,18001,18001, 5117, 5117, 5117, 5117, 5117, 5118,17935,17935, 3652,17949, 3077, 3651,18819, 3650, 3649, 3648, 2524,18840,18815, 2524, 18495,18857,17935,17935,18496,18341, 5117, 5117, 5117, 5117, 5117, 5117, 5120, 5121, 5122, 5123, 5123, 5123, 5123, 5123, 5123,18509,18509,18345,18512,18512,18405,18496, 3277, 3277, 3277, 3277, 3277, 3278, 3565,18835, 3536,18824, 1023,18826, 18510,18346, 120,18842, 3393, 3326, 416, 3315, 3299, 120, 416,18511,18511,18347, 3277, 3277, 3277, 3277, 3277, 3277, 5124, 5124, 5124, 5124, 5124, 5124, 5124, 5124, 5124, 2738, 18850,18345,17967,18134,18405,18001, 3275, 3275, 3275, 3275, 3275, 3276, 3279,17935, 416,18828, 3268, 416, 7593,18346, 18825, 3260,18509, 416,18329,18512, 3253,18838,17968,17935, 18059,18347, 3275, 3275, 3275, 3275, 3275, 3275, 119, 119, 18510, 119, 119, 119, 119, 119, 119, 6950, 119, 119, 18509,18330,18511,18512,18509,18728,18804,18512,17997, 119, 119, 119, 119, 119, 119, 119,18554,18409,18510, 7593, 7593, 1816,18510, 3246, 695, 3235,18340, 3149, 3133, 3121, 18511,18832,18349,18780,18511,18868,18409, 3111, 119, 119, 119, 3052,18790,18729,18350,18864, 3049,18134, 6950, 6950, 17949,18349,18733, 5125, 119, 119,18341, 656, 119, 119, 119, 119, 119,18350, 119, 119, 5126, 5126, 5126, 5126, 5126, 5126,10974,10974,18059, 5127, 119, 119, 119, 119, 119, 119,18409,18851, 3048,18843,18829, 665,18836,18865, 3047, 3042,18001, 3041, 3040, 3039,18854,18349, 3038, 2531, 17935,10226,10226, 3037, 119, 119, 119, 277, 277,18350, 278, 277, 277, 277, 277, 277,17935, 280, 277, 5129, 5129, 5129, 5129, 5129, 5129,18340,18866, 7593, 5130, 277, 277, 277, 277, 277, 277,18852, 3036, 3035, 3034,18001, 668,18830, 2949, 2943, 2942, 2941,18001,17935, 2866, 2787, 18853, 416, 2777, 2740,17935,18341, 6950, 277, 277, 277, 669, 119, 119,18086, 119, 119, 119, 119, 119, 119, 17935, 119, 119, 5131, 5131, 5131, 5131, 5131, 5131, 5131, 5131, 5131, 119, 119, 119, 119, 119, 119, 119,18869, 2724, 2712,18001, 2702, 662,18887, 695, 2687, 120, 2506, 17935, 2324, 2323, 2308, 416, 2297, 695, 2212, 1939, 1937, 1936, 119, 119, 119, 277, 277,17935, 287, 277, 277, 277, 277, 277, 667, 280, 277, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 917, 277, 277, 277, 277, 277, 277, 5064, 5064, 5064, 5064, 5064, 5065, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669, 5063, 5063, 5063, 5063, 5063, 5063, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 5135, 5135, 5135, 5135, 5135, 5135, 5135, 5135, 5135, 4495,18345,18509, 1921,18405,18512,18001, 5135, 5135, 5135, 5135, 5135, 5136, 416,17935, 1910, 1835, 695, 1834,18346,18510, 1350, 1346, 1304, 1571, 1554, 416, 1548, 925, 695,17935,18347,18511, 5135, 5135, 5135, 5135, 5135, 5135, 5137, 5137, 5137, 5137, 5137, 5137, 5137, 5137, 5137, 18845,18345,18345,18512,18405,18405,18827, 5137, 5137, 5137, 5137, 5137, 5138, 1481, 1350, 1346, 1304, 470,18510,18346, 18346,18890,18844, 1264,18329, 1254, 416, 1242, 120, 695, 18511,18347,18347, 5137, 5137, 5137, 5137, 5137, 5137, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3297,18409, 18409,18330,18409,18409,18001, 3296, 3296, 3296, 3296, 3296, 3298,18847,17935, 1185,18349,18349, 1032,18349,18349,18876, 7593,18846, 1023, 1019, 1017, 1016,18350,18350,17935,18350, 18350, 3296, 3296, 3296, 3296, 3296, 3296, 3293, 3293, 3293, 3293, 3293, 3293, 3293, 3293, 3293, 2280,18539,18539, 6950, 18495,18495,18863, 3293, 3293, 3293, 3293, 3293, 3294,18849, 1015, 1013, 1012,18875, 1011, 1010,18848, 1003, 1002, 1000, 18877,10974, 999, 997,18855, 996, 995,18496,18496, 3293, 3293, 3293, 3293, 3293, 3293, 5145, 5145, 5145, 5145, 5145, 5145, 5145, 5145, 5145,18860,18862,18509,18405,18409,18512, 10226, 5145, 5145, 5145, 5145, 5145, 5146, 994, 993, 991, 18867, 989,18346,18349,18510,18582, 988,18345, 986,18329, 18405, 416, 982, 963,18347,18350,18511, 5145, 5145, 5145, 5145, 5145, 5145, 119, 119,18346, 656, 119, 119, 119, 119, 119,18329, 119, 119,18509,18330,18347,18512,18345, 18509,18858,18405,18512, 903, 119, 119, 119, 119, 119, 119,10974,18539,18510,18891,18495, 665,18346,18510,18330, 18340,18340,18861,18509,18539,18511,18512,18495,18509,18347, 18511,18512, 954, 119, 119, 119,18879,18731,18803,10974, 10226,18510,18496, 695,18341, 715,18510, 7593,18870, 696, 18341,18341, 695,18511,18496, 5150, 119, 119,18511, 119, 269, 119, 119, 119, 119, 270, 119, 119,10226, 920, 18345,18878,18509,18405,18888,18512, 6950, 119, 119, 119, 119, 119, 119, 119,18464,18871,18597, 908,18346, 456, 18510,18880, 5153, 675,18911, 439, 440,18805,18881,18859, 18347, 843,18511,18899, 835, 833, 119, 119, 119, 119, 784, 777, 776, 769,18406, 774,18554,18898, 5153, 119, 119, 773, 3912, 119, 119, 119, 119, 119,18950, 119, 2192,18509,18345,18409,18512,18405,18345, 772,18409,18405, 2193, 119, 119, 119, 119, 119, 119, 771,18349,18510, 18346, 768, 2659,18349,18346,18539,18539, 6950,18495,18495, 18350,18511,18347, 767, 766,18350,18347, 765, 763, 2195, 119, 119, 1557, 1557, 1558, 2312, 1557, 1557, 1557, 1557, 1557,18874, 1557, 1557,18892,18496,18496,18512,18345,18345, 18882,18405,18405, 2313, 1557, 1557, 1557, 1557, 1557, 1557, 18873,18409,18510,18883, 762, 1927,18346,18346, 761, 760, 18889, 759, 758,18901,18511,18329,18349, 757,18347,18347, 18900, 756, 1557, 1557, 1557, 755, 754, 753,18350, 5159, 1004, 1004,18406, 1265, 1004, 1004, 1004, 1004, 1004,18872, 1004, 3367,18330,18509,18345,18409,18512,18405,18340,18902, 18409, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 752,18884, 18349,18510,18346, 5191, 750,18349, 748,18895, 747,18885, 18405, 745,18350,18511,18347, 416, 742,18350,18341, 695, 3370, 1004, 1004, 1004, 1004,18346, 1265, 1004, 1004, 1004, 1004, 1004,18967, 1004, 3367,18401,10974,18347,18893, 7593, 18897,18917,10974,18409, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 5192,18886, 715,18894, 696, 5191,18896,18349,18918, 18509,10226,18495,18512, 695,10226, 689, 295, 6950, 675, 18350,10226, 618, 3370, 1004, 1004, 1004, 1004,18510, 1265, 1004, 1004, 1004, 1004, 1004, 7593, 1004, 5195,18345,18496, 18511,18405,18409,18908, 7593,18409, 7593, 3368, 1004, 1004, 1004, 1004, 1004, 1004,18554,18910,18346,18349,18935, 5196, 18349,18903, 403,18509, 6950, 600,18512, 552,18347,18350, 551, 550,18350, 6950, 549, 6950, 3370, 1004, 1004, 1004, 1004,18510, 1265, 1004, 1004, 1004, 1004, 1004,18539, 1004, 5195,18495,18509,18511, 7593,18512,18905,18907,18409,18923, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 5197, 548,18909, 18510,18916, 5196,18349, 547, 546,18345,18906,18496,18405, 545, 544,18511, 6950, 543,18350, 542,18904, 541, 3370, 1004, 1004, 1004, 1004,18346, 1265, 1004, 1004, 1004, 1004, 1004, 7593, 1004, 5195,18509, 539,18347,18512,18345,18345, 18915,18405,18405, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 18406,18930,18510,18912, 538, 5200,18346,18346, 536,18920, 6950, 535,18512, 534,18511, 7593, 533, 532,18347,18347, 531, 530, 3370, 1004, 1004, 1004, 1004,18510, 1265, 1004, 1004, 1004, 1004, 1004,18945, 1004, 5195,18509, 529,18511, 18512,10974,18345,18914, 6950,18405, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 5201,18913,18510, 528, 527, 5200, 526, 18346, 493,10974,18539,18925,18409,18495,18511, 525,18940, 10226, 524,18347, 523, 522, 3370, 1004, 1004, 1004, 1004, 18349, 1265, 1004, 1004, 1004, 1004, 1004,10974, 1004, 5195, 10974,10226,18350,18496,18509,18927, 517,18512, 521, 3368, 1004, 1004, 1004, 1004, 1004, 1004,18921,18919,18409,18924, 18409, 5203,18510, 5204,18509,18345,10226,18512,18405,10226, 520,18409, 519,18349,18511,18349,18922,18936, 5205, 5206, 5206,18582,18510,18346,10974,18350,18349,18350,18554, 5207, 1265,18959, 518,18509,18511,18347,18512, 517,18350, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561,10974,10974, 18931,18510, 416,10226, 516, 494,18934, 493, 480, 450, 1266,18939,18926,18511,18509,18929, 120,18512, 8226, 7593, 403, 401, 240, 237,19007,18928, 358,10226,10226, 4562, 1004, 1004,18510, 1265, 1004, 1004, 1004, 1004, 1004,18941, 1004, 3367,18345,18345,18511,18405,18405,18509, 6950,10974, 18512, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 357, 356, 18346,18346,18946, 5213, 353,18510,18951,18509, 352,18932, 18512, 349,18347,18347, 348, 347, 345,18511,10226, 342, 3370, 1004, 1004, 1004, 1004,18510, 1265, 1004, 1004, 1004, 1004, 1004, 341, 1004, 3367,18509,18938,18511,18512,18409, 18345,18933,18963,18405, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 5214, 321,18510,18349, 340, 5213,18942,18346, 339, 336, 321, 321,18409, 335,18511,18350, 334, 321, 333, 18347,18937, 332, 3370, 1004, 1004, 1004, 1004,18349, 1265, 1004, 1004, 1004, 1004, 1004, 331, 1004, 3367, 326,18345, 18350,18943,18405,18409,18947,10974, 330, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 329, 326,18949,18346,18349, 5218, 325,18944, 324,18509,11774,10974,18512, 323, 321,18347, 18350, 322, 321, 320,10226, 301, 3370, 1004, 1004, 1004, 1004,18510, 1265, 1004, 1004, 1004, 1004, 1004, 275, 1004, 3367, 120,18345,18511,10226,18405,18409, 241,18409,18954, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 5219, 240,18948, 18346,18349, 5218,18349,18955, 203,18952, 202, 198, 197, 182, 181,18347,18350, 180,18350, 120,19007, 118, 3370, 1004, 1004, 1004, 1004, 118, 1265, 1004, 1004, 1004, 1004, 1004, 117, 1004, 3367,18509,18509,18509,18512,18512,18512, 117,18953,18409, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 18958, 116,18510,18510,18510, 5223, 116,18349, 115,18345, 115, 114,18405, 114,18511,18511,18511, 113, 113,18350, 112, 112, 3370, 1004, 1004, 1004, 1004,18346, 1265, 1004, 1004, 1004, 1004, 1004, 111, 1004, 3367,18956,18965,18347, 18409,18405,18345,18970,18964,18405, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 5224,18960,18349,18346, 111, 5223, 110, 18346, 110, 109, 109, 108,18409, 108,18350,18347, 107, 107, 106,18347, 106,18957, 3370, 1004, 1004, 1004, 1004, 18349, 1265, 1004, 1004, 1004, 1004, 1004, 105, 1004, 3367, 18966,18974,18350,18409,18512,18509,18985,18409,18512, 3368, 1004, 1004, 1004, 1004, 1004, 1004,18961,18976,18349,18510, 105, 5227,18349,18510, 104,18509, 104, 103,18512, 103, 18350,18511, 102, 102,18350,18511,18962, 101, 3370, 1004, 1004, 1004, 1004,18510, 1265, 1004, 1004, 1004, 1004, 1004, 101, 1004, 3367,18345, 94,18511,18405,18345,18409, 94, 18405,18409, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 5228, 18968,18346,19007,18349, 5227,18346,18349,19007,19007,19007, 19007,19007,19007,18347,19007,18350,19007,18347,18350,18971, 19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 5229, 1004, 3367,18973,18345,18972,18979, 18405,18345,19007,18409,18405, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 5229,18975,19007,18346,19007, 5231,18349,18346, 19007,19007,19007,19007,19007,19007,19007,18347,19007,19007, 18350,18347,19007,19007, 3370, 1004, 1004, 5229, 5229, 1004, 1004,18406, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,18969,18978,18509,19007,18981,18512,19007,18405,18409, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,18988, 19007,18510, 5233,18346,18349,19007,18982,19007,19007,18409, 19007,19007,19007,18511,19007,18347,18350,19007,19007, 1004, 1004, 1004, 1004, 1004,18349, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,18980,18509,18350,18409,18512,18509, 19007,18991,18512, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 5234,19007,18349,18510,19007, 5233,19007,18510,19007,18509, 19007,19007,18512,19007,18350,18511,19007,19007,19007,18511, 19007,19007, 1004, 1004, 1004, 1004, 1004,18510, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007,18345,18511, 18986,18405,18989,19007,19007,18512, 3368, 1004, 1004, 1004, 1004, 1004, 1004,18554,18994,18983,18346,19007, 5238,19007, 18510,19007,19007,18977,19007,19007,19007,19007,18347,19007, 19007,19007,18511,19007,19007, 3370, 1004, 1004, 1004, 1004, 19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367, 18345,18345,18509,18405,18405,18512,19007,18409,18409, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 5239,18987,18346,18346, 18510, 5238,18349,18349,19007,18345,19007,18984,18405,19007, 18347,18347,18511,19007,18350,18350,19007,19007, 3370, 1004, 1004, 1004, 1004,18346, 1265, 1004, 1004, 1004, 1004, 1004, 19007, 1004, 3367,19007,18997,18347,18990,18345,18509,19003, 18405,18512, 3368, 1004, 1004, 1004, 1004, 1004, 1004,18406, 18993,18995,19007,19007, 5242,18346,18510,19007,18345,19007, 19007,18405,19007,19007,19007,19007,19007,18347,18511,19007, 19007, 3370, 1004, 1004, 1004, 1004,18346, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007,18996,18347,18409, 19007,18509,19007,18998,18512, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 5243,19007,18349,19007,19007, 5242,19007,18510, 19007,18345,19007,19007,18405,19007,18350,18999,19007,19007, 19007,18511,19007,19007, 3370, 1004, 1004, 1004, 1004,18346, 1265, 1004, 1004, 1004, 1004, 1004, 5244, 1004, 3367,19007, 18509,18347,18992,18512,18509,19000,19007,18512, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 5244,19007,19007,18510,19007, 5246,19001,18510,19007,19007,19002,19007,19007,19007,19007, 18511,19007,19007,19007,18511,19007,19007, 3370, 1004, 1004, 5244, 5244, 119, 119,18554, 5249, 119, 119, 119, 119, 119,19007, 119, 119,19004,18345,18509,19007,18405,18512, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,18346,18510, 3387,19007,19007,19007,18509, 19007,19007,18512,19007,19007,18347,18511,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119,18510, 119, 119, 119, 119, 119, 119,19007, 119, 119,18509,19007,18511, 18512,19007,19007,19007,19007,19005, 903, 119, 119, 119, 119, 119, 119,19007,19007,18510,19007,19007, 662,19007, 19007,19007,19007,19006,19007,19007,19007,18511,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5250, 277, 277,19007, 5251, 277, 277, 277, 277, 277, 667, 280, 277, 688, 688, 688, 688, 688, 688, 688, 688, 688, 917, 277, 277, 277, 277, 277, 277, 687, 687, 687, 687, 687, 690, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 119, 119, 19007, 119, 269, 119, 119, 119, 119, 270, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 456,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119,19007,19007,19007,19007,19007, 5252,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 470, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 3979,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007, 19007,19007,19007,19007, 5255,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 5256,19007,19007,19007,19007, 5255,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 5258,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 5259,19007, 19007,19007,19007, 5258,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 5261,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5262,19007, 19007,19007,19007, 2852, 2841, 2841,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5262, 2842, 4605,19007,19007, 19007,19007,19007,19007,19007,19007, 5266, 5266, 5266, 5266, 5266, 5266, 5266, 5266, 5266,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3392,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2852, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 5269,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 5270,19007,19007,19007, 19007, 5269,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 3979,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007, 19007,19007,19007,19007, 5274,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 5275,19007,19007,19007,19007, 5274,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 5278,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 5279,19007, 19007,19007,19007, 5278,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 5281,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5282,19007,19007, 3982, 2841, 2841,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5282, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007, 19007, 5284,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 5285, 19007,19007,19007,19007, 5284,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 5287,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 5288,19007,19007,19007,19007, 5287,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007, 19007,19007,19007, 5290,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5291,19007,19007, 3982, 2841, 2841,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 5291, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 5009,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2195, 119, 119,19007,19007, 19007,19007, 5294, 119, 119,19007, 5295, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 5009,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 2194, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2195, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 5296, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 2194,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2195, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5297, 119, 119, 19007, 656, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 665,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5298, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 665, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5299, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 903, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 662,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5300, 119, 119,19007, 4007, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 3757,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007, 5305, 19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 3757, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2195, 119, 119, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007, 19007,19007, 5315,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 5316,19007,19007,19007,19007, 5315,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 5320,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778, 19007, 778, 778, 778, 778, 778, 778,19007, 778, 778, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007, 19007, 5322,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 5323,19007,19007,19007,19007, 778, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5323, 778, 778,19007, 778, 778, 778, 778, 778, 778, 19007, 778, 4661,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2898, 778, 778, 778, 778, 778, 778, 5324, 19007,19007,19007,19007, 5320,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 5328,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 5329,19007,19007,19007,19007, 5328,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007, 19007,19007,19007, 5332,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 5333,19007,19007,19007,19007, 5332,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 5335, 5336,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2900, 778, 778,19007, 19007,19007,19007,19007,19007,19007, 5336, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007, 5338, 5338, 5338, 5338, 5338, 5338, 5338, 5338, 778, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 5339,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 778, 778, 778, 778, 778, 778, 778,19007,19007, 19007,19007,19007, 5339,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 5341, 5342,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2900, 778, 778,19007,19007,19007,19007, 19007,19007,19007, 5342, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 5347,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 5348,19007,19007,19007,19007, 5347,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007, 19007,19007,19007, 5352,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 5353,19007,19007,19007,19007, 5352,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 5357, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 5358,19007,19007, 19007,19007, 5357,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 19007,19007,19007,19007,19007, 5362,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 5363,19007,19007,19007,19007, 5362,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778, 19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007, 19007, 5366,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5367,19007,19007,19007,19007,19007, 2900, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5367, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007, 19007,19007,19007, 5369,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 5370,19007,19007,19007,19007, 5369,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 5372, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778, 5373,19007,19007, 19007,19007, 5372,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 19007,19007,19007,19007,19007, 5378,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 5379,19007,19007,19007,19007, 5378,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778, 19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007, 19007, 5383,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778, 19007, 778, 2897,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2898, 778, 778, 778, 778, 778, 778, 5384, 19007,19007,19007,19007, 5383,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 5387,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5388,19007, 19007,19007,19007,19007, 2900, 778, 778,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5388, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 5390, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 5391,19007,19007, 19007,19007, 5390,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 5395,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2195, 119, 119, 3756, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 5396,19007,19007,19007,19007, 5395, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2195, 119, 119, 3756, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 4073,19007,19007, 5399,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 3476, 2917, 119, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 119, 119, 119, 119, 119, 119, 119, 3477, 3477, 3477, 3477, 3477, 3478, 3477, 3477, 3477, 3477, 3477, 5400, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3504, 119, 119, 119, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 5402,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3482, 119, 119, 5403, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 5404,19007,19007,19007,19007, 5402,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 5403, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 5405,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 5407,19007,19007,19007,19007, 5405,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 5410, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 4073,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 5415, 5416, 5416, 5416, 5416, 5416, 5416, 5416, 5416, 4092,19007,19007,19007,19007,19007,19007, 5416, 5416, 5416, 5416, 5416, 5417,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 5416, 5416, 5416, 5416, 5416, 5416, 5416, 5416, 5416, 5416, 5416, 5416, 5416, 5416, 5416, 4094,19007, 19007,19007,19007,19007,19007, 5416, 5416, 5416, 5416, 5416, 5417,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5416, 5416, 5416, 5416, 5416, 5416, 5419, 5420, 5420, 5420, 5420, 5420, 5420, 5420, 5420, 5421,19007,19007,19007, 19007,19007,19007, 5420, 5420, 5420, 5420, 5420, 5422,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5420, 5420, 5420, 5420, 5420, 5420, 5424, 5425, 5425, 5425, 5425, 5425, 5425, 5425, 5425,19007,19007,19007,19007,19007,19007, 19007, 5425, 5425, 5425, 5425, 5425, 5426,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3504,19007,19007,19007, 5425, 5425, 5425, 5425, 5425, 5427, 5430, 5431, 5431, 5431, 5431, 5431, 5431, 5431, 5431, 4744,19007,19007,19007,19007,19007,19007, 5431, 5431, 5431, 5431, 5431, 5432,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5431, 5431, 5431, 5431, 5431, 5431, 5433, 5434, 5434, 5434, 5434, 5434, 5434, 5434, 5434, 19007,19007,19007,19007,19007,19007,19007, 5434, 5434, 5434, 5434, 5434, 5435,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 5434, 5434, 5434, 5434, 5434, 5436, 5442, 5443, 5443, 5443, 5443, 5443, 5443, 5443, 5443, 4105,19007, 19007,19007,19007,19007,19007, 5443, 5443, 5443, 5443, 5443, 5444,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5443, 5443, 5443, 5443, 5443, 5443, 5446, 5447, 5447, 5447, 5447, 5447, 5447, 5447, 5447, 5448,19007,19007,19007, 19007,19007,19007, 5447, 5447, 5447, 5447, 5447, 5449,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5447, 5447, 5447, 5447, 5447, 5447, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 5457,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3482, 119, 119, 5458, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 5459,19007,19007, 19007,19007, 5457,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 5458, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 5460,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 5462,19007,19007,19007,19007, 5460, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 5466,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 5467, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 5468,19007,19007,19007,19007, 5466,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3482, 119, 119, 5467, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 5469,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2193, 119, 119, 119, 119, 119, 119, 5471,19007, 19007,19007,19007, 5469,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 5474,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3482, 119, 119, 5475, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 5476,19007,19007,19007,19007, 5474,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 5475, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 5477,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 5480,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3482, 119, 119, 5481, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 5482,19007,19007,19007, 19007, 5480,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 5481, 119, 119,19007, 119, 119, 119, 119, 119, 119, 5483, 2917, 2192,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 5483,19007,19007,19007,19007, 5485,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3482, 119, 119, 5486, 5483, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 5487,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2193, 119, 119, 119, 119, 119, 119, 5488,19007, 19007,19007,19007, 5477,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 5491,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3482, 119, 119, 5492, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 5493,19007,19007,19007,19007, 5491,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 5492, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 5494,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 5497,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3482, 119, 119, 5498, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 5499,19007,19007,19007, 19007, 5497,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 5498, 119, 119,19007, 119, 119, 119, 119, 119, 119, 5500, 2917, 2192,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 5500,19007,19007,19007,19007, 5502,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3482, 119, 119, 5503, 5500, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 5504,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2193, 119, 119, 119, 119, 119, 119, 5505,19007, 19007,19007,19007, 5494,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 5402,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3482, 119, 119, 5403,19007,19007,19007, 19007,19007,19007,19007, 5507, 366,19007,19007,19007,19007, 19007,19007,19007,19007, 5513, 5513, 5513, 5513, 5513, 5513, 5513, 5513, 5513, 4807,19007,19007,19007,19007,19007,19007, 5513, 5513, 5513, 5513, 5513, 5514,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 209,19007,19007,19007, 5513, 5513, 5513, 5513, 5513, 5513, 5515, 5515, 5515, 5515, 5515, 5515, 5515, 5515, 5515,19007,19007,19007,19007,19007,19007,19007, 5515, 5515, 5515, 5515, 5515, 5516,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 209,19007,19007,19007, 5515, 5515, 5515, 5515, 5515, 5515, 2010,19007, 3533, 3533, 3533, 3533, 3533, 3533, 3533, 3533, 3533, 3534,19007,19007,19007,19007,19007,19007, 3533, 3533, 3533, 3533, 3533, 3535,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3533, 3533, 3533, 3533, 3533, 3533, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 2437, 19007,19007,19007,19007,19007,19007, 3530, 3530, 3530, 3530, 3530, 3531,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3530, 3530, 3530, 3530, 3530, 3530, 366,19007, 19007,19007,19007,19007,19007,19007,19007, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 208,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 209, 366,19007,19007,19007, 19007,19007,19007,19007,19007, 4820, 4820, 4820, 4820, 4820, 5522, 4817, 4817, 4817,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 208,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 209, 366,19007,19007,19007,19007,19007, 19007,19007,19007, 4817, 4817, 4817, 4817, 4817, 4817, 4817, 4817, 4817,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 208,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 209, 378,19007,19007,19007,19007,19007,19007,19007, 19007, 5533, 5533, 5533, 5533, 5533, 5533, 5533, 5533, 5533, 4836,19007,19007,19007,19007,19007,19007, 5533, 5533, 5533, 5533, 5533, 5534,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 5533, 5533, 5533, 5533, 5533, 5533,19007, 19007,19007,19007,19007,19007,19007, 221, 5535, 5535, 5535, 5535, 5535, 5535, 5535, 5535, 5535,19007,19007,19007,19007, 19007,19007,19007, 5535, 5535, 5535, 5535, 5535, 5536,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5535, 5535, 5535, 5535, 5535, 5535,19007,19007,19007,19007,19007, 19007,19007, 221, 2035,19007, 3562, 3562, 3562, 3562, 3562, 3562, 3562, 3562, 3562, 3563,19007,19007,19007,19007,19007, 19007, 3562, 3562, 3562, 3562, 3562, 3564,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3562, 3562, 3562, 3562, 3562, 3562, 3559, 3559, 3559, 3559, 3559, 3559, 3559, 3559, 3559, 2469,19007,19007,19007,19007,19007,19007, 3559, 3559, 3559, 3559, 3559, 3560,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3559, 3559, 3559, 3559, 3559, 3559, 378,19007,19007,19007,19007,19007,19007,19007,19007, 4849, 4849, 4849, 4849, 4849, 4849, 4849, 4849, 4849,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 220,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 221, 378,19007,19007,19007, 19007,19007,19007,19007,19007, 4849, 4849, 4849, 4849, 4849, 5542, 4846, 4846, 4846,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 220,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 221, 378,19007,19007,19007,19007,19007,19007,19007,19007, 4846, 4846, 4846, 4846, 4846, 4846, 4846, 4846, 4846,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 220,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 221, 235, 235,19007, 5560, 235, 235, 235, 235, 235,19007, 235, 235,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 235, 235, 235, 235, 235, 235, 235,19007,19007,19007,19007,19007, 3596, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 235, 235, 235, 404, 404,19007, 5567, 404, 404, 404, 404, 404,19007, 404, 404,19007,19007,19007,19007,19007,19007,19007,19007,19007, 404, 404, 404, 404, 404, 404, 404,19007,19007,19007, 19007,19007, 3605,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 404, 404, 404, 1381,19007,19007, 5571,19007,19007,19007, 1382, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 1383,19007, 1384,19007, 1385,19007,19007, 1386,19007,19007,19007,19007, 1387,19007,19007, 1388,19007, 1389,19007, 1390,19007, 1391, 1392, 1393, 2525, 2526,19007, 19007,19007,19007, 1380,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2527,19007, 19007,19007,19007,19007,19007, 2528,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2529, 19007, 2530,19007, 2532,19007,19007, 2533,19007,19007,19007, 19007, 2535,19007,19007, 2536,19007, 2537,19007, 2538,19007, 2539, 2540, 2541, 1381,19007,19007,19007,19007,19007,19007, 1382,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 1702,19007, 1384,19007, 1385,19007, 19007, 1386, 5572,19007,19007,19007, 1387,19007,19007, 1388, 19007, 1389,19007, 1390,19007, 1391, 1392, 1393, 1703, 2525, 2526,19007,19007,19007,19007, 1380,19007,19007, 5574,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2527,19007,19007,19007,19007,19007,19007, 2528,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2529,19007, 2530,19007, 2532,19007,19007, 2533,19007, 19007,19007,19007, 2535,19007,19007, 2536,19007, 2537,19007, 2538,19007, 2539, 2540, 2541, 1381,19007,19007,19007,19007, 19007,19007, 1382,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 1383,19007, 1384,19007, 3032,19007,19007, 1386,19007,19007,19007,19007, 1387,19007, 19007, 1388,19007, 1389,19007, 1390,19007, 1391, 1392, 1393, 5586, 3614,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 1381,19007,19007,19007,19007,19007,19007, 1382,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 1383,19007, 1384,19007, 1385,19007, 19007, 1386,19007,19007,19007,19007, 1387,19007,19007, 1388, 19007, 1389,19007, 1390,19007, 1391, 1392, 1393, 1381,19007, 19007,19007,19007,19007,19007, 1382,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1383, 19007, 1384,19007, 1385,19007, 4899, 1386,19007,19007,19007, 19007, 1387,19007,19007, 1388,19007, 1389,19007, 1390,19007, 1391, 1392, 1393, 5586,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 1381,19007,19007,19007, 19007,19007,19007, 1382,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 1383,19007, 1384, 19007, 1385,19007,19007, 1386,19007,19007,19007,19007, 1387, 19007,19007, 1388,19007, 1389,19007, 1390,19007, 1391, 1392, 1393, 1381,19007,19007,19007,19007,19007,19007, 1382,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 1383,19007, 1384,19007, 1385,19007,19007, 1386, 19007,19007,19007,19007, 1387,19007,19007, 5587,19007, 1389, 19007, 1390,19007, 1391, 1392, 1393, 1713,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 1714,19007, 19007,19007,19007,19007,19007, 1715,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1716, 19007, 1717,19007, 1718,19007,19007, 1719, 5588,19007,19007, 19007, 1720,19007,19007, 1721,19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 1713,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 1714, 5589,19007,19007,19007, 19007,19007, 1715,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 1716,19007, 1717,19007, 1718,19007,19007, 1719,19007,19007,19007,19007, 1720,19007, 19007, 1721,19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 2525, 3071,19007,19007,19007,19007, 1712,19007,19007, 3072, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3073,19007,19007,19007,19007,19007,19007, 3074,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3075,19007, 3076,19007, 3078,19007,19007, 3079, 19007,19007,19007,19007, 3081,19007,19007, 3082,19007, 3083, 19007, 3084,19007, 3085, 3086, 3087, 2525, 3071,19007,19007, 19007,19007, 1712,19007,19007, 5590,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3073,19007,19007, 19007,19007,19007,19007, 3074,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3075,19007, 3076,19007, 3078,19007,19007, 3079,19007,19007,19007,19007, 3081,19007,19007, 3082,19007, 3083,19007, 3084,19007, 3085, 3086, 3087, 1713,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 1714,19007,19007,19007,19007,19007, 19007, 1715,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 1716,19007, 1717,19007, 1718, 19007,19007, 1719,19007,19007,19007,19007, 5591,19007,19007, 1721,19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 1713, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 1714,19007,19007,19007,19007,19007,19007, 1715,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 1716, 5608, 1717,19007, 1718,19007,19007, 1719, 19007,19007,19007,19007, 1720,19007,19007, 1721,19007, 1722, 19007, 1723,19007, 1724, 1725, 1726, 1713,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 1714,19007, 19007,19007,19007,19007,19007, 1715,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1716, 19007, 1717,19007, 1718,19007,19007, 1719,19007,19007,19007, 19007, 1720, 5609,19007, 1721,19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 1713,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 1714,19007,19007,19007,19007, 19007,19007, 1715,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 1716,19007, 1717,19007, 1718,19007,19007, 1719, 5610,19007,19007,19007, 1720,19007, 19007, 1721,19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 1713,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 1714,19007,19007,19007,19007,19007,19007, 1715, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 1716,19007, 1717,19007, 1718,19007,19007, 1719,19007,19007,19007,19007, 1720, 5611,19007, 1721,19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 1713,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1714, 19007,19007,19007,19007,19007,19007, 1715,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1716,19007, 1717,19007, 1718,19007,19007, 1719,19007,19007, 19007,19007, 1720,19007,19007, 1721,19007, 1722,19007, 1723, 5612, 1724, 1725, 1726, 5616, 5616, 5616, 5616, 5616, 5616, 5616, 5616, 5616, 4935,19007,19007,19007,19007,19007,19007, 5616, 5616, 5616, 5616, 5616, 5617,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5616, 5616, 5616, 5616, 5616, 5616, 4937, 4937, 4937, 4937, 4937, 4937, 4937, 4937, 4937, 5618,19007,19007,19007,19007,19007,19007, 4937, 4937, 4937, 4937, 4937, 4938,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 4937, 4937, 4937, 4937, 4937, 4937, 5620, 5620, 5620, 5620, 5620, 5620, 5620, 5620, 5620,19007, 19007,19007,19007,19007,19007, 264, 5620, 5620, 5620, 5620, 5620, 5621,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5620, 5620, 5620, 5620, 5620, 5620, 5623, 5623, 5623, 5623, 5623, 5623, 5623, 5623, 5623, 4273,19007,19007, 19007,19007,19007,19007, 5623, 5623, 5623, 5623, 5623, 5624, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5623, 5623, 5623, 5623, 5623, 5623, 5626, 5626, 5626, 5626, 5626, 5626, 5626, 5626, 5626,19007,19007,19007,19007,19007, 19007,19007, 5626, 5626, 5626, 5626, 5626, 5627,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5626, 5626, 5626, 5626, 5626, 5626, 5630, 5630, 5630, 5630, 5630, 5630, 5630, 5630, 5630, 4282,19007,19007,19007,19007,19007,19007, 5630, 5630, 5630, 5630, 5630, 5631,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5630, 5630, 5630, 5630, 5630, 5630, 5633, 5633, 5633, 5633, 5633, 5633, 5633, 5633, 5633,19007,19007,19007,19007,19007,19007,19007, 5633, 5633, 5633, 5633, 5633, 5634,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 5633, 5633, 5633, 5633, 5633, 5633, 5636, 5637, 5638, 5639, 5639, 5639, 5639, 5639, 5639,19007, 19007,19007,19007,19007,19007,19007, 3691, 3691, 3691, 3691, 3691, 3692,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3691, 3691, 3691, 3691, 3691, 3691, 5640, 5640, 5640, 5640, 5640, 5640, 5640, 5640, 5640, 4291,19007,19007, 19007,19007,19007,19007, 5640, 5640, 5640, 5640, 5640, 5641, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5640, 5640, 5640, 5640, 5640, 5640, 5643, 5643, 5643, 5643, 5643, 5643, 5643, 5643, 5643,19007,19007,19007,19007,19007, 19007,19007, 5643, 5643, 5643, 5643, 5643, 5644,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5643, 5643, 5643, 5643, 5643, 5643, 5646, 5647, 5648, 5649, 5649, 5649, 5649, 5649, 5649,19007,19007,19007,19007,19007,19007,19007, 3698, 3698, 3698, 3698, 3698, 3699,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3698, 3698, 3698, 3698, 3698, 3698, 2168,19007, 5650, 5650, 5650, 5650, 5650, 5650, 5650, 5650, 5650, 3119,19007,19007,19007,19007,19007,19007, 3696, 3696, 3696, 3696, 3696, 3697,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3696, 3696, 3696, 3696, 3696, 3696, 5651, 5651, 5651, 5651, 5651, 5651, 5651, 5651, 5651, 4304,19007,19007,19007,19007,19007,19007, 5651, 5651, 5651, 5651, 5651, 5652,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 5651, 5651, 5651, 5651, 5651, 5651, 5654, 5654, 5654, 5654, 5654, 5654, 5654, 5654, 5654,19007, 19007,19007,19007,19007,19007,19007, 5654, 5654, 5654, 5654, 5654, 5655,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5654, 5654, 5654, 5654, 5654, 5654, 5657, 5658, 5659, 5660, 5660, 5660, 5660, 5660, 5660,19007,19007,19007, 19007,19007,19007,19007, 3706, 3706, 3706, 3706, 3706, 3707, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3706, 3706, 3706, 3706, 3706, 3706, 5661, 5661, 5661, 5661, 5661, 5661, 5661, 5661, 5661, 3131,19007,19007,19007,19007, 19007,19007, 3704, 3704, 3704, 3704, 3704, 3705,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3704, 3704, 3704, 3704, 3704, 3704, 5662, 5662, 5662, 5662, 5662, 5662, 5662, 5662, 5662, 4318,19007,19007,19007,19007,19007,19007, 5662, 5662, 5662, 5662, 5662, 5663,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5662, 5662, 5662, 5662, 5662, 5662, 5665, 5665, 5665, 5665, 5665, 5665, 5665, 5665, 5665,19007,19007,19007,19007,19007,19007,19007, 5665, 5665, 5665, 5665, 5665, 5666,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 5665, 5665, 5665, 5665, 5665, 5665, 5668, 5669, 5670, 5671, 5671, 5671, 5671, 5671, 5671,19007, 19007,19007,19007,19007,19007,19007, 3717, 3717, 3717, 3717, 3717, 3718,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3717, 3717, 3717, 3717, 3717, 3717, 5672, 5672, 5672, 5672, 5672, 5672, 5672, 5672, 5672, 3147,19007,19007, 19007,19007,19007,19007, 3715, 3715, 3715, 3715, 3715, 3716, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3715, 3715, 3715, 3715, 3715, 3715, 5673, 5673, 5673, 5673, 5673, 5673, 5673, 5673, 5673, 4984,19007,19007,19007,19007, 19007,19007, 5673, 5673, 5673, 5673, 5673, 5674,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5673, 5673, 5673, 5673, 5673, 5673, 5675, 5675, 5675, 5675, 5675, 5675, 5675, 5675, 5675,19007,19007,19007,19007,19007,19007,19007, 5675, 5675, 5675, 5675, 5675, 5676,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5675, 5675, 5675, 5675, 5675, 5675, 3730, 3730, 3730, 3730, 3730, 3730, 3730, 3730, 3730, 3731,19007,19007,19007,19007,19007,19007, 3730, 3730, 3730, 3730, 3730, 3732,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3730, 3730, 3730, 3730, 3730, 3730, 3727, 3727, 3727, 3727, 3727, 3727, 3727, 3727, 3727, 2627, 19007,19007,19007,19007,19007,19007, 3727, 3727, 3727, 3727, 3727, 3728,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3727, 3727, 3727, 3727, 3727, 3727, 119, 119, 19007, 119, 119, 119, 119, 119, 119, 124, 249, 119, 124, 124, 124, 124, 124, 124, 124, 124, 124, 119, 119, 119, 119, 119, 119, 264, 417, 417, 417, 417, 417, 418, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 119, 119, 119, 119, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 5684, 5691,19007,19007, 19007,19007,19007,19007,19007,19007, 5692, 5692, 5692, 5692, 5692, 5692, 5692, 5692, 5692,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 120,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5691, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 5695,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 5696,19007,19007,19007,19007, 5695,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 5700,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2193, 119, 119, 119, 119, 119, 119, 5701,19007, 19007,19007,19007, 5700,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 5704,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 5705,19007,19007,19007,19007, 5704, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 5708,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 5709,19007,19007,19007,19007, 5708,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 5711,19007, 5712,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5713, 5714, 5714,19007,19007, 19007,19007,19007,19007,19007,19007, 5715, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 5718,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2193, 119, 119, 119, 119, 119, 119, 5719,19007, 19007,19007,19007, 5718,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 5723,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 5724,19007,19007,19007,19007, 5723, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 5728,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 5729,19007,19007,19007,19007, 5728,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 5732,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 5733,19007,19007,19007, 19007, 5732,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 5734, 119, 3761,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119, 5734, 19007,19007,19007,19007, 5736,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2195, 119, 119, 5734, 5734, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 5738, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 5739,19007,19007, 19007,19007, 5738,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 5743,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 5744,19007,19007,19007,19007, 5743,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 5747,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 3761,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119, 5748, 19007,19007,19007,19007, 5747,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 5749, 119, 3761,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 5749,19007,19007,19007,19007, 5751,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2195, 119, 119, 5749, 5749, 2192, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 2193, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 120,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2195,19007, 3204, 277, 277,19007, 287, 277, 277, 277, 277, 277, 667, 280, 277, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 917, 277, 277, 277, 277, 277, 277, 5755, 5755, 5755, 5755, 5755, 5756, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669, 5754, 5754, 5754, 5754, 5754, 5754, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 278,19007,19007,19007,19007,19007,19007,19007,19007, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 5755,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5755, 5755, 5755, 5755, 5755, 5755, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 5759, 5759, 5759, 5759, 5759, 5759, 5759, 5759, 5759, 4438,19007,19007,19007,19007, 19007,19007, 5759, 5759, 5759, 5759, 5759, 5760,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5759, 5759, 5759, 5759, 5759, 5759, 313,19007,19007,19007,19007,19007, 19007,19007,19007, 5762, 5762, 5762, 5762, 5762, 5762, 5762, 5762, 5762,19007,19007,19007,19007,19007,19007,19007, 5762, 5762, 5762, 5762, 5762, 5763,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5762, 5762, 5762, 5762, 5762, 5762, 5765, 5765, 5765, 5765, 5765, 5765, 5765, 5765, 5765, 19007,19007,19007,19007,19007,19007,19007, 5765, 5765, 5765, 5765, 5765, 5766,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 5765, 5765, 5765, 5765, 5765, 5765, 5768, 5769, 5770, 5771, 5771, 5771, 5771, 5771, 5771, 3821,19007, 19007,19007,19007,19007,19007, 3820, 3820, 3820, 3820, 3820, 3822,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3820, 3820, 3820, 3820, 3820, 3820, 5772, 5772, 5772, 5772, 5772, 5772, 5772, 5772, 5772,19007,19007,19007,19007, 19007,19007,19007, 5772, 5772, 5772, 5772, 5772, 5773,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5772, 5772, 5772, 5772, 5772, 5772, 1904,19007, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3834,19007,19007,19007, 19007,19007,19007, 3833, 3833, 3833, 3833, 3833, 3835,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3833, 3833, 3833, 3833, 3833, 3833, 5778, 5778, 5778, 5778, 5778, 5778, 5778, 5778, 5778,19007,19007,19007,19007,19007,19007, 19007, 5778, 5778, 5778, 5778, 5778, 5779,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5778, 5778, 5778, 5778, 5778, 5778, 3842, 3842, 3842, 3842, 3842, 3842, 3842, 3842, 3842, 3843,19007,19007,19007,19007,19007,19007, 3842, 3842, 3842, 3842, 3842, 3844,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3842, 3842, 3842, 3842, 3842, 3842, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 2710,19007,19007,19007,19007,19007,19007, 3839, 3839, 3839, 3839, 3839, 3840,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3839, 3839, 3839, 3839, 3839, 3839, 5784, 5784, 5784, 5784, 5784, 5784, 5784, 5784, 5784,19007,19007, 19007,19007,19007,19007,19007, 5784, 5784, 5784, 5784, 5784, 5785,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5784, 5784, 5784, 5784, 5784, 5784, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3856,19007,19007,19007, 19007,19007,19007, 3855, 3855, 3855, 3855, 3855, 3857,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3855, 3855, 3855, 3855, 3855, 3855, 3852, 3852, 3852, 3852, 3852, 3852, 3852, 3852, 3852, 2722,19007,19007,19007,19007,19007, 19007, 3852, 3852, 3852, 3852, 3852, 3853,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3852, 3852, 3852, 3852, 3852, 3852, 5790, 5790, 5790, 5790, 5790, 5790, 5790, 5790, 5790,19007,19007,19007,19007,19007,19007,19007, 5790, 5790, 5790, 5790, 5790, 5791,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5790, 5790, 5790, 5790, 5790, 5790, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3870,19007,19007,19007,19007,19007,19007, 3869, 3869, 3869, 3869, 3869, 3871,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3869, 3869, 3869, 3869, 3869, 3869, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 2738,19007, 19007,19007,19007,19007,19007, 3866, 3866, 3866, 3866, 3866, 3867,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3866, 3866, 3866, 3866, 3866, 3866, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 2194,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5796, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119, 5797, 5797, 5797, 5797, 5797, 5797, 5797, 5797, 5797, 903, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 665,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 277, 277,19007, 278, 277, 277, 277, 277, 277, 667, 280, 277, 5800, 5800, 5800, 5800, 5800, 5800, 5800, 5800, 5800, 906, 277, 277, 277, 277, 277, 277, 667, 667, 667, 667, 667, 668, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 277, 277, 277, 669, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 119, 119,19007, 1171, 119, 119, 119, 119, 119, 119, 119, 119, 5801, 5801, 5801, 5801, 5801, 5801, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 454,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 5802, 5802, 5802, 5802, 5802, 5802,19007,19007,19007, 5127, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 662, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 5806, 5806, 5806, 5806, 5806, 5806, 5806, 5806, 5806, 4495,19007, 19007,19007,19007,19007,19007, 5806, 5806, 5806, 5806, 5806, 5807,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5806, 5806, 5806, 5806, 5806, 5806, 5809, 5809, 5809, 5809, 5809, 5809, 5809, 5809, 5809,19007,19007,19007,19007, 19007,19007,19007, 5809, 5809, 5809, 5809, 5809, 5810,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5809, 5809, 5809, 5809, 5809, 5809, 5812, 5813, 5814, 5815, 5815, 5815, 5815, 5815, 5815,19007,19007,19007,19007,19007,19007, 19007, 3890, 3890, 3890, 3890, 3890, 3891,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3890, 3890, 3890, 3890, 3890, 3890, 5816, 5816, 5816, 5816, 5816, 5816, 5816, 5816, 5816, 3297,19007,19007,19007,19007,19007,19007, 3888, 3888, 3888, 3888, 3888, 3889,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3888, 3888, 3888, 3888, 3888, 3888, 5817, 5817, 5817, 5817, 5817, 5817, 5817, 5817, 5817, 19007,19007,19007,19007,19007,19007,19007, 5817, 5817, 5817, 5817, 5817, 5818,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 5817, 5817, 5817, 5817, 5817, 5817, 119, 119,19007, 5820, 119, 119, 119, 119, 119, 5821, 119, 119, 5822, 5823, 5824, 5825, 5825, 5825, 5825, 5825, 5825, 5826, 119, 5827, 119, 119, 119, 119, 5828, 5828, 5828, 5828, 5828, 5829, 5830, 5830, 5830, 5830, 5830, 5830, 5830, 5830, 5830, 5830, 5830, 5830, 5830, 5830, 5830, 5830, 5831, 119, 119, 119, 5828, 5828, 5828, 5828, 5828, 5828, 5830, 5830, 5830, 5830, 5830, 5832, 5830, 5830, 5830, 5830, 5830, 5830, 5830, 5830, 5830, 5830, 5830, 5830, 5830, 119, 119, 19007, 656, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 665,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119,19007,19007,19007,19007,19007, 5834, 1557, 1557, 1558, 5843, 1557, 1557, 1557, 1557, 1557,19007, 1557, 1557,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2313, 1557, 1557, 1557, 1557, 1557, 1557,19007,19007,19007,19007,19007, 1927,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 1557, 1557, 1557, 5161,19007,19007,19007,19007,19007,19007,19007, 5847, 5848, 5848, 5848, 5848, 5848, 5848, 5848, 5848, 5848,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 4527, 5161,19007,19007,19007,19007,19007,19007,19007, 5847, 5849, 5849, 5849, 5849, 5849, 5849, 5849, 5849, 5849,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 4527, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 19007,19007,19007,19007,19007, 5866,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 5867,19007,19007,19007,19007, 5866,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004, 19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007, 19007, 5871,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007, 19007,19007,19007,19007, 5873,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5874,19007,19007,19007, 19007, 1004, 1004, 1004,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 5874, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 5875,19007,19007,19007,19007, 5871,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 5879,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 5880,19007, 19007,19007,19007, 5879,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 5883,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 5884,19007,19007,19007,19007, 5883, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007, 19007,19007, 5886, 5887,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004,19007,19007,19007,19007,19007,19007,19007, 5887, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007, 5889, 5889, 5889, 5889, 5889, 5889, 5889, 5889, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007, 19007,19007,19007, 5890,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 5890,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 1004, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 5892, 5893,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3370, 1004, 1004,19007, 19007,19007,19007,19007,19007,19007, 5893, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 5898,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 5899,19007, 19007,19007,19007, 5898,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 5903,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 5904,19007,19007,19007,19007, 5903, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007, 19007,19007, 5908,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 5909,19007,19007,19007,19007, 5908,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 5913,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004, 19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 5914,19007,19007,19007, 19007, 5913,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 19007, 1004, 3367,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007, 19007,19007,19007,19007, 5917,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5918,19007,19007,19007,19007, 19007, 3370, 1004, 1004,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5918, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 5920,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 5921,19007,19007,19007,19007, 5920, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007, 19007,19007, 5923,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 5924,19007,19007,19007,19007, 5923,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 1004, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 5929,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004, 19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 5930,19007,19007,19007, 19007, 5929,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 19007, 1004, 3367,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007, 19007,19007,19007,19007, 5934,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 5935,19007,19007,19007,19007, 5934,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 5938,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5939,19007,19007,19007,19007,19007, 3370, 1004, 1004, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5939, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007, 19007,19007, 5941,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 5942,19007,19007,19007,19007, 5941,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3370, 1004, 1004, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5947, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 5948,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007, 19007, 5949, 119, 119,19007, 119, 269, 119, 119, 119, 119, 270, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 456,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 5950,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 470, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 665,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119,19007, 5951, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007, 19007,19007,19007, 5953,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 5954,19007,19007,19007,19007, 5953,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 5958, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 5959,19007,19007, 19007,19007, 5958,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 19007,19007,19007,19007,19007, 5962,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 5963,19007,19007,19007,19007, 5962,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007, 19007, 5965,19007, 5966,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5967, 5968, 5968,19007,19007,19007,19007,19007,19007,19007,19007, 5969, 2842, 5972,19007,19007,19007,19007,19007,19007,19007,19007, 5973, 5973, 5973, 5973, 5973, 5973, 5973, 5973, 5973,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3392,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2852, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007, 19007,19007, 5976,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 5977,19007,19007,19007,19007, 5976,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 5981,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 5982,19007,19007,19007, 19007, 5981,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 3979,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007, 19007,19007,19007,19007, 5986,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 5987,19007,19007,19007,19007, 5986,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 5990,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 5991,19007, 19007,19007,19007, 5990,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 5992, 2841, 3979,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 5992,19007,19007,19007,19007, 5994,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3982, 2841, 2841, 5992, 5992, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007, 19007, 5996,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 5997, 19007,19007,19007,19007, 5996,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 6000,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 6001,19007,19007,19007,19007, 6000,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007, 19007,19007,19007, 6004,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 6005,19007,19007,19007,19007, 6004,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 6006, 2841, 3979,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 6006,19007,19007,19007,19007, 6008, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 6006, 6006, 119, 119,19007, 6011, 119, 119, 119, 119, 119, 19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 5695,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 2659,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2195, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 6013, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 2659, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2195, 119, 119,19007, 19007,19007, 6014, 119, 119,19007, 6015, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 665,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 665, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 6016, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 662,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 6017, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007, 19007,19007,19007, 6021, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 4352,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2195, 119, 119, 119, 119,19007, 5307, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 4352, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2195, 119, 119, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007, 19007,19007, 6031,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 6032,19007,19007,19007,19007, 6031,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 6036,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778, 19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 6037,19007,19007,19007, 19007, 6036,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778, 19007, 778, 778,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 778, 778, 778, 778, 778, 778, 778,19007, 19007,19007,19007,19007, 6039,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778, 6040,19007,19007,19007,19007, 6039,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 6042,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 6043,19007,19007,19007,19007, 778, 778, 778, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 6043, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007, 19007,19007,19007, 6047,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 6048,19007,19007,19007,19007, 6047,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 6052, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 6053,19007,19007, 19007,19007, 6052,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 19007,19007,19007,19007,19007, 6056,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 6057,19007,19007,19007,19007, 6056,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778, 19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007, 19007, 6059,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 6060,19007,19007, 2900, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 6060, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 6062,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778, 6063, 6063, 6063, 6063, 6063, 6063, 6063, 6063, 6063, 778, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 6062, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 778, 778, 4040, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007, 19007,19007, 6066,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 6067,19007,19007,19007,19007, 6066,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 6069,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 6070,19007,19007, 2900, 778, 778,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 6070, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007, 19007,19007,19007, 6074,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 6075,19007,19007,19007,19007, 6074,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 6079, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778, 6080,19007,19007, 19007,19007, 6079,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 6088,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2195, 119, 119, 4351, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6089,19007,19007,19007,19007, 6088, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2195, 119, 119, 4351, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 4073,19007,19007,19007,19007,19007, 6092, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 857, 119, 119, 119, 119, 119, 3476, 2917, 119, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 119, 119, 119, 119, 119, 119, 119, 3477, 3477, 3477, 3477, 3477, 3478, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3504, 119, 119, 119, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6094,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3482, 119, 119, 6095, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6096,19007,19007,19007,19007, 6094,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 6095, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 6097,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6099,19007,19007,19007,19007, 6097,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3482, 119, 119, 119,19007,19007, 19007,19007,19007,19007, 119,19007, 6103, 6104, 6105, 6106, 6106, 6106, 6106, 6106, 6106,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 5410, 119, 4729, 4729, 4729, 4729, 4729, 4729, 4729, 4729, 4729, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 4073,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 6107, 6108, 6108, 6108, 6108, 6108, 6108, 6108, 6108, 5421,19007, 19007,19007,19007,19007,19007, 6108, 6108, 6108, 6108, 6108, 6109,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 6108, 6108, 6108, 6108, 6108, 6108, 6110, 6111, 6111, 6111, 6111, 6111, 6111, 6111, 6111, 6112,19007,19007,19007, 19007,19007,19007, 6111, 6111, 6111, 6111, 6111, 6113,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 6111, 6111, 6111, 6111, 6111, 6111, 6116, 6117, 6117, 6117, 6117, 6117, 6117, 6117, 6117, 6118,19007,19007,19007,19007,19007, 19007, 6117, 6117, 6117, 6117, 6117, 6119,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3504,19007,19007,19007, 6117, 6117, 6117, 6117, 6117, 6117, 6124, 6125, 6125, 6125, 6125, 6125, 6125, 6125, 6125, 4744,19007,19007,19007,19007,19007,19007, 6125, 6125, 6125, 6125, 6125, 6126,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 6125, 6125, 6125, 6125, 6125, 6125, 6128, 6129, 6129, 6129, 6129, 6129, 6129, 6129, 6129, 6130,19007,19007,19007,19007,19007,19007, 6129, 6129, 6129, 6129, 6129, 6131,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 6129, 6129, 6129, 6129, 6129, 6129, 6138, 6139, 6139, 6139, 6139, 6139, 6139, 6139, 6139, 5448,19007, 19007,19007,19007,19007,19007, 6139, 6139, 6139, 6139, 6139, 6140,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 6139, 6139, 6139, 6139, 6139, 6139, 6141, 6142, 6142, 6142, 6142, 6142, 6142, 6142, 6142,19007,19007,19007,19007, 19007,19007,19007, 6142, 6142, 6142, 6142, 6142, 6143,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 6142, 6142, 6142, 6142, 6142, 6144, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6151,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3482, 119, 119, 6152, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6153,19007,19007, 19007,19007, 6151,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 6152, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6154,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6156,19007,19007,19007,19007, 6154, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 6161,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 6162, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6163,19007,19007,19007,19007, 6161,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3482, 119, 119, 6162, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6164,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2193, 119, 119, 119, 119, 119, 119, 6166,19007, 19007,19007,19007, 6164,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6170,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3482, 119, 119, 6171, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6172,19007,19007,19007,19007, 6170,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 6171, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 6173,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6175,19007,19007,19007,19007, 6173,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6178,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 6179, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 2917, 2192,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6180, 19007,19007,19007,19007, 6178,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3482, 119, 119, 6179, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6181,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3482, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 6184,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 6185,19007,19007,19007,19007,19007, 3482, 119, 119, 6186,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 6185, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 6188,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 6189, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6190,19007,19007,19007,19007, 6188,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3482, 119, 119, 6189, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 6191,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 6192,19007,19007,19007,19007,19007, 3482, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 6192, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2193, 119, 119, 119, 119, 119, 119, 6193,19007, 19007,19007,19007, 6181,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6197,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3482, 119, 119, 6198, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6199,19007,19007,19007,19007, 6197,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 6198, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 6200,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6202,19007,19007,19007,19007, 6200,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6205,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 6206, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 2917, 2192,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6207, 19007,19007,19007,19007, 6205,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3482, 119, 119, 6206, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6208,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3482, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 6211,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 6212,19007,19007,19007,19007,19007, 3482, 119, 119, 6213,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 6212, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 6215,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 6216, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6217,19007,19007,19007,19007, 6215,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3482, 119, 119, 6216, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 6218,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 6219,19007,19007,19007,19007,19007, 3482, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 6219, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2193, 119, 119, 119, 119, 119, 119, 6220,19007, 19007,19007,19007, 6208,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 119, 119,19007, 857, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6154,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6094, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3482, 119, 119, 6095, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 6222, 366,19007,19007,19007,19007, 19007,19007,19007,19007, 6228, 6228, 6228, 6228, 6228, 6228, 6228, 6228, 6228, 4807,19007,19007,19007,19007,19007,19007, 6228, 6228, 6228, 6228, 6228, 6229,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 209,19007,19007,19007, 6228, 6228, 6228, 6228, 6228, 6228, 6231, 6231, 6231, 6231, 6231, 6231, 6231, 6231, 6231, 206,19007,19007,19007,19007,19007,19007, 6231, 6231, 6231, 6231, 6231, 6232,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 6231, 6231, 6231, 6231, 6231, 6231, 206,19007,19007,19007,19007,19007,19007,19007,19007, 6234, 6235, 6236, 6237, 6237, 6237, 6237, 6237, 6237,19007,19007, 19007,19007,19007,19007,19007, 4141, 4141, 4141, 4141, 4141, 4142,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 4141, 4141, 4141, 4141, 4141, 4141, 2010,19007, 6238, 6238, 6238, 6238, 6238, 6238, 6238, 6238, 6238, 3534,19007, 19007,19007,19007,19007,19007, 4139, 4139, 4139, 4139, 4139, 4140,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 4139, 4139, 4139, 4139, 4139, 4139, 378,19007,19007, 19007,19007,19007,19007,19007,19007, 6249, 6249, 6249, 6249, 6249, 6249, 6249, 6249, 6249, 4836,19007,19007,19007,19007, 19007,19007, 6249, 6249, 6249, 6249, 6249, 6250,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 6249, 6249, 6249, 6249, 6249, 6249,19007,19007,19007,19007,19007,19007, 19007, 221, 6252, 6252, 6252, 6252, 6252, 6252, 6252, 6252, 6252, 218,19007,19007,19007,19007,19007,19007, 6252, 6252, 6252, 6252, 6252, 6253,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 6252, 6252, 6252, 6252, 6252, 6252, 218,19007,19007,19007,19007,19007,19007,19007,19007, 6255, 6256, 6257, 6258, 6258, 6258, 6258, 6258, 6258,19007,19007, 19007,19007,19007,19007,19007, 4162, 4162, 4162, 4162, 4162, 4163,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 4162, 4162, 4162, 4162, 4162, 4162, 2035,19007, 6259, 6259, 6259, 6259, 6259, 6259, 6259, 6259, 6259, 3563,19007, 19007,19007,19007,19007,19007, 4160, 4160, 4160, 4160, 4160, 4161,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 4160, 4160, 4160, 4160, 4160, 4160, 1381,19007,19007, 19007,19007,19007,19007, 1382, 6285,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 1383,19007, 1384,19007, 1385,19007,19007, 1386,19007,19007,19007,19007, 1387,19007,19007, 1388,19007, 1389,19007, 1390,19007, 1391, 1392, 1393, 1381,19007,19007,19007,19007,19007,19007, 1382, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 1383,19007, 1384,19007, 1385,19007,19007, 1386,19007,19007,19007,19007, 1387, 6286,19007, 1388,19007, 1389,19007, 1390,19007, 1391, 1392, 1393, 2525, 2526,19007, 19007,19007,19007, 1380,19007,19007,19007, 6288, 6288, 6288, 6288, 6288, 6288, 6288, 6288, 6288,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2527,19007, 19007,19007,19007,19007,19007, 2528,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2529, 19007, 2530,19007, 2532,19007,19007, 2533,19007,19007,19007, 19007, 2535,19007,19007, 2536,19007, 2537,19007, 2538,19007, 2539, 2540, 2541, 2525, 2526,19007,19007,19007,19007, 1380, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2527,19007,19007,19007,19007,19007, 19007, 2528,19007, 6289,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2529,19007, 2530,19007, 2532, 19007,19007, 2533,19007,19007,19007,19007, 2535,19007,19007, 2536,19007, 2537,19007, 2538,19007, 2539, 2540, 2541, 1381, 19007,19007,19007,19007,19007,19007, 1382,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1383,19007, 1384,19007, 1385,19007,19007, 1386,19007,19007, 19007,19007, 1387,19007,19007, 6299,19007, 1389,19007, 1390, 19007, 1391, 1392, 1393, 5586,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 1381,19007,19007, 19007,19007,19007,19007, 1382,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 1383,19007, 1384,19007, 1385,19007,19007, 1704,19007,19007,19007,19007, 1705,19007,19007, 1388,19007, 1389,19007, 1390,19007, 1391, 1392, 1393, 1713,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 1714,19007,19007,19007,19007,19007, 19007, 1715,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 1716,19007, 1717,19007, 1718, 19007,19007, 1719,19007,19007,19007,19007, 1720, 6300,19007, 1721,19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 1713, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 1714,19007,19007, 6301,19007,19007,19007, 1715,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 1716,19007, 1717,19007, 1718,19007,19007, 1719, 19007,19007,19007,19007, 1720,19007,19007, 1721,19007, 1722, 19007, 1723,19007, 1724, 1725, 1726, 2525, 3071,19007,19007, 19007,19007, 1712,19007,19007, 3072,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3073,19007,19007, 19007,19007,19007,19007, 3074,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3075,19007, 3076,19007, 3078,19007,19007, 3079,19007,19007,19007,19007, 3081,19007,19007, 3082,19007, 3083,19007, 3084,19007, 3085, 3649, 3087, 1713,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 1714,19007,19007,19007,19007,19007, 19007, 1715,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2094,19007, 1717,19007, 1718, 19007,19007, 1719, 6302,19007,19007,19007, 1720,19007,19007, 1721,19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 2095, 2525, 3071,19007,19007,19007,19007, 1712,19007,19007, 6303, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3073,19007,19007,19007,19007,19007,19007, 3074,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3075,19007, 3076,19007, 3078,19007,19007, 3079, 19007,19007,19007,19007, 3081,19007,19007, 3082,19007, 3083, 19007, 3084,19007, 3085, 3086, 3087, 6321, 6321, 6321, 6321, 6321, 6321, 6321, 6321, 6321, 4935,19007,19007,19007,19007, 19007,19007, 6321, 6321, 6321, 6321, 6321, 6322,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 6321, 6321, 6321, 6321, 6321, 6321, 6324, 6324, 6324, 6324, 6324, 6324, 6324, 6324, 6324,19007,19007,19007,19007,19007,19007, 264, 6324, 6324, 6324, 6324, 6324, 6325,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 6324, 6324, 6324, 6324, 6324, 6324, 6327, 6327, 6327, 6327, 6327, 6327, 6327, 6327, 6327,19007,19007,19007,19007,19007,19007,19007, 6327, 6327, 6327, 6327, 6327, 6328,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 6327, 6327, 6327, 6327, 6327, 6327, 6330, 6331, 6332, 6333, 6333, 6333, 6333, 6333, 6333, 4269, 19007,19007,19007,19007,19007,19007, 4268, 4268, 4268, 4268, 4268, 4270,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 4268, 4268, 4268, 4268, 4268, 4268, 6334, 6334, 6334, 6334, 6334, 6334, 6334, 6334, 6334,19007,19007,19007, 19007,19007,19007,19007, 6334, 6334, 6334, 6334, 6334, 6335, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 6334, 6334, 6334, 6334, 6334, 6334, 2168,19007, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4282,19007,19007, 19007,19007,19007,19007, 4281, 4281, 4281, 4281, 4281, 4283, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 4281, 4281, 4281, 4281, 4281, 4281, 6340, 6340, 6340, 6340, 6340, 6340, 6340, 6340, 6340,19007,19007,19007,19007,19007, 19007,19007, 6340, 6340, 6340, 6340, 6340, 6341,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 6340, 6340, 6340, 6340, 6340, 6340, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4291,19007,19007,19007,19007,19007,19007, 4290, 4290, 4290, 4290, 4290, 4292,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 4290, 4290, 4290, 4290, 4290, 4290, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 3119,19007,19007,19007,19007,19007,19007, 4287, 4287, 4287, 4287, 4287, 4288,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 4287, 4287, 4287, 4287, 4287, 4287, 6346, 6346, 6346, 6346, 6346, 6346, 6346, 6346, 6346,19007, 19007,19007,19007,19007,19007,19007, 6346, 6346, 6346, 6346, 6346, 6347,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 6346, 6346, 6346, 6346, 6346, 6346, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4304,19007,19007, 19007,19007,19007,19007, 4303, 4303, 4303, 4303, 4303, 4305, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 4303, 4303, 4303, 4303, 4303, 4303, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 3131,19007,19007,19007,19007, 19007,19007, 4300, 4300, 4300, 4300, 4300, 4301,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 4300, 4300, 4300, 4300, 4300, 4300, 6352, 6352, 6352, 6352, 6352, 6352, 6352, 6352, 6352,19007,19007,19007,19007,19007,19007,19007, 6352, 6352, 6352, 6352, 6352, 6353,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 6352, 6352, 6352, 6352, 6352, 6352, 4317, 4317, 4317, 4317, 4317, 4317, 4317, 4317, 4317, 4318,19007,19007,19007,19007,19007,19007, 4317, 4317, 4317, 4317, 4317, 4319,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 4317, 4317, 4317, 4317, 4317, 4317, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 4314, 3147, 19007,19007,19007,19007,19007,19007, 4314, 4314, 4314, 4314, 4314, 4315,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 4314, 4314, 4314, 4314, 4314, 4314, 6358, 6358, 6358, 6358, 6358, 6358, 6358, 6358, 6358, 4984,19007,19007, 19007,19007,19007,19007, 6358, 6358, 6358, 6358, 6358, 6359, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 6358, 6358, 6358, 6358, 6358, 6358, 6361, 6361, 6361, 6361, 6361, 6361, 6361, 6361, 6361,19007,19007,19007,19007,19007, 19007,19007, 6361, 6361, 6361, 6361, 6361, 6362,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 6361, 6361, 6361, 6361, 6361, 6361, 6364, 6365, 6366, 6367, 6367, 6367, 6367, 6367, 6367,19007,19007,19007,19007,19007,19007,19007, 4330, 4330, 4330, 4330, 4330, 4331,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 4330, 4330, 4330, 4330, 4330, 4330, 6368, 6368, 6368, 6368, 6368, 6368, 6368, 6368, 6368, 3731,19007,19007,19007,19007,19007,19007, 4328, 4328, 4328, 4328, 4328, 4329,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 4328, 4328, 4328, 4328, 4328, 4328, 119, 119,19007, 119, 119, 119, 119, 119, 119, 124, 249, 119, 124, 124, 124, 124, 124, 124, 124, 124, 124, 119, 119, 119, 119, 119, 119, 264, 417, 417, 417, 417, 417, 418, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 119, 119, 119, 119, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 6370, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 6381,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6382,19007,19007,19007,19007, 6381,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6386,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6387,19007,19007,19007, 19007, 6386,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 6391,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6392,19007,19007,19007,19007, 6391,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6396,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2193, 119, 119, 119, 119, 119, 119, 6397,19007, 19007,19007,19007, 6396,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6400,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6401,19007,19007,19007,19007, 6400, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 6403, 6404,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119,19007,19007,19007,19007,19007,19007,19007, 6404, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 6406, 6406, 6406, 6406, 6406, 6406, 6406, 6406, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 6407,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6407,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6409, 6410,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2195, 119, 119,19007, 19007,19007,19007,19007,19007,19007, 6410, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6412,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2193, 119, 119, 119, 119, 119, 119, 6413,19007, 19007,19007,19007, 6412,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6417,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6418,19007,19007,19007,19007, 6417, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 6422,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6423,19007,19007,19007,19007, 6422,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6427,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6428,19007,19007,19007, 19007, 6427,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 3761,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 6431,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 6432,19007,19007,19007,19007, 19007, 2195, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 6432, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6434,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6435,19007,19007,19007,19007, 6434, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 6437,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 6438,19007,19007,19007,19007, 6437,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6443,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6444,19007,19007,19007, 19007, 6443,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 3761,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 6448,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6449,19007,19007,19007,19007, 6448,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6452,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 6453,19007,19007,19007,19007,19007, 2195, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 6453, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 6455,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6456,19007,19007,19007,19007, 6455,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2195, 119, 119, 277, 277,19007, 287, 277, 277, 277, 277, 277, 667, 280, 277, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 917, 277, 277, 277, 277, 277, 277, 6460, 6460, 6460, 6460, 6460, 6461, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669, 6459, 6459, 6459, 6459, 6459, 6459, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 278,19007,19007,19007,19007,19007, 19007,19007,19007, 6460, 6460, 6460, 6460, 6460, 6460, 6460, 6460, 6460,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 6460, 6460, 6460, 6460, 6460, 6460, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 313,19007,19007,19007,19007,19007,19007,19007,19007, 6464, 6464, 6464, 6464, 6464, 6464, 6464, 6464, 6464,19007,19007, 19007,19007,19007,19007,19007, 6464, 6464, 6464, 6464, 6464, 6465,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 6464, 6464, 6464, 6464, 6464, 6464, 6467, 6467, 6467, 6467, 6467, 6467, 6467, 6467, 6467,19007,19007,19007,19007, 19007,19007,19007, 6467, 6467, 6467, 6467, 6467, 6468,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 6467, 6467, 6467, 6467, 6467, 6467, 1904,19007, 4437, 4437, 4437, 4437, 4437, 4437, 4437, 4437, 4437, 4438,19007,19007,19007, 19007,19007,19007, 4437, 4437, 4437, 4437, 4437, 4439,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 4437, 4437, 4437, 4437, 4437, 4437, 6473, 6473, 6473, 6473, 6473, 6473, 6473, 6473, 6473,19007,19007,19007,19007,19007,19007, 19007, 6473, 6473, 6473, 6473, 6473, 6474,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 6473, 6473, 6473, 6473, 6473, 6473, 1904,19007, 6476, 6476, 6476, 6476, 6476, 6476, 6476, 6476, 6476, 3834,19007,19007,19007,19007,19007, 19007, 4450, 4450, 4450, 4450, 4450, 4451,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 4450, 4450, 4450, 4450, 4450, 4450, 6477, 6477, 6477, 6477, 6477, 6477, 6477, 6477, 6477,19007,19007,19007,19007,19007,19007,19007, 6477, 6477, 6477, 6477, 6477, 6478,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 6477, 6477, 6477, 6477, 6477, 6477, 6480, 6480, 6480, 6480, 6480, 6480, 6480, 6480, 6480, 3843,19007,19007,19007,19007,19007,19007, 4456, 4456, 4456, 4456, 4456, 4457,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 4456, 4456, 4456, 4456, 4456, 4456, 6481, 6481, 6481, 6481, 6481, 6481, 6481, 6481, 6481,19007,19007, 19007,19007,19007,19007,19007, 6481, 6481, 6481, 6481, 6481, 6482,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 6481, 6481, 6481, 6481, 6481, 6481, 6484, 6484, 6484, 6484, 6484, 6484, 6484, 6484, 6484, 3856,19007,19007,19007, 19007,19007,19007, 4465, 4465, 4465, 4465, 4465, 4466,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 4465, 4465, 4465, 4465, 4465, 4465, 6485, 6485, 6485, 6485, 6485, 6485, 6485, 6485, 6485,19007,19007,19007,19007,19007,19007, 19007, 6485, 6485, 6485, 6485, 6485, 6486,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 6485, 6485, 6485, 6485, 6485, 6485, 6488, 6488, 6488, 6488, 6488, 6488, 6488, 6488, 6488, 3870,19007,19007,19007,19007,19007,19007, 4474, 4474, 4474, 4474, 4474, 4475,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 4474, 4474, 4474, 4474, 4474, 4474, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 2659,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2195, 119, 119,19007,19007,19007,19007,19007, 6489, 119, 119,19007, 6490, 119, 119, 119, 6491, 6492, 6493, 6492, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 903, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 665,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 6494, 119, 119, 119, 277, 277,19007, 6496, 277, 277, 277, 6497, 6498, 6499, 6500, 277,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 906, 277, 277, 277, 277, 277, 277,19007,19007,19007,19007,19007, 668,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 6501, 277, 277, 277, 669, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 6502, 6502, 6502, 6502, 6502, 6502, 6502, 6502, 6502, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 662,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 6502, 6502, 6502, 6502, 6502, 6502, 6502, 6502, 6502, 903, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 662,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 6506, 6506, 6506, 6506, 6506, 6506, 6506, 6506, 6506,19007,19007,19007,19007,19007,19007,19007, 6506, 6506, 6506, 6506, 6506, 6507,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 6506, 6506, 6506, 6506, 6506, 6506, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4495,19007,19007,19007,19007,19007,19007, 4494, 4494, 4494, 4494, 4494, 4496,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 4494, 4494, 4494, 4494, 4494, 4494, 4491, 4491, 4491, 4491, 4491, 4491, 4491, 4491, 4491, 3297,19007, 19007,19007,19007,19007,19007, 4491, 4491, 4491, 4491, 4491, 4492,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 4491, 4491, 4491, 4491, 4491, 4491, 6512, 6512, 6512, 6512, 6512, 6512, 6512, 6512, 6512,19007,19007,19007,19007, 19007,19007,19007, 6512, 6512, 6512, 6512, 6512, 6513,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 6512, 6512, 6512, 6512, 6512, 6512, 119, 119,19007, 5820, 119, 119, 119, 119, 119, 6515, 119, 119, 6516, 6517, 6518, 6519, 6519, 6519, 6519, 6519, 6519, 6520, 119, 5827, 119, 119, 119, 119, 6521, 6521, 6521, 6521, 6521, 6522, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 119, 119, 119, 119, 6521, 6521, 6521, 6521, 6521, 6521, 6523, 6523, 6523, 6523, 6523, 6524, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 6525, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6526,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 19007, 6527, 119, 119, 119, 119, 119, 6528, 6529, 119, 6530, 6531, 6531, 6531, 6531, 6531, 6531, 6531, 6531, 6532, 119, 119, 119, 119, 119, 119, 6531, 6531, 6531, 6531, 6531, 6533, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 119, 119, 119, 6534, 6531, 6531, 6531, 6531, 6531, 6531, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 119, 119,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6542,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 6525,19007, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 119,19007,19007,19007,19007,19007,19007, 6528, 6528, 6528, 6528, 6528, 6544,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 6528, 6528, 6528, 6528, 6528, 6528, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 6546,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 6547,19007,19007,19007, 19007, 119, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 6547, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 665,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119,19007,19007,19007, 19007, 5835, 5161,19007,19007,19007,19007,19007,19007,19007, 5847, 6570, 6570, 6570, 6570, 6570, 6570, 6570, 6570, 6570, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 4527, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 6588,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 6589,19007,19007,19007,19007, 6588, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007, 19007,19007, 6593,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 6594,19007,19007,19007,19007, 6593,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 6596,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 6597,19007,19007,19007, 19007, 6596,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007, 19007,19007,19007,19007, 6599,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 6600,19007,19007,19007, 19007, 1004, 1004, 1004,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 6600, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 6604,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 6605,19007,19007,19007,19007, 6604,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007, 19007,19007,19007, 6609,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 6610,19007,19007,19007,19007, 6609,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 6613, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 6614,19007,19007, 19007,19007, 6613,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 19007,19007,19007,19007,19007, 6616,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 6617, 19007,19007, 3370, 1004, 1004,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 6617, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 6619,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004, 6620, 6620, 6620, 6620, 6620, 6620, 6620, 6620, 6620, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007, 19007,19007,19007, 6619,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 4562, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 6623,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 6624,19007,19007,19007,19007, 6623, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007, 19007,19007, 6626,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 6627,19007,19007, 3370, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 6627, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 6631,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 6632,19007,19007,19007,19007, 6631,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007, 19007,19007,19007, 6636,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 6637,19007,19007,19007,19007, 6636,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 1004, 1004, 1004, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5947, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 5948, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007, 19007,19007, 5949, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 5947, 5945, 5945, 5945, 5945, 5945, 5945, 6647,19007,19007,19007,19007, 5948,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 5945, 5945, 5945,19007,19007,19007, 5949, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 665,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119,19007, 6649, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 665,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 6650, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007, 19007, 6652,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 3979,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 6653, 19007,19007,19007,19007, 6652,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 6657,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 6659,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 6660,19007,19007,19007,19007, 2852, 2841, 2841, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 6660, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 6661,19007, 19007,19007,19007, 6657,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 6665,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 6666,19007,19007,19007,19007, 6665, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007, 19007,19007, 6669,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 6670,19007,19007,19007,19007, 6669,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 6672, 6673, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3982, 2841, 2841,19007,19007, 19007,19007,19007,19007,19007, 6673, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 4376, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007, 19007,19007, 6675,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 19007,19007,19007,19007,19007, 6677, 6678,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3982, 2841, 2841,19007,19007,19007,19007,19007, 19007,19007, 6678, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 6684,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 6685,19007,19007,19007,19007, 6684, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007, 19007,19007, 6689,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 6690,19007,19007,19007,19007, 6689,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 6694,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 6695,19007,19007,19007, 19007, 6694,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 3979,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007, 19007,19007,19007,19007, 6699,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 6700,19007,19007,19007,19007, 6699,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 6703,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 6704,19007,19007,19007,19007,19007, 3982, 2841, 2841, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 6704, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007, 19007,19007, 6706,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 6707,19007,19007,19007,19007, 6706,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 6709,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 6710,19007,19007,19007, 19007, 6709,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 3979,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007, 19007,19007,19007,19007, 6714,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 6715,19007,19007,19007,19007, 6714,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 6719,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 6720,19007, 19007,19007,19007, 6719,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 6723,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 6724,19007,19007, 19007,19007,19007, 3982, 2841, 2841,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 6724, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 6726,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 6727,19007,19007,19007, 19007, 6726,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 3194,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2195, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 6732, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 3194,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2195, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 6733, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 665,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119,19007,19007,19007, 6735, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 6736, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 662,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119,19007, 4007, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 5009,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2195, 119, 119, 6744,19007,19007, 19007,19007,19007,19007,19007,19007, 6745, 6745, 6745, 6745, 6745, 6745, 6745, 6745, 6745,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 1023,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 6744, 778, 778,19007, 778, 778, 778, 778, 778, 778, 19007, 778, 2897,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007, 19007,19007,19007,19007, 6749,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 6750,19007,19007,19007,19007, 6749,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 6754,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2898, 778, 778, 778, 778, 778, 778, 6755,19007, 19007,19007,19007, 6754,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 6758,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 6759,19007,19007,19007,19007, 6758, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007, 19007,19007, 6762,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 6763,19007,19007,19007,19007, 6762,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 6765,19007, 6766,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 6767, 6768, 6768,19007,19007, 19007,19007,19007,19007,19007,19007, 6769, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 6772,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2898, 778, 778, 778, 778, 778, 778, 6773,19007, 19007,19007,19007, 6772,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 6777,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 6778,19007,19007,19007,19007, 6777, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007, 19007,19007, 6782,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 6783,19007,19007,19007,19007, 6782,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 6786,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778, 19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 6787,19007,19007,19007, 19007, 6786,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778, 6788, 778, 4661,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2898, 778, 778, 778, 778, 778, 778, 6788, 19007,19007,19007,19007, 6790,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2900, 778, 778, 6788, 6788, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 6792, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778, 6793,19007,19007, 19007,19007, 6792,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 19007,19007,19007,19007,19007, 6797,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 6798,19007,19007,19007,19007, 6797,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778, 19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007, 19007, 6801,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778, 19007, 778, 4661,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2898, 778, 778, 778, 778, 778, 778, 6802, 19007,19007,19007,19007, 6801,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778, 6803, 778, 4661,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 6803,19007,19007,19007,19007, 6805,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2900, 778, 778, 6803, 6803, 2897, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 2898, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 1023,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2900,19007, 4040, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 2917, 2192,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 6811,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2195, 119, 119, 5008, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6812,19007,19007,19007,19007, 6811,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2195, 119, 119, 5008, 119, 119,19007, 857, 119, 119, 119, 119, 119,19007, 2917, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 4073,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6816,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3482, 119, 119, 6817, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6818,19007,19007,19007,19007, 6816,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 6817, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 6819,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6821,19007,19007,19007,19007, 6819,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 4073,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3504, 119, 119, 119, 6829, 6830, 6830, 6830, 6830, 6830, 6830, 6830, 6830, 5421,19007,19007,19007,19007,19007,19007, 6830, 6830, 6830, 6830, 6830, 6831,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 6830, 6830, 6830, 6830, 6830, 6830, 6830, 6830, 6830, 6830, 6830, 6830, 6830, 6830, 6830, 5423,19007, 19007,19007,19007,19007,19007, 6830, 6830, 6830, 6830, 6830, 6831,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 6830, 6830, 6830, 6830, 6830, 6830, 6833, 6834, 6834, 6834, 6834, 6834, 6834, 6834, 6834, 6835,19007,19007,19007, 19007,19007,19007, 6834, 6834, 6834, 6834, 6834, 6836,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 6834, 6834, 6834, 6834, 6834, 6834, 6838, 6839, 6839, 6839, 6839, 6839, 6839, 6839, 6839,19007,19007,19007,19007,19007,19007, 19007, 6839, 6839, 6839, 6839, 6839, 6840,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3504,19007,19007,19007, 6839, 6839, 6839, 6839, 6839, 6841, 6844, 6845, 6845, 6845, 6845, 6845, 6845, 6845, 6845, 6118,19007,19007,19007,19007,19007,19007, 6845, 6845, 6845, 6845, 6845, 6846,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 6845, 6845, 6845, 6845, 6845, 6845, 6847, 6848, 6848, 6848, 6848, 6848, 6848, 6848, 6848, 19007,19007,19007,19007,19007,19007,19007, 6848, 6848, 6848, 6848, 6848, 6849,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 6848, 6848, 6848, 6848, 6848, 6850, 6855, 6856, 6856, 6856, 6856, 6856, 6856, 6856, 6856, 6130,19007, 19007,19007,19007,19007,19007, 6856, 6856, 6856, 6856, 6856, 6857,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 6856, 6856, 6856, 6856, 6856, 6856, 6858, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859,19007,19007,19007,19007, 19007,19007,19007, 6859, 6859, 6859, 6859, 6859, 6860,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 6859, 6859, 6859, 6859, 6859, 6861, 6867, 6868, 6868, 6868, 6868, 6868, 6868, 6868, 6868, 5448,19007,19007,19007,19007,19007, 19007, 6868, 6868, 6868, 6868, 6868, 6869,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 6868, 6868, 6868, 6868, 6868, 6868, 6871, 6872, 6872, 6872, 6872, 6872, 6872, 6872, 6872, 6873,19007,19007,19007,19007,19007,19007, 6872, 6872, 6872, 6872, 6872, 6874,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 6872, 6872, 6872, 6872, 6872, 6872, 6881, 6882, 6883, 6884, 6884, 6884, 6884, 6884, 6884, 19007,19007,19007,19007,19007,19007,19007, 4756, 4756, 4756, 4756, 4756, 4760,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 4756, 4756, 4756, 4756, 4756, 4756, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 6886,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 6887, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6888,19007,19007,19007,19007, 6886,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3482, 119, 119, 6887, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6889,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2193, 119, 119, 119, 119, 119, 119, 6891,19007, 19007,19007,19007, 6889,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 366,19007,19007,19007,19007,19007,19007, 19007,19007, 6903, 6903, 6903, 6903, 6903, 6903, 6903, 6903, 6903,19007,19007,19007,19007,19007,19007,19007, 6903, 6903, 6903, 6903, 6903, 6904,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 209,19007,19007,19007, 6903, 6903, 6903, 6903, 6903, 6903, 2010,19007, 4806, 4806, 4806, 4806, 4806, 4806, 4806, 4806, 4806, 4807,19007,19007,19007,19007,19007,19007, 4806, 4806, 4806, 4806, 4806, 4808,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 4806, 4806, 4806, 4806, 4806, 4806, 4803, 4803, 4803, 4803, 4803, 4803, 4803, 4803, 4803, 3534, 19007,19007,19007,19007,19007,19007, 4803, 4803, 4803, 4803, 4803, 4804,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 4803, 4803, 4803, 4803, 4803, 4803, 378,19007, 19007,19007,19007,19007,19007,19007,19007, 6923, 6923, 6923, 6923, 6923, 6923, 6923, 6923, 6923,19007,19007,19007,19007, 19007,19007,19007, 6923, 6923, 6923, 6923, 6923, 6924,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 6923, 6923, 6923, 6923, 6923, 6923,19007,19007,19007,19007,19007, 19007,19007, 221, 2035,19007, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 4836,19007,19007,19007,19007,19007, 19007, 4835, 4835, 4835, 4835, 4835, 4837,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 4835, 4835, 4835, 4835, 4835, 4835, 4832, 4832, 4832, 4832, 4832, 4832, 4832, 4832, 4832, 3563,19007,19007,19007,19007,19007,19007, 4832, 4832, 4832, 4832, 4832, 4833,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 4832, 4832, 4832, 4832, 4832, 4832, 6960,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 1381,19007,19007,19007,19007,19007,19007, 1382,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 1383,19007, 1384,19007, 1385,19007, 19007, 1386,19007,19007,19007,19007, 1387,19007,19007, 1388, 19007, 1389,19007, 1390,19007, 1391, 1392, 1393, 2525, 2526, 19007,19007,19007,19007, 1380,19007,19007, 4878,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2527, 19007,19007,19007,19007,19007,19007, 2528,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2529,19007, 2530,19007, 2532,19007,19007, 2533,19007,19007, 19007,19007, 2535,19007,19007, 2536,19007, 2537,19007, 2538, 19007, 2539, 2540, 2541, 2525, 2526, 6962,19007,19007,19007, 1380,19007, 6963,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2527,19007,19007,19007,19007, 19007,19007, 2528,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2529,19007, 2530,19007, 2532,19007,19007, 2533,19007,19007,19007,19007, 2535,19007, 19007, 2536,19007, 2537,19007, 2538,19007, 2539, 2540, 2541, 1381,19007,19007,19007,19007,19007,19007, 1382,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 1383,19007, 1384,19007, 1385,19007,19007, 6971,19007, 19007,19007,19007, 1705,19007,19007, 1388,19007, 1389,19007, 1390,19007, 1391, 1392, 1393, 6972,19007,19007,19007,19007, 19007,19007, 6973, 1713,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 1714,19007,19007,19007,19007, 19007,19007, 1715,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 1716,19007, 1717,19007, 1718,19007,19007, 1719,19007,19007,19007,19007, 1720,19007, 19007, 1721,19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 1713,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 1714,19007,19007,19007,19007,19007,19007, 1715, 6974,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 1716,19007, 1717,19007, 1718,19007,19007, 1719,19007,19007,19007,19007, 1720,19007,19007, 1721,19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 1713,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1714, 19007,19007,19007,19007,19007,19007, 1715,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1716,19007, 1717,19007, 1718,19007,19007, 1719,19007,19007, 19007,19007, 1720, 6975,19007, 1721,19007, 1722,19007, 1723, 19007, 1724, 1725, 1726, 2525, 3071,19007,19007,19007,19007, 1712,19007,19007, 3072, 6976, 6976, 6976, 6976, 6976, 6976, 6976, 6976, 6976,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3073,19007,19007,19007,19007, 19007,19007, 3074,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3075,19007, 3076,19007, 3078,19007,19007, 3079,19007,19007,19007,19007, 3081,19007, 19007, 3082,19007, 3083,19007, 3084,19007, 3085, 3649, 3087, 2525, 3071,19007,19007,19007,19007, 1712,19007,19007, 3072, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3073,19007,19007,19007,19007,19007,19007, 3074,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3075,19007, 3076,19007, 3078,19007, 6977, 3079, 19007,19007,19007,19007, 3081,19007,19007, 3082,19007, 3083, 19007, 3084,19007, 3085, 3086, 3087, 1713,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 1714,19007, 19007,19007,19007,19007,19007, 1715,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1716, 19007, 1717,19007, 1718,19007,19007, 1719,19007,19007,19007, 19007, 1720,19007,19007, 6988,19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 6316, 1713,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 1714,19007,19007,19007, 19007,19007,19007, 1715,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 1716,19007, 1717, 19007, 1718,19007,19007, 2096,19007,19007,19007,19007, 2097, 19007,19007, 1721,19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 6991, 6991, 6991, 6991, 6991, 6991, 6991, 6991, 6991, 19007,19007,19007,19007,19007,19007, 264, 6991, 6991, 6991, 6991, 6991, 6992,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 6991, 6991, 6991, 6991, 6991, 6991, 6994, 6994, 6994, 6994, 6994, 6994, 6994, 6994, 6994,19007,19007, 19007,19007,19007,19007,19007, 6994, 6994, 6994, 6994, 6994, 6995,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 6994, 6994, 6994, 6994, 6994, 6994, 2168,19007, 4934, 4934, 4934, 4934, 4934, 4934, 4934, 4934, 4934, 4935,19007, 19007,19007,19007,19007,19007, 4934, 4934, 4934, 4934, 4934, 4936,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 4934, 4934, 4934, 4934, 4934, 4934, 7000, 7000, 7000, 7000, 7000, 7000, 7000, 7000, 7000,19007,19007,19007,19007, 19007,19007,19007, 7000, 7000, 7000, 7000, 7000, 7001,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7000, 7000, 7000, 7000, 7000, 7000, 2168,19007, 7003, 7003, 7003, 7003, 7003, 7003, 7003, 7003, 7003, 4282,19007,19007,19007, 19007,19007,19007, 4947, 4947, 4947, 4947, 4947, 4948,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 4947, 4947, 4947, 4947, 4947, 4947, 7004, 7004, 7004, 7004, 7004, 7004, 7004, 7004, 7004,19007,19007,19007,19007,19007,19007, 19007, 7004, 7004, 7004, 7004, 7004, 7005,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7004, 7004, 7004, 7004, 7004, 7004, 7007, 7007, 7007, 7007, 7007, 7007, 7007, 7007, 7007, 4291,19007,19007,19007,19007,19007,19007, 4953, 4953, 4953, 4953, 4953, 4954,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 4953, 4953, 4953, 4953, 4953, 4953, 7008, 7008, 7008, 7008, 7008, 7008, 7008, 7008, 7008, 19007,19007,19007,19007,19007,19007,19007, 7008, 7008, 7008, 7008, 7008, 7009,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7008, 7008, 7008, 7008, 7008, 7008, 7011, 7011, 7011, 7011, 7011, 7011, 7011, 7011, 7011, 4304,19007, 19007,19007,19007,19007,19007, 4962, 4962, 4962, 4962, 4962, 4963,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 4962, 4962, 4962, 4962, 4962, 4962, 7012, 7012, 7012, 7012, 7012, 7012, 7012, 7012, 7012,19007,19007,19007,19007, 19007,19007,19007, 7012, 7012, 7012, 7012, 7012, 7013,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7012, 7012, 7012, 7012, 7012, 7012, 7015, 7015, 7015, 7015, 7015, 7015, 7015, 7015, 7015, 4318,19007,19007,19007,19007,19007, 19007, 4971, 4971, 4971, 4971, 4971, 4972,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 4971, 4971, 4971, 4971, 4971, 4971, 7016, 7016, 7016, 7016, 7016, 7016, 7016, 7016, 7016,19007,19007,19007,19007,19007,19007,19007, 7016, 7016, 7016, 7016, 7016, 7017,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7016, 7016, 7016, 7016, 7016, 7016, 4983, 4983, 4983, 4983, 4983, 4983, 4983, 4983, 4983, 4984,19007,19007,19007,19007,19007,19007, 4983, 4983, 4983, 4983, 4983, 4985,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 4983, 4983, 4983, 4983, 4983, 4983, 4980, 4980, 4980, 4980, 4980, 4980, 4980, 4980, 4980, 3731,19007, 19007,19007,19007,19007,19007, 4980, 4980, 4980, 4980, 4980, 4981,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 4980, 4980, 4980, 4980, 4980, 4980, 119, 119,19007, 119, 119, 119, 119, 119, 119, 124, 249, 119, 124, 124, 124, 124, 124, 124, 124, 124, 124, 119, 119, 119, 119, 119, 119, 264, 417, 417, 417, 417, 417, 418, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 119, 119, 119, 119, 417, 417, 417, 417, 417, 417, 417, 417, 7023, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 7025,19007,19007,19007, 19007,19007,19007,19007,19007, 7026, 7026, 7026, 7026, 7026, 7026, 7026, 7026, 7026,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 120,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7025, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 6381,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 6382,19007,19007,19007,19007, 6381,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7035, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 7036,19007,19007, 19007,19007, 7035,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 7040,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 7041,19007,19007,19007,19007, 7040,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 7045,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119, 7046, 19007,19007,19007,19007, 7045,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7050,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 7051,19007,19007,19007,19007, 7050,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 7054,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 7055,19007,19007,19007,19007, 7054,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7057, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7058,19007,19007, 2195, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7058, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 7060,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 7061, 7061, 7061, 7061, 7061, 7061, 7061, 7061, 7061, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7060,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 3204, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7064,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2193, 119, 119, 119, 119, 119, 119, 7065,19007, 19007,19007,19007, 7064,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7067,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7068,19007,19007, 2195, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7068, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 7070,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 3761,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119, 7071, 19007,19007,19007,19007, 7070,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7075,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 7076,19007,19007,19007,19007, 7075,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 277, 277,19007, 287, 277, 277, 277, 277, 277, 667, 280, 277, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 917, 277, 277, 277, 277, 277, 277, 7084, 7084, 7084, 7084, 7084, 7085, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669, 7083, 7083, 7083, 7083, 7083, 7083, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 278, 19007,19007,19007,19007,19007,19007,19007,19007, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7084,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7084, 7084, 7084, 7084, 7084, 7084, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7088,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 1904, 19007, 7089, 7089, 7089, 7089, 7089, 7089, 7089, 7089, 7089, 4438,19007,19007,19007,19007,19007,19007, 5068, 5068, 5068, 5068, 5068, 5069,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 5068, 5068, 5068, 5068, 5068, 5068, 313, 19007,19007,19007,19007,19007,19007,19007,19007, 5082, 5082, 5082, 5082, 5082, 5082, 5082, 5082, 5082, 3834,19007,19007, 19007,19007,19007,19007, 5082, 5082, 5082, 5082, 5082, 5083, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5082, 5082, 5082, 5082, 5082, 5082, 5092, 5092, 5092, 5092, 5092, 5092, 5092, 5092, 5092, 3843,19007,19007,19007,19007, 19007,19007, 5092, 5092, 5092, 5092, 5092, 5093,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5092, 5092, 5092, 5092, 5092, 5092, 5103, 5103, 5103, 5103, 5103, 5103, 5103, 5103, 5103, 3856,19007,19007,19007,19007,19007,19007, 5103, 5103, 5103, 5103, 5103, 5104,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5103, 5103, 5103, 5103, 5103, 5103, 5114, 5114, 5114, 5114, 5114, 5114, 5114, 5114, 5114, 3870,19007,19007,19007,19007,19007,19007, 5114, 5114, 5114, 5114, 5114, 5115,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 5114, 5114, 5114, 5114, 5114, 5114, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 3194,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7090, 119, 119, 19007, 5820, 119, 119, 119, 119, 119, 6515, 119, 119, 7091, 7092, 7093, 7094, 7094, 7094, 7094, 7094, 7094, 6520, 119, 5827, 119, 119, 119, 119, 7095, 7095, 7095, 7095, 7095, 7096, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 899, 119, 119, 119, 7095, 7095, 7095, 7095, 7095, 7095, 7097, 7097, 7097, 7097, 7097, 7098, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119, 7102, 7102, 7103,19007,19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 665,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 6490, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 903, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 665,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 5820, 269, 119, 119, 119, 119, 7106, 119, 119, 7107, 7108, 7109, 7110, 7110, 7110, 7110, 7110, 7110, 6520, 119, 5827, 119, 119, 119, 119, 7111, 7111, 7111, 7111, 7111, 7112, 7113, 7113, 7113, 7113, 7113, 7113, 7113, 7113, 7113, 7113, 7113, 7113, 7113, 7113, 7113, 7113, 119, 119, 119, 119, 7111, 7111, 7111, 7111, 7111, 7111, 7113, 7113, 7113, 7113, 7113, 7114, 7113, 7113, 7113, 7113, 7113, 7113, 7113, 7113, 7113, 7113, 7113, 7113, 7113, 119, 119,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119, 7115, 7115, 7116,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 454,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119, 7117, 7117, 7117, 7117, 7117, 7117, 7117, 7117, 7117, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 454, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 277, 277,19007, 278, 277, 277, 277, 277, 277,19007, 280, 277, 7118, 7118, 7119,19007,19007,19007,19007,19007, 19007, 906, 277, 277, 277, 277, 277, 277,19007,19007, 19007,19007,19007, 668,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 277, 277, 277, 669, 119, 119,19007, 119, 119, 119, 119, 119, 119, 136, 119, 119, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 119, 119, 119, 119, 119, 119, 119, 460, 460, 460, 460, 460, 461, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 119, 119, 119, 119, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 277, 277,19007, 6496, 277, 277, 277, 277, 277,19007, 280, 277,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 906, 277, 277, 277, 277, 277, 277,19007,19007,19007,19007,19007, 668,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 277, 277, 277, 669, 119, 119,19007, 7104, 119, 119, 119, 6491, 6492, 7121, 6492, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 662,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7122, 119, 119, 119, 313,19007,19007,19007,19007,19007,19007,19007,19007, 7126, 7126, 7126, 7126, 7126, 7126, 7126, 7126, 7126,19007,19007, 19007,19007,19007,19007,19007, 7126, 7126, 7126, 7126, 7126, 7127,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7126, 7126, 7126, 7126, 7126, 7126, 7129, 7129, 7129, 7129, 7129, 7129, 7129, 7129, 7129, 4495,19007,19007,19007, 19007,19007,19007, 5135, 5135, 5135, 5135, 5135, 5136,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5135, 5135, 5135, 5135, 5135, 5135, 7130, 7130, 7130, 7130, 7130, 7130, 7130, 7130, 7130,19007,19007,19007,19007,19007,19007, 19007, 7130, 7130, 7130, 7130, 7130, 7131,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7130, 7130, 7130, 7130, 7130, 7130, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 7133, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7134,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 7135, 119, 119, 119, 119, 119, 7136, 7137, 119, 7138, 7139, 7139, 7139, 7139, 7139, 7139, 7139, 7139, 7140, 119, 119, 119, 119, 119, 119, 7139, 7139, 7139, 7139, 7139, 7141, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 119, 119, 119, 7142, 7139, 7139, 7139, 7139, 7139, 7139, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7133,19007, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 119,19007,19007, 19007,19007,19007,19007, 7136, 7136, 7136, 7136, 7136, 7150, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7136, 7136, 7136, 7136, 7136, 7136, 119, 119,19007, 119, 119, 119, 119, 119, 119, 5821, 119, 119, 5821, 5821, 5821, 5821, 5821, 5821, 5821, 5821, 5821, 119, 119, 119, 119, 119, 119, 119, 7152, 7152, 7152, 7152, 7152, 7153, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 119, 119, 119, 119, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 6525, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 7154,19007,19007,19007,19007, 6526,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 7135, 119, 119, 119, 119, 119, 7155, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 7158,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7159,19007,19007,19007,19007, 119, 119, 119, 7155,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7159, 119, 119,19007, 6527, 119, 119, 119, 119, 119,19007, 6525, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 6544,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 6534, 119, 119,19007, 6527, 119, 119, 119, 119, 119, 6528, 6525, 119, 7164, 7165, 7165, 7165, 7165, 7165, 7165, 7165, 7165, 6532, 119, 119, 119, 119, 119, 119, 7165, 7165, 7165, 7165, 7165, 7166, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 119, 119, 119, 6534, 7165, 7165, 7165, 7165, 7165, 7165, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 7167, 7168, 7168, 7168, 7168, 7168, 7168, 7168, 7168, 7169,19007,19007,19007,19007,19007, 19007, 7168, 7168, 7168, 7168, 7168, 7170,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7168, 7168, 7168, 7168, 7168, 7168, 119, 119,19007, 6527, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7172,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 6527,19007,19007,19007, 19007,19007,19007,19007,19007, 7175, 7176, 7176, 7176, 7176, 7176, 7176, 7176, 7176,19007,19007,19007,19007,19007,19007, 19007, 7176, 7176, 7176, 7176, 7176, 7177,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7176, 7176, 7176, 7176, 7176, 7178, 119, 119,19007, 119, 119, 119, 119, 119, 119, 119, 7179, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6542,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 119, 7179, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 7180,19007,19007,19007,19007, 6542,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 6527, 119, 119, 119, 119, 119, 19007, 6525, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119, 7182, 19007,19007,19007,19007, 6544,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 6534, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7184,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 7185,19007,19007,19007, 19007, 7184,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 7187,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7188,19007,19007,19007, 19007, 119, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7188, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 665,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119,19007, 7193, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 665,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119,19007,19007,19007, 7218, 7226,19007,19007,19007, 19007,19007,19007,19007,19007, 7227, 7227, 7227, 7227, 7227, 7227, 7227, 7227, 7227,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 1266,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7228, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007, 19007,19007,19007, 7232,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7233,19007,19007,19007,19007, 7232,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 7237, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7238,19007,19007, 19007,19007, 7237,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 19007,19007,19007,19007,19007, 7241,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7242,19007,19007,19007,19007, 7241,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004, 19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007, 19007, 7245,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7246, 19007,19007,19007,19007, 7245,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 7248,19007, 7249, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7250, 7251, 7251,19007,19007,19007, 19007,19007,19007,19007,19007, 7252, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 7255, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7256,19007,19007, 19007,19007, 7255,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 19007,19007,19007,19007,19007, 7260,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7261,19007,19007,19007,19007, 7260,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004, 19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007, 19007, 7265,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 19007, 1004, 5195,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7266, 19007,19007,19007,19007, 7265,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 7269,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7270,19007,19007,19007,19007, 7269,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 7271, 1004, 5195,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7271,19007, 19007,19007,19007, 7273,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 7271, 7271, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 7275,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 7276,19007,19007,19007, 19007, 7275,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 19007, 1004, 5195,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007, 19007,19007,19007,19007, 7280,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7281,19007,19007,19007,19007, 7280,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 7284,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7285,19007, 19007,19007,19007, 7284,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 7286, 1004, 5195,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7286,19007,19007,19007,19007, 7288,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3370, 1004, 1004, 7286, 7286, 1265,19007, 19007,19007,19007,19007,19007,19007, 3367, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 3368,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 1266,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3370,19007, 4562, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945, 7296,19007,19007, 7297, 19007, 7298,19007,19007,19007, 7299,19007,19007, 7300, 7301, 7302,19007,19007, 7303,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007, 7304,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7305, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5947, 5945, 5945, 5945, 5945, 5945, 5945,19007, 19007,19007,19007,19007, 5948,19007,19007, 7306,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5945, 5945, 5945,19007,19007,19007, 5949, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5947, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007, 19007, 5948,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007, 5949,19007,19007,19007,19007,19007, 7307, 119, 119,19007, 656, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 903, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 665,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7308, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 665,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7309, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007, 19007,19007,19007, 7311,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 7312,19007,19007,19007,19007, 7311,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 7316, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 7317,19007,19007, 19007,19007, 7316,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 19007,19007,19007,19007,19007, 7319,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 7320,19007,19007,19007,19007, 7319,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007, 19007, 7322,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7323,19007,19007,19007,19007, 2852, 2841, 2841,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7323, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 5957,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007, 19007,19007,19007,19007, 7327,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 7328,19007,19007,19007,19007, 7327,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 7332,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 7333,19007, 19007,19007,19007, 7332,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 7336,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 7337,19007,19007,19007,19007, 7336, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007, 19007,19007, 7339,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7340,19007,19007, 3982, 2841, 2841,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7340, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 7342,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 7343,19007,19007,19007,19007, 7342,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007, 19007,19007,19007, 7345,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 7346,19007,19007,19007,19007, 7345,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 7348, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7349,19007,19007, 3982, 2841, 2841,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7349, 2842,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7351, 7351, 7351, 7351, 7351, 7351, 7351, 7351, 7351, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3392,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2852, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007, 19007,19007,19007, 7354,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 7355,19007,19007,19007,19007, 7354,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 7359, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 7360,19007,19007, 19007,19007, 7359,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2852, 2841, 2841, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 3757,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2195, 119, 119,19007,19007,19007,19007,19007, 7368, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 3757,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2195, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7369, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 665,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119,19007, 7371, 119, 119,19007, 119, 119, 119, 119, 7373, 119, 119, 119, 7373, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 119, 119, 119, 119, 119, 119, 119, 7374, 7374, 7374, 7374, 7374, 7375, 7373, 7373, 7373, 7373, 7373, 7373, 7373, 7373, 7373, 7373, 7373, 7373, 7373, 7373, 7373, 7373, 119, 119, 119, 119, 7374, 7374, 7374, 7374, 7374, 7374, 7373, 7373, 7373, 7373, 7373, 7373, 7373, 7373, 7373, 7373, 7373, 7373, 7373, 7373, 7373, 7373, 7373, 7373, 7373, 7384,19007,19007,19007,19007,19007,19007, 19007,19007, 7385, 7385, 7385, 7385, 7385, 7385, 7385, 7385, 7385,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 1023,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7384, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 7387,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2898, 778, 778, 778, 778, 778, 778, 7388,19007, 19007,19007,19007, 7387,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 7392,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 7393,19007,19007,19007,19007, 7392, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007, 19007,19007, 7397,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 7398,19007,19007,19007,19007, 7397,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 7402,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778, 19007, 778, 778, 778, 778, 778, 778,19007, 778, 778, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 7403,19007,19007,19007, 19007, 7402,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778, 19007, 778, 778,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007, 19007,19007,19007,19007, 7406,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 7407,19007,19007,19007,19007, 7406,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 7409, 7410,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 19007,19007,19007,19007,19007,19007,19007, 7410, 778, 778, 19007, 778, 778, 778, 778, 778, 778,19007, 778, 778, 19007, 7412, 7412, 7412, 7412, 7412, 7412, 7412, 7412, 778, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007, 19007, 7413,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778, 19007, 778, 778,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 778, 778, 778, 778, 778, 778, 778,19007, 19007,19007,19007,19007, 7413,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 7415, 7416,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2900, 778, 778,19007,19007,19007, 19007,19007,19007,19007, 7416, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 7418,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778, 19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 7419,19007,19007,19007, 19007, 7418,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778, 19007, 778, 4661,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007, 19007,19007,19007,19007, 7423,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 7424,19007,19007,19007,19007, 7423,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 7428,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2898, 778, 778, 778, 778, 778, 778, 7429,19007, 19007,19007,19007, 7428,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 7433,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 7434,19007,19007,19007,19007, 7433, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007, 19007,19007, 7437,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7438,19007,19007,19007,19007,19007, 2900, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7438, 778, 778,19007, 778, 778, 778, 778, 778, 778, 19007, 778, 4661,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007, 19007,19007,19007,19007, 7440,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 7441,19007,19007,19007,19007, 7440,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 7443,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 778, 778, 778, 778, 778, 778, 778, 7444,19007, 19007,19007,19007, 7443,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 7449,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 7450,19007,19007,19007,19007, 7449, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007, 19007,19007, 7454,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 7455,19007,19007,19007,19007, 7454,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 7458,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7459, 19007,19007,19007,19007,19007, 2900, 778, 778,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7459, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 7461,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2898, 778, 778, 778, 778, 778, 778, 7462,19007, 19007,19007,19007, 7461,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7468,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2195, 119, 119, 5694, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 7469,19007,19007,19007,19007, 7468,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 5694, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 2917, 2192,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 7473,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3482, 119, 119, 7474, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 7475,19007,19007,19007,19007, 7473,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3482, 119, 119, 7474, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 7476,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 7478,19007,19007,19007,19007, 7476,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 119, 6103, 6103, 6103, 6103, 6103, 6103, 6103, 6103, 6103, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 4073,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3504, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 119, 6103, 6103, 6103, 6103, 6103, 6103, 6103, 6103, 6103, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 4073,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3504, 119, 119, 119, 7482, 7483, 7483, 7483, 7483, 7483, 7483, 7483, 7483, 6835,19007,19007,19007,19007,19007,19007, 7483, 7483, 7483, 7483, 7483, 7484,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7483, 7483, 7483, 7483, 7483, 7483, 7485, 7486, 7486, 7486, 7486, 7486, 7486, 7486, 7486, 7487,19007,19007,19007,19007,19007,19007, 7486, 7486, 7486, 7486, 7486, 7488,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7486, 7486, 7486, 7486, 7486, 7486, 7491, 7492, 7492, 7492, 7492, 7492, 7492, 7492, 7492, 7493,19007, 19007,19007,19007,19007,19007, 7492, 7492, 7492, 7492, 7492, 7494,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3504,19007,19007, 19007, 7492, 7492, 7492, 7492, 7492, 7492, 7499, 7500, 7500, 7500, 7500, 7500, 7500, 7500, 7500, 6118,19007,19007,19007, 19007,19007,19007, 7500, 7500, 7500, 7500, 7500, 7501,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7500, 7500, 7500, 7500, 7500, 7500, 7503, 7504, 7504, 7504, 7504, 7504, 7504, 7504, 7504, 7505,19007,19007,19007,19007,19007, 19007, 7504, 7504, 7504, 7504, 7504, 7506,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7504, 7504, 7504, 7504, 7504, 7504, 7513, 7514, 7514, 7514, 7514, 7514, 7514, 7514, 7514, 6130,19007,19007,19007,19007,19007,19007, 7514, 7514, 7514, 7514, 7514, 7515,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7514, 7514, 7514, 7514, 7514, 7514, 7517, 7518, 7518, 7518, 7518, 7518, 7518, 7518, 7518, 7519,19007,19007,19007,19007,19007,19007, 7518, 7518, 7518, 7518, 7518, 7520,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7518, 7518, 7518, 7518, 7518, 7518, 7527, 7528, 7529, 7530, 7530, 7530, 7530, 7530, 7530,19007,19007, 19007,19007,19007,19007,19007, 5434, 5434, 5434, 5434, 5434, 5438,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5434, 5434, 5434, 5434, 5434, 5434, 7531, 7532, 7532, 7532, 7532, 7532, 7532, 7532, 7532, 6873,19007,19007,19007, 19007,19007,19007, 7532, 7532, 7532, 7532, 7532, 7533,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7532, 7532, 7532, 7532, 7532, 7532, 7534, 7535, 7535, 7535, 7535, 7535, 7535, 7535, 7535,19007,19007,19007,19007,19007,19007, 19007, 7535, 7535, 7535, 7535, 7535, 7536,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7535, 7535, 7535, 7535, 7535, 7537, 7543,19007, 5447, 5447, 5447, 5447, 5447, 5447, 5447, 5447, 5447, 5450,19007,19007,19007,19007,19007, 19007, 5447, 5447, 5447, 5447, 5447, 5449,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5447, 5447, 5447, 5447, 5447, 5447, 366,19007,19007,19007,19007,19007,19007, 19007,19007, 7553, 7553, 7553, 7553, 7553, 7553, 7553, 7553, 7553,19007,19007,19007,19007,19007,19007,19007, 7553, 7553, 7553, 7553, 7553, 7554,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 209,19007,19007,19007, 7553, 7553, 7553, 7553, 7553, 7553, 2010,19007, 7556, 7556, 7556, 7556, 7556, 7556, 7556, 7556, 7556, 4807,19007,19007,19007,19007,19007,19007, 5513, 5513, 5513, 5513, 5513, 5514,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 5513, 5513, 5513, 5513, 5513, 5513, 378,19007,19007,19007,19007,19007,19007,19007,19007, 7569, 7569, 7569, 7569, 7569, 7569, 7569, 7569, 7569,19007,19007, 19007,19007,19007,19007,19007, 7569, 7569, 7569, 7569, 7569, 7570,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7569, 7569, 7569, 7569, 7569, 7569,19007,19007,19007, 19007,19007,19007,19007, 221, 2035,19007, 7572, 7572, 7572, 7572, 7572, 7572, 7572, 7572, 7572, 4836,19007,19007,19007, 19007,19007,19007, 5533, 5533, 5533, 5533, 5533, 5534,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5533, 5533, 5533, 5533, 5533, 5533, 7603,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 1381,19007,19007,19007,19007, 19007,19007, 1382,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 1383,19007, 1384,19007, 1385,19007,19007, 1386,19007,19007,19007,19007, 1387,19007, 19007, 1388,19007, 1389,19007, 1390,19007, 1391, 1392, 1393, 2525, 7606,19007,19007,19007,19007, 1380,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2527,19007,19007,19007,19007,19007,19007, 2528,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2529,19007, 2530,19007, 2532,19007,19007, 2533, 19007,19007,19007,19007, 2535,19007,19007, 2536,19007, 2537, 19007, 2538,19007, 2539, 2540, 2541, 2525, 2526,19007,19007, 19007,19007, 1380,19007,19007,19007, 7607, 7607, 7607, 7607, 7607, 7607, 7607, 7607, 7607,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2527,19007,19007, 19007,19007,19007,19007, 2528,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2529,19007, 2530,19007, 2532,19007,19007, 2533,19007,19007,19007,19007, 2535,19007,19007, 2536,19007, 2537,19007, 2538,19007, 2539, 2540, 2541, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3043,19007,19007,19007,19007,19007, 19007,19007, 7609,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3044, 1381, 19007,19007,19007,19007,19007,19007, 1382,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1383,19007, 1384,19007, 1385,19007,19007, 1386,19007,19007, 19007,19007, 1387,19007, 1701, 7612,19007, 1389,19007, 1390, 19007, 1391, 1392, 1393, 1713,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 1714,19007, 7613,19007, 19007,19007,19007, 1715,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 1716,19007, 1717, 19007, 1718,19007,19007, 1719,19007,19007,19007,19007, 1720, 19007,19007, 1721,19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 1713,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 1714,19007,19007,19007,19007,19007,19007, 1715,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 1716,19007, 1717,19007, 1718,19007, 19007, 1719,19007,19007,19007,19007, 1720,19007,19007, 7614, 19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 1713,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7615,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1714,19007,19007,19007,19007,19007,19007, 1715,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 1716,19007, 1717,19007, 1718,19007,19007, 1719,19007, 19007,19007,19007, 1720,19007,19007, 1721,19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 2525, 3071,19007,19007,19007, 19007, 1712,19007,19007, 5590,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3073,19007,19007,19007, 19007,19007,19007, 3074,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3075,19007, 3076, 19007, 3078,19007,19007, 3079,19007,19007,19007,19007, 3081, 19007,19007, 3082,19007, 3083,19007, 3084,19007, 3085, 3086, 3087, 2525, 3071, 7616,19007,19007,19007, 1712,19007, 7617, 3072,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3073,19007,19007,19007,19007,19007,19007, 3074, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3075,19007, 3076,19007, 3078,19007,19007, 3079,19007,19007,19007,19007, 3081,19007,19007, 3082,19007, 3083,19007, 3084,19007, 3085, 3086, 3087, 1713,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1714, 19007,19007,19007,19007,19007,19007, 1715,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1716,19007, 1717,19007, 1718,19007,19007, 7626,19007,19007, 19007,19007, 2097,19007,19007, 1721,19007, 1722,19007, 1723, 19007, 1724, 1725, 1726, 2168,19007, 7629, 7629, 7629, 7629, 7629, 7629, 7629, 7629, 7629, 4935,19007,19007,19007,19007, 19007,19007, 5616, 5616, 5616, 5616, 5616, 5617,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5616, 5616, 5616, 5616, 5616, 5616, 5630, 5630, 5630, 5630, 5630, 5630, 5630, 5630, 5630, 4282,19007,19007,19007,19007,19007, 264, 5630, 5630, 5630, 5630, 5630, 5631,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5630, 5630, 5630, 5630, 5630, 5630, 5640, 5640, 5640, 5640, 5640, 5640, 5640, 5640, 5640, 4291,19007,19007,19007,19007,19007,19007, 5640, 5640, 5640, 5640, 5640, 5641,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 5640, 5640, 5640, 5640, 5640, 5640, 5651, 5651, 5651, 5651, 5651, 5651, 5651, 5651, 5651, 4304, 19007,19007,19007,19007,19007,19007, 5651, 5651, 5651, 5651, 5651, 5652,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5651, 5651, 5651, 5651, 5651, 5651, 5662, 5662, 5662, 5662, 5662, 5662, 5662, 5662, 5662, 4318,19007,19007, 19007,19007,19007,19007, 5662, 5662, 5662, 5662, 5662, 5663, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5662, 5662, 5662, 5662, 5662, 5662, 7630, 7630, 7630, 7630, 7630, 7630, 7630, 7630, 7630,19007,19007,19007,19007,19007, 19007, 264, 7630, 7630, 7630, 7630, 7630, 7631,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7630, 7630, 7630, 7630, 7630, 7630, 7633, 7633, 7633, 7633, 7633, 7633, 7633, 7633, 7633, 4984,19007,19007,19007,19007,19007,19007, 5673, 5673, 5673, 5673, 5673, 5674,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5673, 5673, 5673, 5673, 5673, 5673, 119, 119,19007, 119, 119, 119, 119, 119, 119, 124, 249, 119, 124, 124, 124, 124, 124, 124, 124, 124, 124, 119, 119, 119, 119, 119, 119, 264, 417, 417, 417, 417, 417, 418, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 119, 119, 119, 119, 417, 7635, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 3761,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 7646,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 7647,19007,19007,19007,19007, 7646,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7651,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2193, 119, 119, 119, 119, 119, 119, 7652,19007, 19007,19007,19007, 7651,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7656,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 7657,19007,19007,19007,19007, 7656, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 7661,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 7662,19007,19007,19007,19007, 7661,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7666,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 7667,19007,19007,19007, 19007, 7666,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 7670,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 7671,19007,19007,19007,19007, 7670,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 7672, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 7672,19007,19007,19007,19007, 7674,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 7672, 7672, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 7676,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 7677,19007,19007,19007,19007, 7676,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 7681,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119, 7682, 19007,19007,19007,19007, 7681,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7685,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 7686,19007,19007,19007,19007, 7685,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 7687, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2193, 119, 119, 119, 119, 119, 119, 7687,19007, 19007,19007,19007, 7689,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 7687, 7687, 3761, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 2193,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 120,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2195,19007, 3204, 277, 277,19007, 287, 277, 277, 277, 277, 277, 667, 280, 277, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 917, 277, 277, 277, 277, 277, 277, 7693, 7693, 7693, 7693, 7693, 7694, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669, 7692, 7692, 7692, 7692, 7692, 7692, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 278,19007,19007,19007, 19007,19007,19007,19007,19007, 7693, 7693, 7693, 7693, 7693, 7693, 7693, 7693, 7693,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7693, 7693, 7693, 7693, 7693, 7693, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 119, 119,19007, 119, 119, 119, 7696, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 7088,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 7696, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 7697,19007,19007,19007,19007, 7088, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 1904,19007, 5759, 5759, 5759, 5759, 5759, 5759, 5759, 5759, 5759, 4438,19007,19007,19007,19007,19007,19007, 5759, 5759, 5759, 5759, 5759, 5760,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 5759, 5759, 5759, 5759, 5759, 5759, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 3757,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7698, 119, 119,19007, 7135, 119, 119, 119, 119, 119, 7699, 7137, 119, 7700, 7701, 7701, 7701, 7701, 7701, 7701, 7701, 7701, 7140, 119, 119, 119, 119, 119, 119, 7701, 7701, 7701, 7701, 7701, 7702, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 119, 119, 119, 7703, 7701, 7701, 7701, 7701, 7701, 7701, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 7133,19007, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 119,19007,19007,19007,19007,19007, 19007, 7699, 7699, 7699, 7699, 7699, 7709,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7699, 7699, 7699, 7699, 7699, 7699, 7104,19007,19007,19007, 6491,19007, 6491, 19007,19007, 7101, 7101, 7101, 7101, 7101, 7101, 7101, 7101, 7101,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 120,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7105, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119, 7712, 7712, 7712, 7712, 7712, 7712, 7712, 7712, 7712, 903, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 665,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119, 7712, 7712, 7712, 7712, 7712, 19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 665,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119,19007, 5820, 119, 119, 119, 119, 119, 6515, 119, 119, 7091, 7092, 7093, 7094, 7094, 7094, 7094, 7094, 7094, 6520, 119, 5827, 119, 119, 119, 119, 7095, 7095, 7095, 7095, 7095, 7096, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 119, 119, 119, 119, 7095, 7095, 7095, 7095, 7095, 7095, 7097, 7097, 7097, 7097, 7097, 7098, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 119, 119,19007, 446, 119, 119, 119, 119, 119,19007, 7133, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7134,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 7135, 119, 119, 119, 119, 119, 7713, 7137, 119, 7714, 7715, 7715, 7715, 7715, 7715, 7715, 7715, 7715, 7140, 119, 119, 119, 119, 119, 119, 7715, 7715, 7715, 7715, 7715, 7716, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 119, 119, 119, 7717, 7715, 7715, 7715, 7715, 7715, 7715, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 7133,19007, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 119, 19007,19007,19007,19007,19007,19007, 7713, 7713, 7713, 7713, 7713, 7723,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7713, 7713, 7713, 7713, 7713, 7713, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 7725, 7725, 7725, 7725, 7725, 7725, 7725, 7725, 7725, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 662,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119, 7725, 7725, 7725, 7725, 7725,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 662,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 7104,19007,19007,19007, 6491,19007, 7121,19007,19007, 7726, 7726, 7726, 7726, 7726, 7726, 7726, 7726, 7726,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7122, 277, 277,19007, 278, 277, 277, 277, 277, 277, 667, 280, 277, 7727, 7727, 7727, 7727, 7727, 7727, 7727, 7727, 7727, 906, 277, 277, 277, 277, 277, 277, 667, 667, 667, 667, 667, 668, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 277, 277, 277, 669, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 119, 119,19007, 7104, 119, 119, 119, 6491, 119, 7728, 137, 119, 7729, 7729, 7729, 7729, 7729, 7729, 7729, 7729, 7729, 119, 119, 119, 119, 119, 119, 119, 671, 671, 671, 671, 671, 672, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 7730, 119, 119, 119, 661, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 313, 19007,19007,19007,19007,19007,19007,19007,19007, 5806, 5806, 5806, 5806, 5806, 5806, 5806, 5806, 5806, 4495,19007,19007, 19007,19007,19007,19007, 5806, 5806, 5806, 5806, 5806, 5807, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5806, 5806, 5806, 5806, 5806, 5806, 7736, 7736, 7736, 7736, 7736, 7736, 7736, 7736, 7736,19007,19007,19007,19007,19007, 19007,19007, 7736, 7736, 7736, 7736, 7736, 7737,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7736, 7736, 7736, 7736, 7736, 7736, 119, 119,19007, 119, 119, 119, 119, 119, 119, 6515, 119, 119, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 119, 119, 119, 119, 119, 119, 119, 7739, 7739, 7739, 7739, 7739, 7740, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 119, 119, 119, 119, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 7133, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 7741,19007,19007,19007,19007, 7134,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 7135, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7742,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7743,19007,19007,19007,19007, 119, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7743, 119, 119,19007, 7135, 119, 119, 119, 119, 119,19007, 7133, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 7150,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 7142, 119, 119,19007, 7135, 119, 119, 119, 119, 119, 7136, 7133, 119, 7748, 7749, 7749, 7749, 7749, 7749, 7749, 7749, 7749, 7140, 119, 119, 119, 119, 119, 119, 7749, 7749, 7749, 7749, 7749, 7750, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 119, 119, 119, 7142, 7749, 7749, 7749, 7749, 7749, 7749, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7751, 7752, 7752, 7752, 7752, 7752, 7752, 7752, 7752, 7753,19007,19007,19007,19007,19007,19007, 7752, 7752, 7752, 7752, 7752, 7754,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7752, 7752, 7752, 7752, 7752, 7752, 119, 119,19007, 7135, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 7756,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 7135,19007,19007,19007,19007,19007, 19007,19007,19007, 7759, 7760, 7760, 7760, 7760, 7760, 7760, 7760, 7760,19007,19007,19007,19007,19007,19007,19007, 7760, 7760, 7760, 7760, 7760, 7761,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7760, 7760, 7760, 7760, 7760, 7762, 119, 119,19007, 7135, 119, 119, 119, 119, 119, 19007, 7133, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119, 7764, 19007,19007,19007,19007, 7150,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 7142, 119, 119,19007, 6527, 119, 119, 119, 119, 119, 5821, 6525, 119, 5821, 5821, 5821, 5821, 5821, 5821, 5821, 5821, 5821, 119, 119, 119, 119, 119, 119, 119, 7152, 7152, 7152, 7152, 7152, 7153, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 119, 119, 119, 119, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 6525, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6526,19007,19007, 7767,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 7769,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 7771,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 7772,19007,19007,19007,19007, 7771,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7774,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7775,19007,19007,19007,19007, 119, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7775, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 7776, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 6526,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 6527, 119, 119, 119, 119, 119, 6528, 6525, 119, 7781, 7782, 7782, 7782, 7782, 7782, 7782, 7782, 7782, 6532, 119, 119, 119, 119, 119, 119, 7782, 7782, 7782, 7782, 7782, 7783, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 119, 119, 119, 6534, 7782, 7782, 7782, 7782, 7782, 7782, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 7785, 7786, 7786, 7786, 7786, 7786, 7786, 7786, 7786, 7787,19007,19007,19007,19007,19007,19007, 7786, 7786, 7786, 7786, 7786, 7788,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7786, 7786, 7786, 7786, 7786, 7786, 6527,19007,19007,19007,19007,19007,19007,19007,19007, 7790, 7791, 7791, 7791, 7791, 7791, 7791, 7791, 7791,19007, 19007,19007,19007,19007,19007,19007, 7791, 7791, 7791, 7791, 7791, 7792,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7791, 7791, 7791, 7791, 7791, 7793, 119, 119, 19007, 6527, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 7795,19007,19007,19007, 19007, 7172,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 7797, 7798, 7798, 7798, 7798, 7798, 7798, 7798, 7798, 7799,19007,19007,19007,19007,19007,19007, 7798, 7798, 7798, 7798, 7798, 7800,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7798, 7798, 7798, 7798, 7798, 7798, 119, 119,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 7806,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 119, 7179, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6542,19007,19007, 7807, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 119,19007,19007,19007, 19007,19007,19007, 6528, 6528, 6528, 6528, 6528, 6544,19007, 19007,19007,19007,19007, 7808,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 6528, 6528, 6528, 6528, 6528, 6528, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7811,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 7813,19007,19007,19007, 19007, 7811,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 7810,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 7816,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 7817,19007,19007,19007,19007, 7816,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7819,19007, 7820,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7821, 7821, 7822, 19007,19007,19007,19007,19007,19007,19007,19007, 7823, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 665,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7828, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 665,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7845, 7856, 19007,19007,19007,19007,19007,19007,19007,19007, 7857, 7857, 7857, 7857, 7857, 7857, 7857, 7857, 7857,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1266, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7858, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 7860,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7861,19007,19007,19007,19007, 7860, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007, 19007,19007, 7865,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7866,19007,19007,19007,19007, 7865,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 7870,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004, 19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7871,19007,19007,19007, 19007, 7870,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007, 19007,19007,19007,19007, 7875,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7876,19007,19007,19007,19007, 7875,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 7879,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7880,19007, 19007,19007,19007, 7879,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 7882, 7883,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3370, 1004, 1004,19007,19007,19007,19007, 19007,19007,19007, 7883, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007, 7885, 7885, 7885, 7885, 7885, 7885, 7885, 7885, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 7886,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 7886,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007, 19007,19007,19007, 7888, 7889,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004,19007,19007,19007,19007,19007,19007,19007, 7889, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 19007, 1004, 5195,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007, 19007,19007,19007,19007, 7891,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7892,19007,19007,19007,19007, 7891,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 7896,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7897,19007, 19007,19007,19007, 7896,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 7901,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7902,19007,19007,19007,19007, 7901, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007, 19007,19007, 7906,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7907,19007,19007,19007,19007, 7906,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 7910,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7911, 19007,19007,19007,19007,19007, 3370, 1004, 1004,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7911, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 7913,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7914,19007, 19007,19007,19007, 7913,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 7916,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 1004, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 7917,19007,19007,19007,19007, 7916, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007, 19007,19007, 7922,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7923,19007,19007,19007,19007, 7922,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 7927,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004, 19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7928,19007,19007,19007, 19007, 7927,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 19007, 1004, 5195,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007, 19007,19007,19007,19007, 7931,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7932,19007,19007,19007,19007, 19007, 3370, 1004, 1004,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7932, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 7934,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7935,19007,19007,19007,19007, 7934, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007, 19007,19007, 7943,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007, 7944, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 7943, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007, 19007,19007, 7944,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7945,19007,19007,19007,19007, 7946, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007, 19007,19007,19007,19007, 7956,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7957,19007,19007,19007, 19007, 5945, 5945, 5945,19007,19007,19007, 7958,19007, 7959, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7957, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 7956,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7957, 19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007, 7958,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7957, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5947, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 5948,19007,19007,19007,19007,19007, 7961,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 19007,19007,19007, 5949, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5947, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 5948,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007, 5949,19007, 7962, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 665,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7963, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 665,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119,19007,19007,19007,19007,19007, 7964, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007, 19007, 7966,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 3979,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 7967, 19007,19007,19007,19007, 7966,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 7971,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 7972,19007,19007,19007,19007, 7971,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007, 19007,19007,19007, 7975,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 7976,19007,19007,19007,19007, 7975,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 7979, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 7980,19007,19007, 19007,19007, 7979,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 19007,19007,19007,19007,19007, 7982,19007, 7983,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7984, 7985, 7985,19007,19007,19007,19007,19007, 19007,19007,19007, 7986, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 7989,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 7990,19007,19007,19007,19007, 7989,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007, 19007,19007,19007, 7994,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 7995,19007,19007,19007,19007, 7994,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 7999, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 8000,19007,19007, 19007,19007, 7999,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 19007,19007,19007,19007,19007, 8003,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 8004,19007,19007,19007,19007, 8003,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 8005, 2841, 5957, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 8005,19007,19007,19007, 19007, 8007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 8005, 8005, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 8009,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 8010,19007,19007,19007,19007, 8009, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007, 19007,19007, 8013,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 8014,19007,19007,19007,19007, 8013,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 8017,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 8018,19007,19007,19007, 19007, 8017,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 8019, 2841, 5957,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 8019, 19007,19007,19007,19007, 8021,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3982, 2841, 2841, 8019, 8019, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 4352, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2195, 119, 119,19007, 19007,19007,19007, 8029, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 4352,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2195, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8030, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 903, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 665,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8032, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 8035, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 8034, 119, 119, 119, 8034, 8036, 8036, 8036, 8036, 8036, 8036, 8036, 8036, 8036, 119, 119, 119, 119, 119, 119, 119, 8036, 8036, 8036, 8036, 8036, 8037, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 119, 119, 119, 119, 8036, 8036, 8036, 8036, 8036, 8036, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007, 19007,19007, 7387,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 2897,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 7388,19007,19007,19007,19007, 7387,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 8049,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778, 19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 8050,19007,19007,19007, 19007, 8049,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778, 19007, 778, 778,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007, 19007,19007,19007,19007, 8054,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 8055,19007,19007,19007,19007, 8054,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 8059,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2898, 778, 778, 778, 778, 778, 778, 8060,19007, 19007,19007,19007, 8059,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 8064,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 8065,19007,19007,19007,19007, 8064, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007, 19007,19007, 8068,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 8069,19007,19007,19007,19007, 8068,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 8071,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8072,19007,19007, 2900, 778, 778,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8072, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 778, 778, 778, 778, 778, 778, 778,19007,19007, 19007,19007,19007, 8074,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778, 8075, 8075, 8075, 8075, 8075, 8075, 8075, 8075, 8075, 778, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 8074,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 778, 778, 4040, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 8078, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 8079,19007,19007, 19007,19007, 8078,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 19007,19007,19007,19007,19007, 8081,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8082, 19007,19007, 2900, 778, 778,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8082, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 8084,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2898, 778, 778, 778, 778, 778, 778, 8085,19007, 19007,19007,19007, 8084,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 8089,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778, 8090,19007,19007,19007,19007, 8089, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 778, 778, 778, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 8100,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 6380, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 8101,19007,19007,19007,19007, 8100,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2195, 119, 119, 6380, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 8105,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 8106, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 2917, 2192,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119, 8107, 19007,19007,19007,19007, 8105,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3482, 119, 119, 8106, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 8108,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3482, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 8110,19007,19007,19007, 19007, 8108,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 8114, 8115, 8115, 8115, 8115, 8115, 8115, 8115, 8115, 6835,19007,19007,19007,19007,19007,19007, 8115, 8115, 8115, 8115, 8115, 8116,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8115, 8115, 8115, 8115, 8115, 8115, 8115, 8115, 8115, 8115, 8115, 8115, 8115, 8115, 8115, 6837,19007, 19007,19007,19007,19007,19007, 8115, 8115, 8115, 8115, 8115, 8116,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8115, 8115, 8115, 8115, 8115, 8115, 8118, 8119, 8119, 8119, 8119, 8119, 8119, 8119, 8119, 8120,19007,19007,19007, 19007,19007,19007, 8119, 8119, 8119, 8119, 8119, 8121,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8119, 8119, 8119, 8119, 8119, 8119, 8123, 8123, 8123, 8123, 8123, 8123, 8123, 8123, 8123,19007,19007,19007,19007,19007,19007, 19007, 8123, 8123, 8123, 8123, 8123, 8124,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3504,19007,19007,19007, 8123, 8123, 8123, 8123, 8123, 8125, 8128, 8129, 8129, 8129, 8129, 8129, 8129, 8129, 8129, 7493,19007,19007,19007,19007,19007,19007, 8129, 8129, 8129, 8129, 8129, 8130,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8129, 8129, 8129, 8129, 8129, 8129, 8131, 8131, 8131, 8131, 8131, 8131, 8131, 8131, 8131, 19007,19007,19007,19007,19007,19007,19007, 8131, 8131, 8131, 8131, 8131, 8132,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8131, 8131, 8131, 8131, 8131, 8133, 8138, 8139, 8139, 8139, 8139, 8139, 8139, 8139, 8139, 7505,19007, 19007,19007,19007,19007,19007, 8139, 8139, 8139, 8139, 8139, 8140,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8139, 8139, 8139, 8139, 8139, 8139, 8141, 8141, 8141, 8141, 8141, 8141, 8141, 8141, 8141,19007,19007,19007,19007, 19007,19007,19007, 8141, 8141, 8141, 8141, 8141, 8142,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8141, 8141, 8141, 8141, 8141, 8143, 8149, 8150, 8150, 8150, 8150, 8150, 8150, 8150, 8150, 7519,19007,19007,19007,19007,19007, 19007, 8150, 8150, 8150, 8150, 8150, 8151,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8150, 8150, 8150, 8150, 8150, 8150, 8152, 8152, 8152, 8152, 8152, 8152, 8152, 8152, 8152,19007,19007,19007,19007,19007,19007,19007, 8152, 8152, 8152, 8152, 8152, 8153,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8152, 8152, 8152, 8152, 8152, 8154, 7543,19007, 6129, 6129, 6129, 6129, 6129, 6129, 6129, 6129, 6129, 6132,19007,19007,19007,19007,19007,19007, 6129, 6129, 6129, 6129, 6129, 6131,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 6129, 6129, 6129, 6129, 6129, 6129, 8163, 8164, 8164, 8164, 8164, 8164, 8164, 8164, 8164, 6873,19007,19007,19007,19007,19007,19007, 8164, 8164, 8164, 8164, 8164, 8165,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8164, 8164, 8164, 8164, 8164, 8164, 8167, 8168, 8168, 8168, 8168, 8168, 8168, 8168, 8168, 8169,19007, 19007,19007,19007,19007,19007, 8168, 8168, 8168, 8168, 8168, 8170,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8168, 8168, 8168, 8168, 8168, 8168, 8177, 8178, 8179, 8180, 8180, 8180, 8180, 8180, 8180,19007,19007,19007,19007, 19007,19007,19007, 6142, 6142, 6142, 6142, 6142, 6146,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 6142, 6142, 6142, 6142, 6142, 6142, 8185, 8185, 8185, 8185, 8185, 8185, 8185, 8185, 8185, 5450,19007,19007,19007,19007,19007, 19007, 6139, 6139, 6139, 6139, 6139, 6140,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 6139, 6139, 6139, 6139, 6139, 6139, 366,19007,19007,19007,19007,19007,19007, 2010,19007, 6228, 6228, 6228, 6228, 6228, 6228, 6228, 6228, 6228, 4807,19007,19007,19007,19007,19007,19007, 6228, 6228, 6228, 6228, 6228, 6229,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 209,19007,19007,19007, 6228, 6228, 6228, 6228, 6228, 6228, 378,19007,19007,19007,19007,19007,19007, 2035,19007, 6249, 6249, 6249, 6249, 6249, 6249, 6249, 6249, 6249, 4836,19007, 19007,19007,19007,19007,19007, 6249, 6249, 6249, 6249, 6249, 6250,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 6249, 6249, 6249, 6249, 6249, 6249,19007,19007,19007, 19007,19007,19007,19007, 221, 8236,19007,19007, 1381,19007, 19007,19007,19007,19007,19007, 1382,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1383, 19007, 1384,19007, 1385,19007,19007, 1386,19007,19007,19007, 19007, 1387,19007,19007, 1388,19007, 1389,19007, 1390,19007, 1391, 1392, 1393, 2525, 2526,19007,19007,19007,19007, 1380, 19007,19007,19007,19007,19007,19007,19007, 8239,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2527,19007, 3035,19007,19007,19007, 19007, 2528,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2529,19007, 2530,19007, 2532, 19007,19007, 2533,19007,19007,19007,19007, 2535,19007,19007, 2536,19007, 2537,19007, 2538,19007, 2539, 2540, 2541, 2525, 2526, 6962,19007,19007,19007, 1380,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2527,19007,19007,19007,19007,19007,19007, 2528,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2529,19007, 2530,19007, 2532,19007,19007, 2533,19007, 19007,19007,19007, 2535,19007,19007, 2536,19007, 2537,19007, 2538,19007, 2539, 2540, 2541, 1713,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 1714,19007,19007, 19007,19007,19007,19007, 1715,19007,19007,19007,19007,19007, 8243,19007,19007,19007,19007,19007,19007,19007, 1716,19007, 1717,19007, 1718,19007,19007, 1719,19007,19007,19007,19007, 1720,19007,19007, 1721,19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 1713,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 1714,19007,19007,19007,19007,19007, 19007, 1715,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 1716,19007, 1717,19007, 1718, 19007,19007, 8244,19007,19007,19007,19007, 2097,19007,19007, 1721,19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 8245, 19007,19007,19007,19007,19007,19007,19007, 1713,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1714, 19007,19007,19007,19007,19007,19007, 1715,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1716,19007, 1717,19007, 1718,19007,19007, 1719,19007,19007, 19007,19007, 1720,19007,19007, 1721,19007, 1722,19007, 1723, 19007, 1724, 1725, 1726, 2525, 8246,19007,19007,19007,19007, 1712,19007,19007, 3072,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3073,19007,19007,19007,19007, 19007,19007, 3074,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3075,19007, 3076,19007, 3078,19007,19007, 3079,19007,19007,19007,19007, 3081,19007, 19007, 3082,19007, 3083,19007, 3084,19007, 3085, 3086, 3087, 2525, 3071,19007,19007,19007,19007, 1712,19007,19007, 3072, 8247, 8247, 8247, 8247, 8247, 8247, 8247, 8247, 8247,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3073,19007,19007,19007,19007,19007,19007, 3074,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3075,19007, 3076,19007, 3078,19007,19007, 3079, 19007,19007,19007,19007, 3081,19007,19007, 3082,19007, 3083, 19007, 3084,19007, 3085, 3086, 3087, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3657,19007, 19007,19007,19007,19007,19007,19007, 8250,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3658, 1713,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 1714,19007,19007,19007,19007, 19007,19007, 1715,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 1716,19007, 1717,19007, 1718,19007,19007, 1719,19007,19007,19007,19007, 1720,19007, 2093, 8253,19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 2168,19007, 6321, 6321, 6321, 6321, 6321, 6321, 6321, 6321, 6321, 4935,19007,19007,19007,19007,19007,19007, 6321, 6321, 6321, 6321, 6321, 6322,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 6321, 6321, 6321, 6321, 6321, 6321, 6358, 6358, 6358, 6358, 6358, 6358, 6358, 6358, 6358, 4984, 19007,19007,19007,19007,19007, 264, 6358, 6358, 6358, 6358, 6358, 6359,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 6358, 6358, 6358, 6358, 6358, 6358, 119, 119, 19007, 119, 119, 119, 8256, 119, 119, 124, 249, 119, 124, 124, 124, 124, 124, 124, 124, 124, 124, 119, 119, 119, 119, 119, 119, 264, 417, 417, 417, 417, 417, 418, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 119, 119, 119, 119, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 8267,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2193, 119, 119, 119, 119, 119, 119, 8268,19007, 19007,19007,19007, 8267,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 8272,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 8273,19007,19007,19007,19007, 8272, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 8277,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 8278,19007,19007,19007,19007, 8277,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 8282,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 8283,19007,19007,19007, 19007, 8282,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 8287,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 8288,19007,19007,19007,19007, 8287,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 8292,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2193, 119, 119, 119, 119, 119, 119, 8293,19007, 19007,19007,19007, 8292,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 8296,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8297,19007,19007, 19007,19007,19007, 2195, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8297, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 8299,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 8300,19007,19007,19007, 19007, 8299,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 8302,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 8303,19007,19007,19007,19007, 8302,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 8308,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2193, 119, 119, 119, 119, 119, 119, 8309,19007, 19007,19007,19007, 8308,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 8313,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 8314,19007,19007,19007,19007, 8313, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 8317,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8318,19007,19007,19007,19007,19007, 2195, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8318, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 8320,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 8321,19007,19007,19007,19007, 8320,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2195, 119, 119, 277, 277,19007, 287, 277, 277, 277, 277, 277, 667, 280, 277, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 917, 277, 277, 277, 277, 277, 277, 8325, 8325, 8325, 8325, 8325, 8326, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669, 8324, 8324, 8324, 8324, 8324, 8324, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 278,19007,19007,19007, 19007,19007,19007,19007,19007, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8325, 8325, 8325, 8325, 8325, 8325, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 119, 119,19007, 119, 119, 119, 7696, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 7088,19007,19007, 8329,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119,19007, 8255, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 4352, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2195, 119, 119, 277, 277,19007, 8330, 277, 277, 277, 277, 277,19007, 8332, 277,19007,19007,19007,19007,19007,19007,19007,19007,19007, 277, 277, 277, 277, 277, 277, 277,19007,19007,19007, 19007,19007, 8333,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 277, 277, 277, 8334, 277, 277,19007, 8330, 277, 277, 277, 277, 277, 8331, 8332, 277, 8335, 8336, 8336, 8336, 8336, 8336, 8336, 8336, 8336, 8337, 277, 277, 277, 277, 277, 277, 8336, 8336, 8336, 8336, 8336, 8338, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 277, 277, 277, 8334, 8336, 8336, 8336, 8336, 8336, 8336, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 277, 277,19007, 8330, 277, 277, 277, 277, 277,19007, 277, 277,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 277, 277, 277, 277, 277, 277, 277, 19007,19007,19007,19007,19007, 8341,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 277, 277, 277, 277, 277,19007, 8330, 277, 277, 277, 277, 277,19007, 8332, 277,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 277, 277, 277, 277, 277, 277, 277, 8345,19007,19007,19007,19007, 8333,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 277, 277, 277, 8334, 119, 119,19007, 6490, 119, 119, 119, 119, 119,19007, 119, 119, 8349, 8349, 8349, 8349, 8349, 8349,19007,19007,19007, 8350, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 665,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 277, 277,19007, 8351, 277, 277, 277, 277, 277,19007, 8332, 277,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 906, 277, 277, 277, 277, 277, 277, 19007,19007,19007,19007,19007, 8353,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 277, 277, 277, 8354, 277, 277,19007, 8351, 277, 277, 277, 277, 277, 8352, 8332, 277, 8355, 8356, 8356, 8356, 8356, 8356, 8356, 8356, 8356, 8357, 277, 277, 277, 277, 277, 277, 8356, 8356, 8356, 8356, 8356, 8358, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 277, 277, 277, 8354, 8356, 8356, 8356, 8356, 8356, 8356, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 277, 277,19007, 8351, 277, 277, 277, 277, 277,19007, 277, 277,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 906, 277, 277, 277, 277, 277, 277,19007,19007,19007,19007,19007, 8361,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 277, 277, 277, 277, 277, 19007, 8351, 277, 277, 277, 277, 277,19007, 8332, 277, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 906, 277, 277, 277, 277, 277, 277, 8364,19007,19007,19007, 19007, 8353,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 277, 277, 277, 8354, 119, 119,19007, 7104, 119, 119, 119, 119, 119,19007, 119, 119, 8366, 8366, 8366, 8366, 8366, 8366, 19007,19007,19007, 8350, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 662,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119,19007, 7104, 119, 119, 119, 6491, 119, 7121, 119, 119, 7726, 7726, 7726, 7726, 7726, 7726, 7726, 7726, 7726, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 662,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7122, 119, 119, 119, 277, 277, 19007, 6496, 277, 277, 277, 277, 277,19007, 280, 277, 8367, 8367, 8367, 8367, 8367, 8367,19007,19007,19007, 8368, 277, 277, 277, 277, 277, 277,19007,19007,19007,19007, 19007, 668,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 277, 277, 277, 669, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 137, 119, 8369, 8369, 8370,19007,19007,19007, 19007,19007,19007, 903, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 672,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 661, 119, 119,19007, 7104, 119, 119, 119, 6491, 119, 7728, 137, 119, 7729, 7729, 7729, 7729, 7729, 7729, 7729, 7729, 7729, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 672, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7730, 119, 119, 119, 661, 119,19007, 671,19007,19007, 671, 671, 671, 671, 671, 671, 671, 671, 671,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 671, 119,19007,19007,19007, 119,19007, 661, 19007,19007, 7725, 7725, 7725, 7725, 7725, 7725, 7725, 7725, 7725,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 661, 119,19007,19007,19007, 119,19007, 661,19007,19007, 7725, 7725, 7725, 7725, 7725, 661, 661, 661, 661,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 661, 8374, 8374, 8374, 8374, 8374, 8374, 8374, 8374, 8374,19007,19007,19007,19007, 19007,19007,19007, 8374, 8374, 8374, 8374, 8374, 8375,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8374, 8374, 8374, 8374, 8374, 8374, 119, 119,19007, 7135, 119, 119, 119, 119, 119, 6515, 7133, 119, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 119, 119, 119, 119, 119, 119, 119, 7739, 7739, 7739, 7739, 7739, 7740, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 119, 119, 119, 119, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 7133, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7134,19007,19007, 8378,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 8379,19007,19007,19007, 19007, 7769,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 8381,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8382,19007,19007,19007, 19007, 119, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8382, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 8383, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7134,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 19007, 7135, 119, 119, 119, 119, 119, 7136, 7133, 119, 8388, 8389, 8389, 8389, 8389, 8389, 8389, 8389, 8389, 7140, 119, 119, 119, 119, 119, 119, 8389, 8389, 8389, 8389, 8389, 8390, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 119, 119, 119, 7142, 8389, 8389, 8389, 8389, 8389, 8389, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 8392, 8393, 8393, 8393, 8393, 8393, 8393, 8393, 8393, 8394,19007,19007,19007, 19007,19007,19007, 8393, 8393, 8393, 8393, 8393, 8395,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8393, 8393, 8393, 8393, 8393, 8393, 7135,19007,19007,19007,19007, 19007,19007,19007,19007, 8397, 8398, 8398, 8398, 8398, 8398, 8398, 8398, 8398,19007,19007,19007,19007,19007,19007,19007, 8398, 8398, 8398, 8398, 8398, 8399,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8398, 8398, 8398, 8398, 8398, 8400, 119, 119,19007, 7135, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 8402,19007,19007,19007,19007, 7756,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 8404, 8405, 8405, 8405, 8405, 8405, 8405, 8405, 8405, 8406,19007,19007,19007,19007,19007, 19007, 8405, 8405, 8405, 8405, 8405, 8407,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8405, 8405, 8405, 8405, 8405, 8405, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 119,19007,19007,19007,19007,19007,19007, 7136, 7136, 7136, 7136, 7136, 7150,19007,19007,19007,19007,19007, 8412,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7136, 7136, 7136, 7136, 7136, 7136, 119, 119,19007, 6527, 119, 119, 119, 119, 119, 5821, 6525, 119, 5821, 5821, 5821, 5821, 5821, 5821, 5821, 5821, 5821, 119, 119, 119, 119, 119, 119, 119, 7152, 7152, 7152, 7152, 7152, 7153, 7152, 7152, 8414, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 119, 119, 119, 119, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 6525, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 6526,19007,19007,19007,19007,19007, 8415, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 8418,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 8420,19007,19007,19007,19007, 8418,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007, 19007,19007,19007, 8425,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421, 8427,19007,19007,19007,19007, 8425,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007, 8430, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421, 8431,19007,19007, 19007,19007, 8430,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421, 19007,19007,19007,19007,19007, 8433,19007, 8434,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8435, 8436, 8436,19007,19007,19007,19007,19007, 19007,19007,19007, 8437, 119,19007,19007,19007,19007,19007, 19007, 119,19007, 8438, 8439, 8440, 8441, 8441, 8441, 8441, 8441, 8441,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7152, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 7776, 119, 7160, 7160, 7160, 7160, 7160, 7160, 7160, 7160, 7160, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 6526,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 6527, 119, 119, 119, 119, 119,19007, 6525, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 6532, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 6544,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 6534, 119, 119,19007, 6527, 119, 119, 119, 119, 119,19007, 6525, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 6536, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6544, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 6534, 8442, 8443, 8443, 8443, 8443, 8443, 8443, 8443, 8443, 7787, 19007,19007,19007,19007,19007,19007, 8443, 8443, 8443, 8443, 8443, 8444,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8443, 8443, 8443, 8443, 8443, 8443, 8445, 8446, 8446, 8446, 8446, 8446, 8446, 8446, 8446, 8447,19007,19007, 19007,19007,19007,19007, 8446, 8446, 8446, 8446, 8446, 8448, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8446, 8446, 8446, 8446, 8446, 8446, 6527,19007,19007,19007, 19007,19007,19007,19007,19007, 8451, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8453,19007,19007,19007,19007,19007, 19007, 8452, 8452, 8452, 8452, 8452, 8454,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8452, 8452, 8452, 8452, 8452, 8452, 119, 119,19007, 6527, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7172,19007,19007, 8459, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 8460, 8461, 8461, 8461, 8461, 8461, 8461, 8461, 8461, 7799,19007,19007,19007,19007, 19007,19007, 8461, 8461, 8461, 8461, 8461, 8462,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8461, 8461, 8461, 8461, 8461, 8461, 8463, 8464, 8464, 8464, 8464, 8464, 8464, 8464, 8464,19007,19007,19007,19007,19007,19007,19007, 8464, 8464, 8464, 8464, 8464, 8465,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8464, 8464, 8464, 8464, 8464, 8466, 119, 119,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 8471, 119, 119, 19007,19007,19007,19007,19007, 7806,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 8471, 119, 119, 8472,19007,19007,19007,19007, 7806, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 119, 7179, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 6542,19007,19007,19007,19007,19007, 8473, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 8476,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 8478,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8479,19007,19007,19007,19007, 119, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8479, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119, 8480,19007, 19007,19007,19007, 8476,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 8481,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 120,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 8485,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 8486,19007,19007,19007,19007, 8485,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 8489, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 8490,19007,19007, 19007,19007, 8489,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 8492, 8493,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 7812,19007,19007,19007,19007,19007, 19007,19007, 8493, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 8495,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119,19007, 8481, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 8495, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 8497, 8498,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812,19007,19007,19007,19007,19007,19007,19007, 8498, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 903, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 665,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8503, 119, 119,19007, 8522, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 665,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 7860, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 3367,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 7861,19007,19007, 19007,19007, 7860,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 19007,19007,19007,19007,19007, 8536,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 8537,19007,19007,19007,19007, 8536,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004, 19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007, 19007, 8541,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 8542, 19007,19007,19007,19007, 8541,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 8546,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 8547,19007,19007,19007,19007, 8546,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007, 19007,19007,19007, 8551,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 8552,19007,19007,19007,19007, 8551,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 8555, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 8556,19007,19007, 19007,19007, 8555,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 19007,19007,19007,19007,19007, 8558,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8559, 19007,19007, 3370, 1004, 1004,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8559, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 8561,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004, 8562, 8562, 8562, 8562, 8562, 8562, 8562, 8562, 8562, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007, 19007,19007,19007, 8561,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 4562, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 8565,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 8566,19007,19007,19007,19007, 8565, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007, 19007,19007, 8568,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8569,19007,19007, 3370, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8569, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 8571,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 8572,19007,19007,19007,19007, 8571,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007, 19007,19007,19007, 8576,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 8577,19007,19007,19007,19007, 8576,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 1004, 1004, 1004, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 8591, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007, 19007,19007, 8593, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 8594,19007,19007,19007,19007, 8591,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 8593, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007, 19007,19007,19007, 8600,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 8601, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 8602,19007,19007,19007,19007, 8600,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945, 19007,19007,19007, 8601, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 8604,19007, 8605, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8606, 8607, 8607,19007,19007,19007, 8608,19007,19007,19007,19007, 8609, 5945, 5945,19007, 8613, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5947, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 5948, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007, 19007,19007, 5949, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 5947, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 5948,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 5945, 5945, 5945,19007,19007,19007, 5949, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8614, 119, 119,19007, 656, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 903, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 665,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8615, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 665, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119,19007, 19007,19007,19007, 8616, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 8618,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 8619,19007,19007,19007,19007, 8618,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007, 19007,19007,19007, 8623,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 8624,19007,19007,19007,19007, 8623,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 8628, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 8629,19007,19007, 19007,19007, 8628,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 19007,19007,19007,19007,19007, 8633,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 8634,19007,19007,19007,19007, 8633,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007, 19007, 8637,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 8638, 19007,19007,19007,19007, 8637,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 8640, 8641,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3982, 2841, 2841,19007,19007,19007, 19007,19007,19007,19007, 8641, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 6406, 6406, 6406, 6406, 6406, 6406, 6406, 6406, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6407,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007, 19007, 8643,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007, 19007,19007,19007,19007, 8645, 8646,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3982, 2841, 2841,19007,19007,19007,19007,19007,19007, 19007, 8646, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 19007,19007,19007,19007,19007, 8648,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 8649,19007,19007,19007,19007, 8648,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007, 19007, 8653,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 5957,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 8654, 19007,19007,19007,19007, 8653,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 8658,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 8659,19007,19007,19007,19007, 8658,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007, 19007,19007,19007, 8663,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 8664,19007,19007,19007,19007, 8663,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 8667, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8668,19007,19007,19007,19007,19007, 3982, 2841, 2841,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8668, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007, 19007, 8670,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 5957,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 8671, 19007,19007,19007,19007, 8670,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 8673,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 8674,19007,19007,19007,19007, 8673,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007, 19007,19007,19007, 8678,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 8679,19007,19007,19007,19007, 8678,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 8683, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 8684,19007,19007, 19007,19007, 8683,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 19007,19007,19007,19007,19007, 8687,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8688,19007,19007,19007, 19007,19007, 3982, 2841, 2841,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8688, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 8690,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 8691,19007,19007,19007,19007, 8690,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 119, 119,19007, 8699, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 5009,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 5009,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2195, 119, 119,19007,19007,19007,19007, 19007, 8700, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 903, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 665,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8702, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 8705,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 8706,19007,19007, 19007,19007, 8705,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 8711,19007,19007,19007,19007,19007,19007, 19007,19007, 8712, 8712, 8712, 8712, 8712, 8712, 8712, 8712, 8712,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 1023,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8711, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 8720,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2898, 778, 778, 778, 778, 778, 778, 8721,19007, 19007,19007,19007, 8720,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 8725,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 8726,19007,19007,19007,19007, 8725, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007, 19007,19007, 8730,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 8731,19007,19007,19007,19007, 8730,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 8735,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778, 19007, 778, 778, 778, 778, 778, 778,19007, 778, 778, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 8736,19007,19007,19007, 19007, 8735,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778, 19007, 778, 778,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007, 19007,19007,19007,19007, 8740,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 8741,19007,19007,19007,19007, 8740,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 8744,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2898, 778, 778, 778, 778, 778, 778, 8745,19007, 19007,19007,19007, 8744,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778, 8746, 778, 778,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 8746,19007,19007,19007,19007, 8748,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2900, 778, 778, 8746, 8746, 778, 778, 19007, 778, 778, 778, 778, 778, 778,19007, 778, 778, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007, 19007, 8750,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778, 19007, 778, 778,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 778, 778, 778, 778, 778, 778, 778, 8751, 19007,19007,19007,19007, 8750,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 8755,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 8756,19007,19007,19007,19007, 8755,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007, 19007,19007,19007, 8759,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 8760,19007,19007,19007,19007, 8759,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778, 8761, 778, 778,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 8761,19007,19007,19007,19007, 8763, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2900, 778, 778, 8761, 8761, 4661, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 2898,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 1023,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900,19007, 4040, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 8100,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2195, 119, 119, 6380, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 8101,19007,19007,19007,19007, 8100,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 6380, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 2917, 2192,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 8105,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3482, 119, 119, 8106, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 2917, 2192,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 8107,19007,19007,19007,19007, 8105,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3482, 119, 119, 8106, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 8108,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3482, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 8110,19007,19007,19007,19007, 8108,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3482, 119, 119, 8768, 8769, 8769, 8769, 8769, 8769, 8769, 8769, 8769, 8120,19007,19007,19007,19007,19007, 19007, 8769, 8769, 8769, 8769, 8769, 8770,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8769, 8769, 8769, 8769, 8769, 8769, 8771, 8771, 8771, 8771, 8771, 8771, 8771, 8771, 8771, 8772,19007,19007,19007,19007,19007,19007, 8771, 8771, 8771, 8771, 8771, 8773,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8771, 8771, 8771, 8771, 8771, 8774, 8777, 8777, 8777, 8777, 8777, 8777, 8777, 8777, 8777, 8778,19007,19007,19007,19007,19007,19007, 8777, 8777, 8777, 8777, 8777, 8779,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3504, 19007,19007,19007, 8777, 8777, 8777, 8777, 8777, 8777, 8783, 8784, 8784, 8784, 8784, 8784, 8784, 8784, 8784, 7493,19007, 19007,19007,19007,19007,19007, 8784, 8784, 8784, 8784, 8784, 8785,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8784, 8784, 8784, 8784, 8784, 8784, 8787, 8787, 8787, 8787, 8787, 8787, 8787, 8787, 8787, 8788,19007,19007,19007, 19007,19007,19007, 8787, 8787, 8787, 8787, 8787, 8789,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8787, 8787, 8787, 8787, 8787, 8787, 8795, 8796, 8796, 8796, 8796, 8796, 8796, 8796, 8796, 7505,19007,19007,19007,19007,19007, 19007, 8796, 8796, 8796, 8796, 8796, 8797,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8796, 8796, 8796, 8796, 8796, 8796, 8799, 8799, 8799, 8799, 8799, 8799, 8799, 8799, 8799, 8800,19007,19007,19007,19007,19007,19007, 8799, 8799, 8799, 8799, 8799, 8801,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8799, 8799, 8799, 8799, 8799, 8799, 8807, 8808, 8809, 8810, 8810, 8810, 8810, 8810, 8810, 19007,19007,19007,19007,19007,19007,19007, 6848, 6848, 6848, 6848, 6848, 6852,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 6848, 6848, 6848, 6848, 6848, 6848, 8811, 8812, 8812, 8812, 8812, 8812, 8812, 8812, 8812, 7519,19007, 19007,19007,19007,19007,19007, 8812, 8812, 8812, 8812, 8812, 8813,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8812, 8812, 8812, 8812, 8812, 8812, 8815, 8815, 8815, 8815, 8815, 8815, 8815, 8815, 8815, 8816,19007,19007,19007, 19007,19007,19007, 8815, 8815, 8815, 8815, 8815, 8817,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8815, 8815, 8815, 8815, 8815, 8815, 8823, 8824, 8825, 8826, 8826, 8826, 8826, 8826, 8826,19007,19007,19007,19007,19007,19007, 19007, 6859, 6859, 6859, 6859, 6859, 6863,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 6859, 6859, 6859, 6859, 6859, 6859, 7543,19007, 8827, 8827, 8827, 8827, 8827, 8827, 8827, 8827, 8827, 6132,19007,19007,19007,19007,19007, 19007, 6856, 6856, 6856, 6856, 6856, 6857,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 6856, 6856, 6856, 6856, 6856, 6856, 8828, 8829, 8829, 8829, 8829, 8829, 8829, 8829, 8829, 8169,19007,19007,19007,19007,19007,19007, 8829, 8829, 8829, 8829, 8829, 8830,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8829, 8829, 8829, 8829, 8829, 8829, 8831, 8831, 8831, 8831, 8831, 8831, 8831, 8831, 8831, 19007,19007,19007,19007,19007,19007,19007, 8831, 8831, 8831, 8831, 8831, 8832,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8831, 8831, 8831, 8831, 8831, 8833, 6872, 6872, 6872, 6872, 6872, 6872, 6872, 6872, 6872, 6875,19007, 19007,19007,19007,19007,19007, 6872, 6872, 6872, 6872, 6872, 6874,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 6872, 6872, 6872, 6872, 6872, 6872, 6868, 6868, 6868, 6868, 6868, 6868, 6868, 6868, 6868, 5450,19007,19007,19007, 19007,19007,19007, 6868, 6868, 6868, 6868, 6868, 6869,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 6868, 6868, 6868, 6868, 6868, 6868, 1381,19007,19007,19007,19007, 19007,19007, 1382,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 1383,19007, 1384,19007, 1385,19007,19007, 1386,19007,19007,19007, 8895, 1387,19007, 19007, 1388,19007, 1389,19007, 1390,19007, 1391, 1392, 1393, 2525, 2526,19007,19007,19007,19007, 1380,19007,19007,19007, 8897, 8897, 8897, 8897, 8897, 8897, 8897, 8897, 8897,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2527,19007,19007,19007,19007,19007,19007, 2528,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2529,19007, 2530,19007, 2532,19007,19007, 2533, 19007,19007,19007,19007, 2535,19007,19007, 2536,19007, 2537, 19007, 2538,19007, 2539, 2540, 2541, 2525, 2526,19007,19007, 19007,19007, 1380,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8898,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2527,19007,19007, 19007,19007,19007,19007, 2528,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2529,19007, 2530,19007, 2532,19007,19007, 2533,19007,19007,19007,19007, 2535,19007,19007, 2536,19007, 2537,19007, 2538,19007, 2539, 2540, 2541, 1713,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 1714,19007,19007,19007,19007,19007, 19007, 1715,19007,19007,19007,19007,19007, 8900,19007,19007, 19007,19007,19007,19007,19007, 1716,19007, 1717,19007, 1718, 19007,19007, 1719,19007,19007,19007,19007, 1720,19007,19007, 1721,19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 1713, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 1714,19007,19007,19007,19007,19007,19007, 1715,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 1716,19007, 1717,19007, 1718,19007,19007, 1719, 19007,19007,19007,19007, 1720,19007, 2093, 8901,19007, 1722, 19007, 1723,19007, 1724, 1725, 1726, 1713,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8902,19007,19007, 1714,19007, 19007,19007,19007,19007,19007, 1715,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1716, 19007, 1717,19007, 1718,19007,19007, 1719,19007,19007,19007, 19007, 1720,19007,19007, 1721,19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 2525, 3071,19007,19007,19007,19007, 1712, 19007,19007, 3072,19007,19007,19007,19007, 8903,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3073,19007, 3648,19007,19007,19007, 19007, 3074,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3075,19007, 3076,19007, 3078, 19007,19007, 3079,19007,19007,19007,19007, 3081,19007,19007, 3082,19007, 3083,19007, 3084,19007, 3085, 3086, 3087, 2525, 3071, 7616,19007,19007,19007, 1712,19007,19007, 3072,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3073,19007,19007,19007,19007,19007,19007, 3074,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3075,19007, 3076,19007, 3078,19007,19007, 3079,19007, 19007,19007,19007, 3081,19007,19007, 3082,19007, 3083,19007, 3084,19007, 3085, 3086, 3087, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 8267,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 3761, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 8268,19007,19007,19007, 19007, 8267,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 8923,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 8924,19007,19007,19007,19007, 8923,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 8928,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2193, 119, 119, 119, 119, 119, 119, 8929,19007, 19007,19007,19007, 8928,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 8933,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 8934,19007,19007,19007,19007, 8933, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 8940,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 277, 277,19007, 287, 277, 277, 277, 277, 277, 667, 280, 277, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 917, 277, 277, 277, 277, 277, 277, 8943, 8943, 8943, 8943, 8943, 8944, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669, 8942, 8942, 8942, 8942, 8942, 8942, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 278,19007,19007,19007,19007,19007,19007,19007, 19007, 8943, 8943, 8943, 8943, 8943, 8943, 8943, 8943, 8943, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8943, 8943, 8943, 8943, 8943, 8943, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 119, 119, 19007, 119, 119, 119, 7696, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 7088,19007,19007,19007,19007,19007, 8947,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 7135, 119, 119, 119, 119, 119, 7155, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 8949,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8950,19007,19007, 19007,19007, 119, 119, 119, 7155,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8950, 277, 277,19007, 8330, 277, 277, 277, 277, 277, 8331, 8332, 277,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 277, 277, 277, 277, 277, 277, 277,19007,19007,19007,19007,19007, 8952,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 277, 277, 277, 8334, 119, 119,19007, 119, 119, 119, 119, 119, 119, 6515, 119, 119, 8953, 8953, 8953, 8953, 8953, 8953, 8953, 8953, 8953, 119, 119, 119, 119, 119, 119, 119, 8954, 8954, 8954, 8954, 8954, 8955, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 119, 119, 119, 119, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 277, 277, 19007, 8330, 277, 277, 277, 277, 277, 8331, 8332, 277, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 277, 277, 277, 277, 277, 277, 277, 8956,19007,19007,19007, 19007, 8952,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 277, 277, 277, 8334, 277, 277,19007, 8330, 277, 277, 277, 277, 277, 8334, 277, 277,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 277, 277, 277, 277, 277, 277, 277, 19007,19007,19007,19007,19007, 8958,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 277, 277, 277, 8334, 8959, 8960, 8960, 8960, 8960, 8960, 8960, 8960, 8960, 8337,19007,19007,19007,19007, 19007,19007, 8960, 8960, 8960, 8960, 8960, 8961,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8960, 8960, 8960, 8960, 8960, 8960, 119, 119,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119, 8962, 8963, 8963, 8963, 8963, 8963, 8963, 8963, 8963, 7753, 119, 119, 119, 119, 119, 119, 8963, 8963, 8963, 8963, 8963, 8964, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 119, 119, 119, 119, 8963, 8963, 8963, 8963, 8963, 8963, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 277, 277,19007, 8330, 277, 277, 277, 277, 277, 8334, 277, 277,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 277, 277, 277, 277, 277, 277, 277, 8967,19007,19007,19007,19007, 8958,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 277, 277, 277, 8334, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119, 6494, 6494, 6494, 6494, 6494, 6494, 6494, 6494, 6494, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 665,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 7135, 119, 119, 119, 119, 119, 7155, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 8949,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8950,19007,19007,19007,19007, 899, 119, 119, 7155,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8950, 277, 277,19007, 8351, 277, 277, 277, 277, 277,19007, 8332, 277,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 906, 277, 277, 277, 277, 277, 277,19007,19007,19007,19007,19007, 8353,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 277, 277, 277, 8354, 277, 277,19007, 8351, 277, 277, 277, 277, 277,19007, 8332, 277,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 906, 277, 277, 277, 277, 277, 277, 8364,19007,19007,19007,19007, 8353,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 277, 277, 277, 8354, 277, 277,19007, 8351, 277, 277, 277, 277, 277, 19007, 277, 277,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 906, 277, 277, 277, 277, 277, 277,19007, 19007,19007,19007,19007, 8361,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 277, 277, 277, 8974, 8975, 8975, 8975, 8975, 8975, 8975, 8975, 8975, 8357,19007,19007,19007,19007,19007,19007, 8975, 8975, 8975, 8975, 8975, 8976,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8975, 8975, 8975, 8975, 8975, 8975, 277, 277,19007, 8351, 277, 277, 277, 277, 277,19007, 277, 277,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 906, 277, 277, 277, 277, 277, 277, 8978,19007,19007,19007,19007, 8361,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 277, 277, 277, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 7122, 7122, 7122, 7122, 7122, 7122, 7122, 7122, 7122, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 662,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 277, 277, 19007, 278, 277, 277, 277, 277, 277, 667, 280, 277, 6501, 6501, 6501, 6501, 6501, 6501, 6501, 6501, 6501, 906, 277, 277, 277, 277, 277, 277, 667, 667, 667, 667, 667, 668, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 277, 277, 277, 669, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 1171,19007,19007, 19007,19007,19007,19007,19007,19007, 8981, 8981, 8981, 8981, 8981, 8981, 453, 453, 453, 119,19007,19007,19007,19007, 19007,19007, 453, 453, 453, 453, 453, 454,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 453, 453, 453, 453, 453, 453, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 137, 119, 8982, 8982, 8982, 8982, 8982, 8982, 8982, 8982, 8982, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 672,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 661, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 137, 119, 8982, 8982, 8982, 8982, 8982,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 672,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 661, 8986, 8986, 8986, 8986, 8986, 8986, 8986, 8986, 8986,19007,19007,19007,19007,19007,19007,19007, 8986, 8986, 8986, 8986, 8986, 8987,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8986, 8986, 8986, 8986, 8986, 8986, 119, 119,19007, 7135, 119, 119, 119, 119, 119, 6515, 7133, 119, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 119, 119, 119, 119, 119, 119, 119, 7739, 7739, 7739, 7739, 7739, 7740, 7739, 7739, 8989, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 119, 119, 119, 119, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 7133, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 7134,19007,19007,19007,19007,19007, 8990,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 8418,19007,19007, 8991, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 8993, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 8994,19007,19007, 19007,19007, 8993,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 8996,19007, 8997,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8998, 8999, 8999,19007,19007,19007,19007,19007, 19007,19007,19007, 9000, 119,19007,19007,19007,19007,19007, 19007, 119,19007, 9001, 9002, 9003, 9004, 9004, 9004, 9004, 9004, 9004,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7739, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 8383, 119, 7744, 7744, 7744, 7744, 7744, 7744, 7744, 7744, 7744, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 7134,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 7135, 119, 119, 119, 119, 119,19007, 7133, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7140, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 7150,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 7142, 119, 119,19007, 7135, 119, 119, 119, 119, 119,19007, 7133, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7144, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7150, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 7142, 9005, 9006, 9006, 9006, 9006, 9006, 9006, 9006, 9006, 8394, 19007,19007,19007,19007,19007,19007, 9006, 9006, 9006, 9006, 9006, 9007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 9006, 9006, 9006, 9006, 9006, 9006, 9008, 9009, 9009, 9009, 9009, 9009, 9009, 9009, 9009, 9010,19007,19007, 19007,19007,19007,19007, 9009, 9009, 9009, 9009, 9009, 9011, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 9009, 9009, 9009, 9009, 9009, 9009, 7135,19007,19007,19007, 19007,19007,19007,19007,19007, 9014, 9015, 9015, 9015, 9015, 9015, 9015, 9015, 9015, 9016,19007,19007,19007,19007,19007, 19007, 9015, 9015, 9015, 9015, 9015, 9017,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 9015, 9015, 9015, 9015, 9015, 9015, 119, 119,19007, 7135, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7756,19007,19007, 9022, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 9023, 9024, 9024, 9024, 9024, 9024, 9024, 9024, 9024, 8406,19007,19007,19007,19007, 19007,19007, 9024, 9024, 9024, 9024, 9024, 9025,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 9024, 9024, 9024, 9024, 9024, 9024, 9026, 9027, 9027, 9027, 9027, 9027, 9027, 9027, 9027,19007,19007,19007,19007,19007,19007,19007, 9027, 9027, 9027, 9027, 9027, 9028,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 9027, 9027, 9027, 9027, 9027, 9029, 119, 119,19007, 6527, 119, 119, 119, 119, 119, 5821, 6525, 119, 5821, 5821, 5821, 5821, 5821, 5821, 5821, 5821, 5821, 119, 119, 119, 119, 119, 119, 119, 7152, 7152, 7152, 7152, 7152, 7153, 7152, 7152, 7152, 7152, 7152, 9036, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 119, 119, 119, 119, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 119, 119,19007, 857, 119, 119, 119, 119, 119, 19007, 6525, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 6526,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9038,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 9040,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 9041,19007,19007,19007,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 9041, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119, 9042, 19007,19007,19007,19007, 9038,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9046,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 8421, 8421, 19007, 8421, 8421, 8421, 8421, 8421, 8421, 9047, 8421, 8423, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007, 19007, 9049,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 9047, 119, 119,19007, 119, 119, 119, 119, 119, 119, 9039, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 9051,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 9052,19007,19007, 19007,19007, 119, 119, 119, 9039,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 9052, 119, 119,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9046,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421, 9047, 8421, 8423,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421, 9053,19007,19007, 19007,19007, 9049,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 9047, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421, 9057, 8421, 8423,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007, 9059,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8426, 8421, 8421, 9057, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421, 9057, 8421, 8423,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421, 9060,19007,19007,19007,19007, 9059,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 9057, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421, 9062, 8421, 8423,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007, 19007,19007,19007,19007, 9064,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8426, 8421, 8421, 9062, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421, 9062, 8421, 8423,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421, 9065,19007,19007,19007,19007, 9064,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8426, 8421, 8421, 9062, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421, 9066, 8421, 8423,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007, 19007,19007, 9068, 9069,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 9066,19007,19007,19007,19007,19007,19007, 9069, 119, 119,19007, 119, 119, 119, 119, 119, 119, 9070, 119, 119,19007, 9072, 9072, 9072, 9072, 9072, 9072, 9072, 9072, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 9073,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 9070, 119, 119,19007, 119, 119, 119, 119, 119, 119, 9070, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9073,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 9070, 8421, 8421, 19007, 8421, 8421, 8421, 8421, 8421, 8421, 9074, 8421, 8423, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007, 19007, 9076, 9077,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 9074,19007,19007,19007,19007,19007,19007, 9077, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 9078, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 6526,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 9083, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 7787,19007,19007,19007,19007,19007,19007, 9084, 9084, 9084, 9084, 9084, 9085,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 9084, 9084, 9084, 9084, 9084, 9084, 9087, 9088, 9088, 9088, 9088, 9088, 9088, 9088, 9088, 9089,19007,19007,19007,19007,19007,19007, 9088, 9088, 9088, 9088, 9088, 9090,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 9088, 9088, 9088, 9088, 9088, 9088, 6527, 19007,19007,19007,19007,19007,19007,19007,19007, 9092, 9093, 9093, 9093, 9093, 9093, 9093, 9093, 9093,19007,19007,19007, 19007,19007,19007,19007, 9093, 9093, 9093, 9093, 9093, 9094, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 9093, 9093, 9093, 9093, 9093, 9095, 9098, 9099, 9099, 9099, 9099, 9099, 9099, 9099, 9099, 8453,19007,19007,19007,19007, 19007,19007, 9099, 9099, 9099, 9099, 9099, 9100,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 9099, 9099, 9099, 9099, 9099, 9099, 9101, 9102, 9102, 9102, 9102, 9102, 9102, 9102, 9102,19007,19007,19007,19007,19007,19007,19007, 9102, 9102, 9102, 9102, 9102, 9103,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 9102, 9102, 9102, 9102, 9102, 9104, 119, 119,19007, 6527, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 7172,19007,19007,19007,19007, 19007, 9109,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 9110, 9111, 9111, 9111, 9111, 9111, 9111, 9111, 9111, 7799,19007,19007,19007,19007,19007, 19007, 9111, 9111, 9111, 9111, 9111, 9112,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 9111, 9111, 9111, 9111, 9111, 9111, 9114, 9115, 9115, 9115, 9115, 9115, 9115, 9115, 9115, 9116,19007,19007,19007,19007,19007,19007, 9115, 9115, 9115, 9115, 9115, 9117,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 9115, 9115, 9115, 9115, 9115, 9115, 119, 119,19007, 9124, 119, 119, 119, 119, 119, 6515, 119, 119, 6516, 6517, 6518, 6519, 6519, 6519, 6519, 6519, 6519, 6520, 119, 119, 119, 119, 119, 119, 6521, 6521, 6521, 6521, 6521, 6522, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 119, 119, 119, 119, 6521, 6521, 6521, 6521, 6521, 6521, 6523, 6523, 6523, 6523, 6523, 6524, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 119, 119,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 8471, 119, 119,19007,19007, 19007,19007,19007, 7806,19007,19007, 9125,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 857, 119, 119, 119, 119, 119, 119, 7179, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6542,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 19007, 7135, 119, 119, 119, 119, 119, 7155, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 7158,19007,19007,19007,19007,19007, 9126,19007,19007, 19007,19007,19007, 7159,19007,19007,19007,19007, 119, 119, 119, 7155,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7159, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 7810,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 9128,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 9129,19007,19007,19007,19007, 9128,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9131,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119, 9132,19007, 19007,19007,19007, 9131,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9134,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 9135,19007, 19007,19007,19007, 119, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 9135, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9139, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 9140,19007,19007, 19007,19007, 9139,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 9144,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 9145,19007,19007,19007,19007, 9144,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 9148,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 7810,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119, 9149, 19007,19007,19007,19007, 9148,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9151,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 9152,19007,19007, 119, 119, 7812,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 9152, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 9154,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 9155,19007,19007,19007,19007, 9154,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9157,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 9158,19007,19007,19007, 19007, 9157,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 7810,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 9160,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 9161,19007, 19007, 119, 119, 7812,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 9161, 119, 119,19007, 6527, 119, 119, 119, 119, 119,19007, 6525, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6544, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 6534, 19007,19007,19007,19007,19007,19007,19007, 9162, 119, 119, 19007, 656, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 665,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119,19007,19007,19007,19007, 9165, 119, 119,19007, 9183, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 665, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 9186, 19007,19007,19007,19007,19007,19007,19007,19007, 9187, 9187, 9187, 9187, 9187, 9187, 9187, 9187, 9187,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1266, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 9188, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 9196,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 9197,19007,19007,19007,19007, 9196, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007, 19007,19007, 9201,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 9202,19007,19007,19007,19007, 9201,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 9206,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004, 19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 9207,19007,19007,19007, 19007, 9206,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007, 19007,19007,19007,19007, 9211,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 9212,19007,19007,19007,19007, 9211,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 9216,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 9217,19007, 19007,19007,19007, 9216,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 9220,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 9221,19007,19007,19007,19007, 9220, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 9222, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 9222,19007,19007, 19007,19007, 9224,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 9222, 9222, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 9226,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 9227,19007,19007,19007,19007, 9226,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007, 19007,19007,19007, 9231,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 9232,19007,19007,19007,19007, 9231,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 9235, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 9236,19007,19007, 19007,19007, 9235,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 9237, 1004, 1004,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 9237,19007,19007,19007,19007, 9239,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3370, 1004, 1004, 9237, 9237, 1265,19007,19007, 19007,19007,19007,19007,19007, 5195, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 3368,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 1266,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3370,19007, 4562, 1265,19007,19007, 19007,19007,19007,19007,19007,19007, 9240, 9240, 9240, 9240, 9240, 9240, 9240, 9240, 9240,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 1266,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 1575, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 9246,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 9247, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007, 19007,19007,19007,19007, 9249,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 9250,19007,19007,19007, 19007, 5945, 5945, 5945,19007,19007,19007, 9251,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 9250, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 9252,19007,19007,19007,19007, 9246,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 9247, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945, 8589,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007, 19007,19007,19007,19007, 9260,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8592, 5945, 5945,19007,19007,19007, 9261, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 9262,19007,19007,19007, 19007, 9260,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 9261, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 9266,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007, 19007, 9267, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 9268,19007,19007,19007,19007, 9266,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8592, 5945, 5945,19007,19007,19007, 9267, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007, 19007,19007, 9270, 9271,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 9272,19007,19007,19007, 9271, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007, 9274, 9274, 9274, 9274, 9274, 9274, 9274, 9274, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007, 19007,19007,19007, 9275,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007, 9276, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 9275,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 19007,19007,19007, 9276, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 9279, 9280,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 9281,19007,19007,19007, 9280, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5947, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 5948,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007, 19007, 5949,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 9285, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 665,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 9286, 119, 119,19007, 9287, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 903, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 665,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 8618,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 3979,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 8619,19007,19007,19007,19007, 8618,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007, 19007,19007,19007, 9289,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 9290,19007,19007,19007,19007, 9289,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 9294, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 9295,19007,19007, 19007,19007, 9294,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 19007,19007,19007,19007,19007, 9299,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 9300,19007,19007,19007,19007, 9299,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007, 19007, 9304,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 9305, 19007,19007,19007,19007, 9304,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 9308,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 9309,19007,19007,19007,19007, 9308,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007, 19007,19007,19007, 9311,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 9312,19007,19007, 3982, 2841, 2841,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 9312, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 9314,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 9315,19007,19007,19007, 19007, 9314,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007, 19007,19007,19007,19007, 9317,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 9318,19007,19007,19007,19007, 9317,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 9320,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 9321,19007,19007, 3982, 2841, 2841, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 9321, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 19007,19007,19007,19007,19007, 9323,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 9324,19007,19007,19007,19007, 9323,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007, 19007, 9328,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 9329, 19007,19007,19007,19007, 9328,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2852, 2841, 2841, 2842,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 9334, 9334, 9334, 9334, 9334, 9334, 9334, 9334, 9334,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3392,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2852, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 5695,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2195, 119, 119,19007,19007,19007, 9341, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 903, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 665,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 9343, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 9346,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 19007, 119, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 9347,19007,19007,19007,19007, 9346,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 9349, 9349, 9349, 9349, 9349, 9349, 9349, 9349, 9349,19007,19007,19007,19007, 19007,19007,19007, 9349, 9349, 9349, 9349, 9349, 9350,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 9349, 9349, 9349, 9349, 9349, 9349, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 9362,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778, 19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 9363,19007,19007,19007, 19007, 9362,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778, 19007, 778, 778,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007, 19007,19007,19007,19007, 9367,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 9368,19007,19007,19007,19007, 9367,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 9372,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2898, 778, 778, 778, 778, 778, 778, 9373,19007, 19007,19007,19007, 9372,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 9377,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 9378,19007,19007,19007,19007, 9377, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007, 19007,19007, 9382,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 9383,19007,19007,19007,19007, 9382,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 9387,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778, 19007, 778, 778, 778, 778, 778, 778,19007, 778, 778, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 9388,19007,19007,19007, 19007, 9387,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778, 19007, 778, 778,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007, 19007,19007,19007,19007, 9391,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 9392,19007,19007,19007,19007, 19007, 2900, 778, 778,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 9392, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 9394,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 9395,19007,19007,19007,19007, 9394, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778,19007,19007,19007, 19007,19007, 9397,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 778, 778, 778, 778, 778, 778, 778, 9398,19007,19007,19007,19007, 9397,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 9403,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778, 19007, 778, 778, 778, 778, 778, 778,19007, 778, 778, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 9404,19007,19007,19007, 19007, 9403,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778, 19007, 778, 778,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007, 19007,19007,19007,19007, 9408,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 9409,19007,19007,19007,19007, 9408,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 9412,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 9413,19007,19007,19007,19007,19007, 2900, 778, 778, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 9413, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007, 19007,19007, 9415,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 9416,19007,19007,19007,19007, 9415,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2900, 778, 778, 9421, 9422, 9422, 9422, 9422, 9422, 9422, 9422, 9422, 8120,19007,19007,19007,19007,19007, 19007, 9422, 9422, 9422, 9422, 9422, 9423,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 9422, 9422, 9422, 9422, 9422, 9422, 9422, 9422, 9422, 9422, 9422, 9422, 9422, 9422, 9422, 8122,19007,19007,19007,19007,19007,19007, 9422, 9422, 9422, 9422, 9422, 9423,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 9422, 9422, 9422, 9422, 9422, 9422, 9425, 9425, 9425, 9425, 9425, 9425, 9425, 9425, 9425, 9426,19007,19007,19007,19007,19007,19007, 9425, 9425, 9425, 9425, 9425, 9427,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 9425, 9425, 9425, 9425, 9425, 9425, 9428, 9428, 9428, 9428, 9428, 9428, 9428, 9428, 9428,19007,19007, 19007,19007,19007,19007,19007, 9428, 9428, 9428, 9428, 9428, 9429,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3504,19007,19007, 19007, 9428, 9428, 9428, 9428, 9428, 9428, 9433, 9433, 9433, 9433, 9433, 9433, 9433, 9433, 9433, 8778,19007,19007,19007, 19007,19007,19007, 9433, 9433, 9433, 9433, 9433, 9434,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 9433, 9433, 9433, 9433, 9433, 9433, 9435, 9435, 9435, 9435, 9435, 9435, 9435, 9435, 9435,19007,19007,19007,19007,19007,19007, 19007, 9435, 9435, 9435, 9435, 9435, 9436,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 9435, 9435, 9435, 9435, 9435, 9435, 9440, 9440, 9440, 9440, 9440, 9440, 9440, 9440, 9440, 8788,19007,19007,19007,19007,19007,19007, 9440, 9440, 9440, 9440, 9440, 9441,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 9440, 9440, 9440, 9440, 9440, 9440, 9442, 9442, 9442, 9442, 9442, 9442, 9442, 9442, 9442, 19007,19007,19007,19007,19007,19007,19007, 9442, 9442, 9442, 9442, 9442, 9443,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 9442, 9442, 9442, 9442, 9442, 9442, 9448, 9448, 9448, 9448, 9448, 9448, 9448, 9448, 9448, 8800,19007, 19007,19007,19007,19007,19007, 9448, 9448, 9448, 9448, 9448, 9449,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 9448, 9448, 9448, 9448, 9448, 9448, 9450, 9450, 9450, 9450, 9450, 9450, 9450, 9450, 9450,19007,19007,19007,19007, 19007,19007,19007, 9450, 9450, 9450, 9450, 9450, 9451,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 9450, 9450, 9450, 9450, 9450, 9450, 7543,19007, 7504, 7504, 7504, 7504, 7504, 7504, 7504, 7504, 7504, 7507,19007,19007,19007, 19007,19007,19007, 7504, 7504, 7504, 7504, 7504, 7506,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7504, 7504, 7504, 7504, 7504, 7504, 9459, 9459, 9459, 9459, 9459, 9459, 9459, 9459, 9459, 8816,19007,19007,19007,19007,19007, 19007, 9459, 9459, 9459, 9459, 9459, 9460,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 9459, 9459, 9459, 9459, 9459, 9459, 9461, 9461, 9461, 9461, 9461, 9461, 9461, 9461, 9461,19007,19007,19007,19007,19007,19007,19007, 9461, 9461, 9461, 9461, 9461, 9462,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 9461, 9461, 9461, 9461, 9461, 9461, 7518, 7518, 7518, 7518, 7518, 7518, 7518, 7518, 7518, 7521,19007,19007,19007,19007,19007,19007, 7518, 7518, 7518, 7518, 7518, 7520,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7518, 7518, 7518, 7518, 7518, 7518, 7514, 7514, 7514, 7514, 7514, 7514, 7514, 7514, 7514, 6132,19007, 19007,19007,19007,19007,19007, 7514, 7514, 7514, 7514, 7514, 7515,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7514, 7514, 7514, 7514, 7514, 7514, 9470, 9471, 9471, 9471, 9471, 9471, 9471, 9471, 9471, 8169,19007,19007,19007, 19007,19007,19007, 9471, 9471, 9471, 9471, 9471, 9472,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 9471, 9471, 9471, 9471, 9471, 9471, 9474, 9474, 9474, 9474, 9474, 9474, 9474, 9474, 9474, 9475,19007,19007,19007,19007,19007, 19007, 9474, 9474, 9474, 9474, 9474, 9476,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 9474, 9474, 9474, 9474, 9474, 9474, 9482, 9483, 9484, 9485, 9485, 9485, 9485, 9485, 9485,19007,19007,19007,19007,19007,19007,19007, 7535, 7535, 7535, 7535, 7535, 7539,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7535, 7535, 7535, 7535, 7535, 7535, 9486, 9486, 9486, 9486, 9486, 9486, 9486, 9486, 9486, 6875,19007,19007,19007,19007,19007,19007, 7532, 7532, 7532, 7532, 7532, 7533,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7532, 7532, 7532, 7532, 7532, 7532, 1381, 19007,19007,19007,19007,19007,19007, 1382,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1383,19007, 1384,19007, 1385,19007,19007, 1386, 9541,19007, 19007,19007, 1387,19007,19007, 1388,19007, 1389,19007, 1390, 19007, 1391, 1392, 1393, 2525, 2526,19007,19007,19007,19007, 1380,19007,19007,19007, 9543, 9543, 9543, 9543, 9543, 9543, 9543, 9543, 9543,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2527,19007,19007,19007,19007, 19007,19007, 2528,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2529,19007, 2530,19007, 2532,19007,19007, 2533,19007,19007,19007,19007, 2535,19007, 19007, 2536,19007, 2537,19007, 2538,19007, 2539, 2540, 2541, 2525, 9544,19007,19007,19007,19007, 1380,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2527,19007,19007,19007,19007,19007,19007, 2528,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2529,19007, 2530,19007, 2532,19007,19007, 2533, 19007,19007,19007,19007, 2535,19007,19007, 2536,19007, 2537, 19007, 2538,19007, 2539, 2540, 2541, 1713,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 1714,19007, 19007,19007,19007,19007,19007, 1715,19007,19007, 9546,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1716, 19007, 1717,19007, 1718,19007,19007, 1719,19007,19007,19007, 19007, 1720,19007,19007, 1721,19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 2525, 8904,19007,19007,19007,19007, 1712, 19007,19007, 3072,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3073,19007,19007,19007,19007,19007, 19007, 3074,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3075,19007, 3076,19007, 3078, 19007,19007, 3659,19007,19007,19007,19007, 3660,19007,19007, 3082,19007, 3083,19007, 3084,19007, 3085, 3086, 3087, 1713, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 1714,19007,19007,19007,19007,19007,19007, 1715,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 1716,19007, 1717,19007, 1718,19007,19007, 1719, 19007,19007,19007, 9547, 1720,19007,19007, 1721,19007, 1722, 19007, 1723,19007, 1724, 1725, 1726, 2525, 3071,19007,19007, 19007,19007, 1712,19007,19007, 3072, 9548, 9548, 9548, 9548, 9548, 9548, 9548, 9548, 9548,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3073,19007,19007, 19007,19007,19007,19007, 3074,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3075,19007, 3076,19007, 3078,19007,19007, 3079,19007,19007,19007,19007, 3081,19007,19007, 3082,19007, 3083,19007, 3084,19007, 3085, 3086, 3087, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 9567,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119, 9568,19007,19007,19007,19007, 9567,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2195, 119, 119, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 2193,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 120, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2195,19007, 3204, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 9572,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 9573,19007,19007,19007,19007, 9572,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 277, 277,19007, 287, 277, 277, 277, 277, 277, 667, 280, 277, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 917, 277, 277, 277, 277, 277, 277, 9576, 9576, 9576, 9576, 9576, 9577, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669, 9575, 9575, 9575, 9575, 9575, 9575, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 278,19007,19007,19007,19007,19007, 19007,19007,19007, 9576, 9576, 9576, 9576, 9576, 9576, 9576, 9576, 9576,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 9576, 9576, 9576, 9576, 9576, 9576, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 119, 119,19007, 857, 119, 119, 7696, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 7088,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9582,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 9583,19007,19007,19007,19007, 9582,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 9585,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 9586,19007,19007,19007,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 9586, 277, 277,19007, 8330, 277, 277, 277, 277, 277,19007, 8332, 277,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 277, 277, 277, 277, 277, 277, 277,19007,19007,19007,19007,19007, 9588,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 277, 277, 277, 9589, 277, 277,19007, 8330, 277, 277, 277, 277, 277,19007, 8332, 277,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 277, 277, 277, 277, 277, 277, 277, 9590,19007,19007,19007,19007, 9588,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 277, 277, 277, 9589, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 7133, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 9592,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 661, 119, 119,19007, 7135, 119, 119, 119, 119, 119, 9591, 7133, 119, 9591, 9591, 9591, 9591, 9591, 9591, 9591, 9591, 9591, 119, 119, 119, 119, 119, 119, 119, 9593, 9593, 9593, 9593, 9593, 9594, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 119, 119, 119, 661, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 277, 277,19007, 8330, 277, 277, 277, 277, 277,19007, 277, 277,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 277, 277, 277, 277, 277, 277, 277,19007,19007,19007,19007,19007, 9597,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 277, 277, 277, 277, 277,19007, 8330, 277, 277, 277, 277, 277,19007, 277, 277,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 277, 277, 277, 277, 277, 277, 277, 9598,19007,19007,19007,19007, 9597,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 277, 277, 277, 119, 119,19007, 119, 119, 119, 119, 119, 119, 661, 119, 119, 9599, 9600, 9600, 9600, 9600, 9600, 9600, 9600, 9600, 8394, 119, 119, 119, 119, 119, 119, 9600, 9600, 9600, 9600, 9600, 9601, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 119, 119, 119, 661, 9600, 9600, 9600, 9600, 9600, 9600, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 8383, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 9592,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 661, 277, 277,19007, 8351, 277, 277, 277, 277, 277,19007, 8332, 277,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8357, 277, 277, 277, 277, 277, 277,19007,19007,19007,19007,19007, 8353,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 277, 277, 277, 8354, 277, 277,19007, 8351, 277, 277, 277, 277, 277,19007, 8332, 277,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8359, 277, 277, 277, 277, 277, 277,19007,19007,19007,19007,19007, 8353,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 277, 277, 277, 8354, 277, 277,19007, 8351, 277, 277, 277, 277, 277, 19007, 277, 277,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 906, 277, 277, 277, 277, 277, 277,19007, 19007,19007,19007,19007, 8361,19007,19007, 9611,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 277, 277, 277, 7122, 7122, 7122, 7122, 7122, 7122, 7122, 7122, 7122, 119,19007,19007,19007,19007,19007,19007, 661, 661, 661, 661, 661, 662,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 661, 661, 661, 661, 661, 661, 119, 119,19007, 7104, 119, 119, 119, 119, 119,19007, 137, 119, 9614, 9614, 9614, 9614, 9614, 9614, 19007,19007,19007, 8350, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 672,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 661, 9618, 9618, 9618, 9618, 9618, 9618, 9618, 9618, 9618,19007,19007,19007,19007,19007, 19007,19007, 9618, 9618, 9618, 9618, 9618, 9619,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 9618, 9618, 9618, 9618, 9618, 9618, 119, 119,19007, 7135, 119, 119, 119, 119, 119, 6515, 7133, 119, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 119, 119, 119, 119, 119, 119, 119, 7739, 7739, 7739, 7739, 7739, 7740, 7739, 7739, 7739, 7739, 7739, 9621, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 119, 119, 119, 119, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 119, 119,19007, 857, 119, 119, 119, 119, 119,19007, 7133, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7134,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9038,19007,19007,19007,19007,19007, 9622,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 9624,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 9625,19007,19007,19007,19007, 9624,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9628, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 9629,19007,19007, 19007,19007, 9628,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 9631, 9632,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119,19007,19007,19007,19007,19007, 19007,19007, 9632, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 9633, 9633, 9633, 9633, 9633, 9633, 9633, 9633, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9634,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9634, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 9636, 9637,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119,19007,19007,19007,19007,19007,19007,19007, 9637, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 9638, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 7134,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 9643, 9644, 9644, 9644, 9644, 9644, 9644, 9644, 9644, 8394,19007,19007,19007,19007,19007,19007, 9644, 9644, 9644, 9644, 9644, 9645,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 9644, 9644, 9644, 9644, 9644, 9644, 9647, 9648, 9648, 9648, 9648, 9648, 9648, 9648, 9648, 9649,19007,19007,19007,19007,19007,19007, 9648, 9648, 9648, 9648, 9648, 9650,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 9648, 9648, 9648, 9648, 9648, 9648, 7135,19007,19007,19007,19007,19007,19007,19007,19007, 9652, 9653, 9653, 9653, 9653, 9653, 9653, 9653, 9653,19007,19007, 19007,19007,19007,19007,19007, 9653, 9653, 9653, 9653, 9653, 9654,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 9653, 9653, 9653, 9653, 9653, 9655, 9658, 9659, 9659, 9659, 9659, 9659, 9659, 9659, 9659, 9016,19007,19007,19007, 19007,19007,19007, 9659, 9659, 9659, 9659, 9659, 9660,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 9659, 9659, 9659, 9659, 9659, 9659, 9661, 9662, 9662, 9662, 9662, 9662, 9662, 9662, 9662,19007,19007,19007,19007,19007,19007, 19007, 9662, 9662, 9662, 9662, 9662, 9663,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 9662, 9662, 9662, 9662, 9662, 9664, 119, 119,19007, 7135, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7756,19007,19007,19007, 19007,19007, 9669,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 9670, 9671, 9671, 9671, 9671, 9671, 9671, 9671, 9671, 8406,19007,19007,19007,19007, 19007,19007, 9671, 9671, 9671, 9671, 9671, 9672,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 9671, 9671, 9671, 9671, 9671, 9671, 9674, 9675, 9675, 9675, 9675, 9675, 9675, 9675, 9675, 9676,19007,19007,19007,19007,19007,19007, 9675, 9675, 9675, 9675, 9675, 9677,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 9675, 9675, 9675, 9675, 9675, 9675, 119, 119,19007, 7135, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 7742,19007,19007,19007,19007, 19007, 9684,19007,19007,19007,19007,19007, 7743,19007,19007, 19007,19007, 119, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7743, 119, 119,19007, 7135, 119, 119, 119, 119, 119,19007, 7133, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7150,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 7142,19007, 19007,19007,19007,19007,19007,19007, 9685, 119, 119,19007, 8474, 119, 119, 119, 119, 119, 5821, 6525, 119, 5821, 5821, 5821, 5821, 5821, 5821, 5821, 5821, 5821, 119, 119, 119, 119, 119, 119, 119, 7152, 7152, 7152, 7152, 7152, 7153, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 119, 119, 119, 119, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9687, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 9688,19007,19007, 19007,19007, 9687,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 9690,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 9691,19007,19007,19007,19007, 9690,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 9693,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 9694,19007,19007,19007,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 9694, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 120,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 9697,19007, 119, 119, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 9700,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 9701,19007,19007,19007,19007, 9700,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421, 9702, 8421, 8423,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007, 9704,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8426, 8421, 8421, 9702, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007, 19007,19007, 9706,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421, 9707,19007,19007,19007,19007, 9706,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8426, 8421, 8421, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9709,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 9710,19007,19007,19007, 19007, 9709,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 9712,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 9713,19007,19007,19007, 19007, 119, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 9713, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421, 9718, 8421, 8423,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007, 9720,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8426, 8421, 8421, 9718, 8421, 8421, 19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007, 19007, 9722,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421, 19007, 8421, 8423,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421, 9723, 19007,19007,19007,19007, 9722,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421, 9726, 8421, 8423,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007, 9728,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8426, 8421, 8421, 9726, 8421, 8421, 19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007, 19007, 9730,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421, 19007, 8421, 8423,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421, 9731, 19007,19007,19007,19007, 9730,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421, 9733, 8421, 8423,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007, 9735,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8426, 8421, 8421, 9733, 8421, 8421, 19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007, 19007, 9737,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421, 19007, 8421, 8423,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421, 9738, 19007,19007,19007,19007, 9737,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007, 9740,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 9741,19007,19007, 8426, 8421, 8421,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 9741, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 9743,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 9745,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 9746, 9746, 9746, 9746, 9746, 9746, 9746, 9746, 9746, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9745,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 9697, 8421, 8421, 19007, 8421, 8421, 8421, 8421, 8421, 8421, 9748, 8421, 8423, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007, 19007, 9750,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 9748, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421, 19007,19007,19007,19007,19007, 9752,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421, 9753,19007,19007,19007,19007, 9752,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421, 19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007, 19007, 9755,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 9756,19007,19007, 8426, 8421, 8421,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 9756, 119, 119,19007, 119, 119, 119, 119, 119, 119, 5821, 119, 119, 9757, 9758, 9759, 9760, 9760, 9760, 9760, 9760, 9760, 119, 119, 119, 119, 119, 119, 119, 7152, 7152, 7152, 7152, 7152, 7153, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 119, 119, 119, 119, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 9078, 119, 8438, 8438, 8438, 8438, 8438, 8438, 8438, 8438, 8438, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 6526,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 9078, 119, 8438, 8438, 8438, 8438, 8438, 8438, 8438, 8438, 8438, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6526, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 9761, 9762, 9762, 9762, 9762, 9762, 9762, 9762, 9762, 9089, 19007,19007,19007,19007,19007,19007, 9762, 9762, 9762, 9762, 9762, 9763,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 9762, 9762, 9762, 9762, 9762, 9762, 9764, 9765, 9765, 9765, 9765, 9765, 9765, 9765, 9765, 9766,19007,19007, 19007,19007,19007,19007, 9765, 9765, 9765, 9765, 9765, 9767, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 9765, 9765, 9765, 9765, 9765, 9765, 6527,19007,19007,19007, 19007,19007,19007,19007,19007, 9770, 9771, 9771, 9771, 9771, 9771, 9771, 9771, 9771, 9772,19007,19007,19007,19007,19007, 19007, 9771, 9771, 9771, 9771, 9771, 9773,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 9771, 9771, 9771, 9771, 9771, 9771, 9778, 9779, 9779, 9779, 9779, 9779, 9779, 9779, 9779, 8453,19007,19007,19007,19007,19007,19007, 9779, 9779, 9779, 9779, 9779, 9780,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 9779, 9779, 9779, 9779, 9779, 9779, 9782, 9783, 9783, 9783, 9783, 9783, 9783, 9783, 9783, 9784,19007,19007,19007,19007,19007,19007, 9783, 9783, 9783, 9783, 9783, 9785,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 9783, 9783, 9783, 9783, 9783, 9783, 119, 119,19007, 8474, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 7172,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 9792, 9793, 9793, 9793, 9793, 9793, 9793, 9793, 9793, 9116,19007,19007,19007,19007,19007,19007, 9793, 9793, 9793, 9793, 9793, 9794,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 9793, 9793, 9793, 9793, 9793, 9793, 9795, 9796, 9796, 9796, 9796, 9796, 9796, 9796, 9796,19007, 19007,19007,19007,19007,19007,19007, 9796, 9796, 9796, 9796, 9796, 9797,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 9796, 9796, 9796, 9796, 9796, 9798, 119, 119, 19007, 9124, 119, 119, 119, 119, 119, 6515, 119, 119, 6516, 6517, 6518, 6519, 6519, 6519, 6519, 6519, 6519, 6520, 119, 119, 119, 119, 119, 119, 6521, 6521, 6521, 6521, 6521, 6522, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 119, 119, 119, 119, 6521, 6521, 6521, 6521, 6521, 6521, 6523, 6523, 6523, 6523, 6523, 6524, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 119, 119,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 8471, 119, 119,19007,19007,19007,19007,19007, 7806,19007,19007,19007,19007,19007, 9804,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 7771,19007,19007,19007,19007,19007, 19007,19007,19007, 9805,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9807,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 9808,19007,19007,19007,19007, 9807,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 9812,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 9813,19007,19007,19007,19007, 9812,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9816, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 9817,19007,19007, 19007,19007, 9816,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 9819,19007, 9820,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 9821, 9821, 9822,19007,19007,19007,19007,19007, 19007,19007,19007, 9823, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9826,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 9827,19007,19007,19007,19007, 9826,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 9831,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 9832,19007,19007,19007,19007, 9831,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9836, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 9837,19007,19007, 19007,19007, 9836,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 9840,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 9841,19007,19007,19007,19007, 9840,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119, 19007, 119, 119, 119, 119, 119, 119, 9842, 119, 7810, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 9842,19007,19007,19007, 19007, 9844,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 9842, 9842, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9846,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 9847,19007,19007,19007,19007, 9846, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 9850,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 9851,19007,19007,19007,19007, 9850,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9854,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 9855,19007,19007,19007, 19007, 9854,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119, 9856, 119, 7810,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119, 9856, 19007,19007,19007,19007, 9858,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 7812, 9856, 9856, 119, 119,19007, 6527, 119, 119, 119, 119, 119,19007, 6525, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6544, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 6534, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 9859, 119, 119,19007, 9862, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 665,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 1004, 1004, 19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007, 19007, 9891,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 19007, 1004, 5195,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 9892, 19007,19007,19007,19007, 9891,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 9896,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 9897,19007,19007,19007,19007, 9896,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007, 19007,19007,19007, 9901,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 9902,19007,19007,19007,19007, 9901,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 9906, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 9907,19007,19007, 19007,19007, 9906,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 19007,19007,19007,19007,19007, 9911,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 9912,19007,19007,19007,19007, 9911,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004, 19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007, 19007, 9916,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 9917, 19007,19007,19007,19007, 9916,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 9920,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 9921,19007, 19007,19007,19007,19007, 3370, 1004, 1004,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 9921, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 9923, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 9924,19007,19007, 19007,19007, 9923,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 19007,19007,19007,19007,19007, 9926,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 1004, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 9927,19007,19007,19007,19007, 9926,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007, 19007, 9932,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 9933, 19007,19007,19007,19007, 9932,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 9937,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 9938,19007,19007,19007,19007, 9937,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007, 19007,19007,19007, 9941,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 9942,19007,19007,19007,19007,19007, 3370, 1004, 1004,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 9942, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 19007,19007,19007,19007,19007, 9944,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 9945,19007,19007,19007,19007, 9944,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3370, 1004, 1004, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007, 19007, 9952,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 9953, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 9954,19007,19007,19007,19007, 9952,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007, 19007, 9953, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945, 19007,19007,19007,19007,19007, 9957,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5945, 5945, 5945,19007,19007,19007, 9958, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945, 9959,19007,19007, 19007,19007, 9957,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007, 9958, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 9961, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 9962,19007,19007,19007,19007, 5945, 5945, 5945,19007, 19007,19007, 9963,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 9962, 9966, 9966, 9966, 9966, 9966, 9966, 9966, 9966, 9966,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 6644,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 9967, 19007,19007,19007, 6645, 9257,19007,19007,19007,19007,19007, 19007,19007,19007, 9971, 9971, 9971, 9971, 9971, 9971, 9971, 9971, 9971,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 6644,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 6645, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007, 19007, 9973,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 9974, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 9975,19007,19007,19007,19007, 9973,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007, 19007, 9974, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 19007,19007,19007,19007,19007, 9981,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8592, 5945, 5945,19007,19007,19007, 9982, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 9983,19007,19007, 19007,19007, 9981,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 9982, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 9987, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007, 19007,19007, 9988, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 9989,19007,19007,19007,19007, 9987,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 9988, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007, 19007,19007,19007, 9991,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 9992,19007,19007, 8592, 5945, 5945,19007,19007,19007, 9993,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 9992, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 9996,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007, 19007, 9997, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945, 9998, 9998, 9998, 9998, 9998, 9998, 9998, 9998, 9998, 5945, 5945, 5945, 5945, 5945, 5945, 5945, 19007,19007,19007,19007,19007, 9996,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5945, 5945, 9967,19007,19007,19007, 9997, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007, 19007,19007,10003,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,10004, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,10005,19007,19007,19007,19007,10003, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007, 19007,19007,10004, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,10007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10008,19007,19007, 8592, 5945, 5945,19007,19007,19007,10009, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10008, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5947, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007, 19007, 5948,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,10014,19007,19007, 5949, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 665,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119,19007,19007, 19007,19007,19007,10015, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007,10018,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,10019,19007,19007,19007,19007, 10018,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007, 19007,19007,19007,10023,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,10024,19007,19007,19007,19007,10023,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007,10028, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,10029,19007,19007, 19007,19007,10028,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 19007,19007,19007,19007,19007,10033,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,10034,19007,19007,19007,19007,10033,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007, 19007,10038,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,10039, 19007,19007,19007,19007,10038,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007,10042,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,10043,19007,19007,19007,19007, 10042,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,10044, 2841, 2841,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,10044,19007, 19007,19007,19007,10046,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841,10044,10044, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007,10048,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,10049,19007,19007,19007, 19007,10048,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007, 19007,19007,19007,19007,10052,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,10053,19007,19007,19007,19007,10052,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 10056,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,10057,19007, 19007,19007,19007,10056,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,10058, 2841, 2841,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,10058,19007,19007,19007,19007,10060,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3982, 2841, 2841,10058,10058, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 6381,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,10069, 119, 119,19007, 656, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 903, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 665,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10071, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,10074,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,10075,19007,19007,19007,19007,10074,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119,10078,10078, 10078,10078,10078,10078,10078,10078,10078,19007,19007,19007, 19007,19007,19007,19007,10078,10078,10078,10078,10078,10079, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10078,10078,10078,10078,10078,10078, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 9362, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 4661,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 9363,19007,19007, 19007,19007, 9362,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778, 19007,19007,19007,19007,19007,10091,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,10092,19007,19007,19007,19007,10091,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778, 19007, 778, 778, 778, 778, 778, 778,19007, 778, 778, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007, 19007,10096,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778, 19007, 778, 778,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2898, 778, 778, 778, 778, 778, 778,10097, 19007,19007,19007,19007,10096,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007,10101,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778,10102,19007,19007,19007,19007, 10101,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 778, 778, 778, 778, 778, 778, 778,19007,19007, 19007,19007,19007,10108,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778,10112,10112,10112,10112,10112,10112, 10112,10112,10112, 9426,19007,19007,19007,19007,19007,19007, 10112,10112,10112,10112,10112,10113,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10112,10112,10112,10112, 10112,10112,10114,10114,10114,10114,10114,10114,10114,10114, 10114,10115,19007,19007,19007,19007,19007,19007,10114,10114, 10114,10114,10114,10116,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10114,10114,10114,10114,10114,10114, 10118,10118,10118,10118,10118,10118,10118,10118,10118,10119, 19007,19007,19007,19007,19007,19007,10118,10118,10118,10118, 10118,10120,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3504,19007, 19007,19007,10118,10118,10118,10118,10118,10118,10124,10124, 10124,10124,10124,10124,10124,10124,10124, 8778,19007,19007, 19007,19007,19007,19007,10124,10124,10124,10124,10124,10125, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10124,10124,10124,10124,10124,10124,10127,10127,10127,10127, 10127,10127,10127,10127,10127,10128,19007,19007,19007,19007, 19007,19007,10127,10127,10127,10127,10127,10129,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10127,10127, 10127,10127,10127,10127,10133,10133,10133,10133,10133,10133, 10133,10133,10133, 8788,19007,19007,19007,19007,19007,19007, 10133,10133,10133,10133,10133,10134,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10133,10133,10133,10133, 10133,10133,10136,10136,10136,10136,10136,10136,10136,10136, 10136,10137,19007,19007,19007,19007,19007,19007,10136,10136, 10136,10136,10136,10138,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10136,10136,10136,10136,10136,10136, 10142,10143,10144,10145,10145,10145,10145,10145,10145,19007, 19007,19007,19007,19007,19007,19007, 8131, 8131, 8131, 8131, 8131, 8135,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8131, 8131, 8131, 8131, 8131, 8131,10146,10146, 10146,10146,10146,10146,10146,10146,10146, 8800,19007,19007, 19007,19007,19007,19007,10146,10146,10146,10146,10146,10147, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10146,10146,10146,10146,10146,10146,10149,10149,10149,10149, 10149,10149,10149,10149,10149,10150,19007,19007,19007,19007, 19007,19007,10149,10149,10149,10149,10149,10151,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10149,10149, 10149,10149,10149,10149,10155,10156,10157,10158,10158,10158, 10158,10158,10158,19007,19007,19007,19007,19007,19007,19007, 8141, 8141, 8141, 8141, 8141, 8145,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8141, 8141, 8141, 8141, 8141, 8141, 7543,19007,10159,10159,10159,10159,10159,10159, 10159,10159,10159, 7507,19007,19007,19007,19007,19007,19007, 8139, 8139, 8139, 8139, 8139, 8140,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8139, 8139, 8139, 8139, 8139, 8139,10160,10160,10160,10160,10160,10160,10160,10160, 10160, 8816,19007,19007,19007,19007,19007,19007,10160,10160, 10160,10160,10160,10161,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10160,10160,10160,10160,10160,10160, 10163,10163,10163,10163,10163,10163,10163,10163,10163,10164, 19007,19007,19007,19007,19007,19007,10163,10163,10163,10163, 10163,10165,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10163,10163,10163,10163,10163,10163,10169,10170, 10171,10172,10172,10172,10172,10172,10172,19007,19007,19007, 19007,19007,19007,19007, 8152, 8152, 8152, 8152, 8152, 8156, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8152, 8152, 8152, 8152, 8152, 8152,10173,10173,10173,10173, 10173,10173,10173,10173,10173, 7521,19007,19007,19007,19007, 19007,19007, 8150, 8150, 8150, 8150, 8150, 8151,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8150, 8150, 8150, 8150, 8150, 8150,10174,10174,10174,10174,10174,10174, 10174,10174,10174, 9475,19007,19007,19007,19007,19007,19007, 10174,10174,10174,10174,10174,10175,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10174,10174,10174,10174, 10174,10174,10176,10176,10176,10176,10176,10176,10176,10176, 10176,19007,19007,19007,19007,19007,19007,19007,10176,10176, 10176,10176,10176,10177,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10176,10176,10176,10176,10176,10176, 8168, 8168, 8168, 8168, 8168, 8168, 8168, 8168, 8168, 8171, 19007,19007,19007,19007,19007,19007, 8168, 8168, 8168, 8168, 8168, 8170,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8168, 8168, 8168, 8168, 8168, 8168, 8164, 8164, 8164, 8164, 8164, 8164, 8164, 8164, 8164, 6875,19007,19007, 19007,19007,19007,19007, 8164, 8164, 8164, 8164, 8164, 8165, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8164, 8164, 8164, 8164, 8164, 8164, 1381,19007,19007,19007, 19007,19007,19007, 1382,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 1383,19007, 1384, 19007,10235,19007,19007, 1386,19007,19007,19007,19007, 1387, 19007,19007, 1388,19007, 1389,19007, 1390,19007, 1391, 1392, 1393, 2525,10238,19007,19007,19007,19007,10239,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10240,19007,19007,19007,19007,19007,19007,10241, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10242,19007,10243,19007,10244,19007,19007, 10245,19007,19007,19007,19007,10246,19007,19007,10247,19007, 10248,19007,10249,19007,10250,10251,10252, 2525, 2526,19007, 19007,19007,19007, 1380,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10253,19007,19007, 2527,19007, 3035,19007,19007,19007,19007, 2528,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2529, 19007, 2530,19007, 2532,19007,19007, 2533,19007,19007,19007, 19007, 2535,19007,19007, 2536,19007, 2537,19007, 2538,19007, 2539, 2540, 2541, 2525, 2526,19007,19007,19007,19007, 1380, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2527,19007,19007,19007,19007,19007, 19007, 2528,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2529,19007, 2530,19007, 2532, 19007,19007, 3045,19007,19007,19007,19007, 3046,19007,19007, 2536,19007, 2537,19007, 2538,19007, 2539, 2540, 2541,10254, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 1714,19007,19007,19007,19007,19007,19007, 1715,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 1716,19007, 1717,19007, 1718,19007,19007, 1719, 19007,19007,19007,19007, 1720,19007,19007, 1721,19007, 1722, 19007, 1723,19007, 1724, 1725, 1726, 1713,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 1714,19007, 19007,19007,19007,19007,19007, 1715,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1716, 19007, 1717,19007, 1718,19007,19007, 1719,10255,19007,19007, 19007, 1720,19007,19007, 1721,19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 2525, 3071,19007,19007,19007,19007, 1712, 19007,19007, 3072,10256,10256,10256,10256,10256,10256,10256, 10256,10256,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3073,19007,19007,19007,19007,19007, 19007, 3074,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3075,19007, 3076,19007, 3078, 19007,19007, 3079,19007,19007,19007,19007, 3081,19007,19007, 3082,19007, 3083,19007, 3084,19007, 3085, 3086, 3087, 2525, 3071,19007,19007,19007,19007, 1712,19007,19007, 3072,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3073,19007,19007,19007,19007,19007,19007, 3074,19007,19007, 19007,19007,19007,10257,19007,19007,19007,19007,19007,19007, 19007, 3075,19007, 3076,19007, 3078,19007,19007, 3079,19007, 19007,19007,19007, 3081,19007,19007, 3082,19007, 3083,19007, 3084,19007, 3085, 3086, 3087, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,10278,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,10279,19007,19007,19007, 19007,10278,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007,10282, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 9572,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007,10282, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 9573,19007,19007,19007,19007, 9572,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 10284,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 1471,19007,19007,19007,19007, 119, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1471, 277, 277,19007, 287, 277, 277, 277, 277, 277, 667, 280, 277,10285,10285,10285,10285,10285,10285,10285,10285, 10285, 917, 277, 277, 277, 277, 277, 277,10286,10286, 10286,10286,10286,10287, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669,10285,10285,10285,10285,10285,10285, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 278, 19007,19007,19007,19007,19007,19007,19007,19007,10286,10286, 10286,10286,10286,10286,10286,10286,10286,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10286,10286,10286,10286,10286,10286, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,10293,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,10294,19007,19007,19007, 19007,10293,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10292, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,10297,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,10298,19007,19007,19007,19007,10297,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 10300,19007,10301,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8998, 8999, 8999, 19007,19007,19007,19007,19007,19007,19007,19007,10302, 277, 277,19007, 8330, 277, 277, 277, 277, 277,19007, 8332, 277,19007,19007,19007,19007,19007,19007,19007,19007,19007, 906, 277, 277, 277, 277, 277, 277,19007,19007,19007, 19007,19007, 9588,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 277, 277, 277, 9589, 277, 277,19007, 8330, 277, 277, 277, 277, 277,19007, 8332, 277,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 906, 277, 277, 277, 277, 277, 277, 9590,19007,19007,19007,19007, 9588,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 277, 277, 277, 9589, 277, 277,19007, 8330, 277, 277, 277, 277, 277,19007, 277, 277,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 906, 277, 277, 277, 277, 277, 277,19007,19007,19007,19007,19007, 9597,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 277, 277, 277, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 7133, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 903, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 9592,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 661, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 7133, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,10303,19007,19007,19007,19007, 9592,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 661, 119, 119, 19007, 7135, 119, 119, 119, 119, 119, 9591, 7133, 119, 9591, 9591, 9591, 9591, 9591, 9591, 9591, 9591, 9591, 903, 119, 119, 119, 119, 119, 119, 9593, 9593, 9593, 9593, 9593, 9594, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 119, 119, 119, 661, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 277, 277,19007, 8330, 277, 277, 277, 277, 277,19007, 277, 277,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 906, 277, 277, 277, 277, 277, 277, 9598,19007,19007,19007,19007, 9597,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 277, 277, 277, 119, 119,19007, 119, 119, 119, 119, 119, 119, 661, 119, 119,10305,10306,10306,10306,10306,10306,10306,10306, 10306,10307, 119, 119, 119, 119, 119, 119,10306,10306, 10306,10306,10306,10308, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 119, 119, 119, 661,10306,10306,10306,10306,10306,10306, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 119, 119,19007, 7135, 119, 119, 119, 119, 119, 7155, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 8949,19007,19007,19007,19007,19007,10313,19007, 19007,19007,19007,19007, 8950,19007,19007,19007,19007, 119, 119, 119, 7155,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8950, 277, 277,19007, 8351, 277, 277, 277, 277, 277,19007, 277, 277,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 906, 277, 277, 277, 277, 277, 277, 19007,19007,19007,19007,19007, 8361,19007,19007,19007,19007, 19007,10315,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 277, 277, 277, 119, 119,19007, 7135, 119, 119, 119, 119, 119, 7155, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 8949,19007, 19007,19007,19007,19007,10313,19007,19007,19007,19007,19007, 8950,19007,19007,19007,19007, 899, 119, 119, 7155,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8950, 277, 277, 19007, 8351, 277, 277, 277, 277, 277,19007, 8332, 277, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 906, 277, 277, 277, 277, 277, 277,19007,19007,19007,19007, 19007, 8353,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 277, 277, 277, 8354,19007,19007,19007,19007,19007,19007,19007,10316, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 137, 119, 7730, 7730, 7730, 7730, 7730, 7730, 7730, 7730, 7730, 903, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 672,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 661,10320,10320,10320,10320,10320,10320, 10320,10320,10320,19007,19007,19007,19007,19007,19007,19007, 10320,10320,10320,10320,10320,10321,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10320,10320,10320,10320, 10320,10320, 119, 119,19007, 9034, 119, 119, 119, 119, 119, 6515, 7133, 119, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 119, 119, 119, 119, 119, 119, 119, 7739, 7739, 7739, 7739, 7739, 7740, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 119, 119, 119, 119, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 119, 119,19007, 857, 119, 119, 119, 119, 119, 19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 9687,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,10324,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,10325,19007,19007,19007,19007, 10324,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,10329,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,10330,19007,19007,19007,19007,10329,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,10333, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,10334,19007,19007, 19007,19007,10333,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,10336,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10337, 19007,19007, 8419, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10337, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,10338, 10338,10338,10338,10338,10338,10338,10338,10338, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9743,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 9697, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,10339,19007, 19007,19007,19007, 9743,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,10341,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,10342,19007,19007,19007,19007,10341, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,10344,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10345,19007,19007, 8419, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10345, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 9638, 119, 9001, 9001, 9001, 9001, 9001, 9001, 9001, 9001, 9001, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7134,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 9638, 119, 9001, 9001, 9001, 9001, 9001, 9001, 9001, 9001, 9001, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 7134,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119,10350,10351,10351,10351,10351,10351,10351,10351, 10351, 9649,19007,19007,19007,19007,19007,19007,10351,10351, 10351,10351,10351,10352,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10351,10351,10351,10351,10351,10351, 10353,10354,10354,10354,10354,10354,10354,10354,10354,10355, 19007,19007,19007,19007,19007,19007,10354,10354,10354,10354, 10354,10356,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10354,10354,10354,10354,10354,10354, 7135,19007, 19007,19007,19007,19007,19007,19007,19007,10359,10360,10360, 10360,10360,10360,10360,10360,10360,10361,19007,19007,19007, 19007,19007,19007,10360,10360,10360,10360,10360,10362,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10360, 10360,10360,10360,10360,10360,10367,10368,10368,10368,10368, 10368,10368,10368,10368, 9016,19007,19007,19007,19007,19007, 19007,10368,10368,10368,10368,10368,10369,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10368,10368,10368, 10368,10368,10368,10371,10372,10372,10372,10372,10372,10372, 10372,10372,10373,19007,19007,19007,19007,19007,19007,10372, 10372,10372,10372,10372,10374,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10372,10372,10372,10372,10372, 10372, 119, 119,19007, 9034, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 7756,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119,10381,10382,10382,10382,10382,10382, 10382,10382,10382, 9676,19007,19007,19007,19007,19007,19007, 10382,10382,10382,10382,10382,10383,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10382,10382,10382,10382, 10382,10382,10384,10385,10385,10385,10385,10385,10385,10385, 10385,19007,19007,19007,19007,19007,19007,19007,10385,10385, 10385,10385,10385,10386,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10385,10385,10385,10385,10385,10387, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 7769,19007,19007,19007,19007,19007,19007, 19007,19007,10393,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 7135, 119, 119, 119, 119, 119,19007, 7133, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7150,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 7142,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,10394, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,10396,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,10397,19007,19007,19007,19007,10396,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119,10400, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,10401,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119,10400,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,10402, 19007,19007,19007,19007,10401,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,10405,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,10406,19007,19007,19007,19007, 10405,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,10408,19007,10409,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10410,10411,10411,19007,19007,19007,19007,19007,19007,19007, 19007,10412, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 9700,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 9701,19007,19007,19007,19007, 9700,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 8421, 8421, 19007, 8421, 8421, 8421, 8421, 8421, 8421,10417, 8421, 8423, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007, 19007,10419,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421,10417, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421, 19007,19007,19007,19007,19007,10421,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,10422,19007,19007,19007,19007,10421,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8426, 8421, 8421, 119, 119, 19007,10415, 119, 119, 119, 119, 119,19007, 119,10400, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,10426,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119, 19007, 119,10400,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,10427, 19007,19007,19007,19007,10426,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,10430,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 10415, 119, 119, 119, 119, 119,19007, 119,10400,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,10431,19007,19007,19007,19007, 10430,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,10433,19007,10434,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10410,10411,10411,19007,19007,19007,19007,19007,19007,19007, 19007,10435, 119, 119,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 9046,19007,19007,19007,19007, 19007,10438,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,10439, 8421, 8423,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007,10441, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8426, 8421, 8421,10439, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007, 19007,19007,19007,10443,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,10444,19007,19007,19007,19007,10443,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,10447, 8421, 8423,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007,10449, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8426, 8421, 8421,10447, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007, 19007,19007,19007,10451,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,10452,19007,19007,19007,19007,10451,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,10455, 8421, 8423,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007,10457, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8426, 8421, 8421,10455, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007, 19007,19007,19007,10459,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,10460,19007,19007,19007,19007,10459,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007,10423, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007,10463, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007,10423, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,10464,19007,19007, 19007,19007,10463,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007,10423, 8421, 8421, 8421, 8421, 8421,10465, 8421, 8423,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421, 10465,19007,19007,19007,19007,10467,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8426, 8421, 8421,10465,10465, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 10469,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,10470,19007, 19007,19007,19007,10469,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,10472,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,10473,19007,19007,19007,19007,10472, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,10476, 8421, 8423,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007, 19007,19007,10478,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421,10476, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007,10480,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,10481,19007,19007,19007,19007,10480, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007,10423, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007, 19007,19007,10484,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007,10423, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421, 10485,19007,19007,19007,19007,10484,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8426, 8421, 8421, 8421, 8421,19007,10423, 8421, 8421, 8421, 8421, 8421,10486, 8421, 8423,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,10486,19007,19007,19007,19007,10488,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8426, 8421, 8421,10486,10486, 119, 119,19007, 6527, 119, 119, 119, 119, 119,19007, 6525, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 6526,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 6527, 119, 119, 119, 119, 119,19007, 6525, 119,10489,10489,10489,10489, 10489,10489,10489,10489,10489, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6526,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119,10493,10494, 10494,10494,10494,10494,10494,10494,10494, 9089,19007,19007, 19007,19007,19007,19007,10494,10494,10494,10494,10494,10495, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10494,10494,10494,10494,10494,10494,10494,10494,10494,10494, 10494,10494,10494,10494,10494, 9091,19007,19007,19007,19007, 19007,19007,10494,10494,10494,10494,10494,10495,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10494,10494, 10494,10494,10494,10494,10497,10498,10498,10498,10498,10498, 10498,10498,10498,10499,19007,19007,19007,19007,19007,19007, 10498,10498,10498,10498,10498,10500,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10498,10498,10498,10498, 10498,10498, 6527,19007,19007,19007,19007,19007,19007,19007, 19007,10502,10503,10503,10503,10503,10503,10503,10503,10503, 19007,19007,19007,19007,19007,19007,19007,10503,10503,10503, 10503,10503,10504,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10503,10503,10503,10503,10503,10505,10508, 10509,10509,10509,10509,10509,10509,10509,10509, 9772,19007, 19007,19007,19007,19007,19007,10509,10509,10509,10509,10509, 10510,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,10509,10509,10509,10509,10509,10509,10511,10512,10512, 10512,10512,10512,10512,10512,10512,19007,19007,19007,19007, 19007,19007,19007,10512,10512,10512,10512,10512,10513,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10512, 10512,10512,10512,10512,10514,10519,10520,10520,10520,10520, 10520,10520,10520,10520, 9784,19007,19007,19007,19007,19007, 19007,10520,10520,10520,10520,10520,10521,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10520,10520,10520, 10520,10520,10520,10522,10523,10523,10523,10523,10523,10523, 10523,10523,19007,19007,19007,19007,19007,19007,19007,10523, 10523,10523,10523,10523,10524,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10523,10523,10523,10523,10523, 10525,10531,10532,10532,10532,10532,10532,10532,10532,10532, 9116,19007,19007,19007,19007,19007,19007,10532,10532,10532, 10532,10532,10533,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10532,10532,10532,10532,10532,10532,10535, 10536,10536,10536,10536,10536,10536,10536,10536,10537,19007, 19007,19007,19007,19007,19007,10536,10536,10536,10536,10536, 10538,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,10536,10536,10536,10536,10536,10536,10545,10546,10547, 10548,10548,10548,10548,10548,10548,19007,19007,19007,19007, 19007,19007,19007, 8464, 8464, 8464, 8464, 8464, 8468,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8464, 8464, 8464, 8464, 8464, 8464, 119, 119,19007, 857, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 8471, 119, 119,19007,19007,19007,19007,19007, 7806,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007, 19007,19007, 8425,10549,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,10551,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,10552,19007,19007,19007,19007,10551,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,10556,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,10558,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10559,19007,19007,19007, 19007, 119, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10559, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,10560,19007,19007,19007,19007,10556,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 10564,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,10565,19007, 19007,19007,19007,10564,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,10568,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,10569,19007,19007,19007,19007,10568, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,10571,10572,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812,19007,19007,19007,19007,19007,19007,19007,10572, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,10574,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 8481, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,10574,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,10576, 10577,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 7812,19007, 19007,19007,19007,19007,19007,19007,10577, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 10579,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,10580,19007, 19007,19007,19007,10579,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,10584,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,10585,19007,19007,19007,19007,10584, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,10589,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 10590,19007,19007,19007,19007,10589,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,10594,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,10595,19007,19007,19007, 19007,10594,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 7810,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,10598,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10599,19007,19007,19007,19007, 19007, 119, 119, 7812,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10599, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,10601,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,10602,19007,19007,19007,19007,10601, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,10604,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 10605,19007,19007,19007,19007,10604,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,10609,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,10610,19007,19007,19007, 19007,10609,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 7810,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,10614,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,10615,19007,19007,19007,19007,10614,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 10618,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,10619,19007,19007,19007,19007,19007, 119, 119, 7812, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10619, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,10621,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 10622,19007,19007,19007,19007,10621,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 7812, 119, 119,19007, 6527, 119, 119, 119, 119, 119,19007, 6525, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6544,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 6534,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10623, 1004, 1004, 19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 5195, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007, 19007, 9891,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 19007, 1004, 5195,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004, 9892, 19007,19007,19007,19007, 9891,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007,10654,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,10655,19007,19007,19007,19007, 10654,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007, 19007,19007,19007,10659,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,10660,19007,19007,19007,19007,10659,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007,10664, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,10665,19007,19007, 19007,19007,10664,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 19007,19007,19007,19007,19007,10671,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 1004, 1004, 1004, 1004,19007,19007,19007,19007, 19007,10672, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 19007,19007,19007,19007,19007,10678,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8592, 5945, 5945,19007,19007,19007,10679, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,10680,19007,19007, 19007,19007,10678,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,10679, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,10686, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007, 19007,19007,10687, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,10688,19007,19007,19007,19007,10686,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,10687, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007, 19007,19007,19007,10692,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,10693, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,10694,19007,19007,19007,19007, 10692,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945, 19007,19007,19007,10693, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,10696,19007,10697, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10698,10699,10699,19007,19007,19007, 10700,19007,19007,19007,19007,10701, 9966, 9966, 9966, 9966, 9966, 9966, 9966, 9966, 9966,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 6644,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 9967,19007,19007,19007, 6645,10708,19007,19007,19007,19007,19007,19007,19007,19007, 10709,10709,10709,10709,10709,10709,10709,10709,10709,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 6644,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 6645, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,10711,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007, 19007,10712, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 10713,19007,19007,19007,19007,10711,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8592, 5945, 5945,19007,19007,19007,10712, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007, 19007,19007,10720,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,10721, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,10722,19007,19007,19007,19007,10720, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007, 19007,19007,10721, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,10728,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,10729, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,10730,19007, 19007,19007,19007,10728,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,10729, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 10734,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945, 19007,19007,19007,10735, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,10736,19007,19007,19007,19007,10734,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 10735, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 10737, 5945, 8589,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,10737, 19007,19007,19007,19007,10739,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8592, 5945, 5945,10737,10737,19007,10740, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007, 19007,10744,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007,10745, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,10746,19007,19007,19007,19007,10744,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007, 19007,10745, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 19007,19007,19007,19007,19007,10753,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8592, 5945, 5945,19007,19007,19007,10754, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,10755,19007,19007, 19007,19007,10753,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,10754, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,10759, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007, 19007,19007,10760, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,10761,19007,19007,19007,19007,10759,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,10760, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,10762, 5945, 8589,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,10762,19007, 19007,19007,19007,10764,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,10762,10762,19007,10765, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5947, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 5948,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 19007,10771,19007, 5949, 119, 119,19007,10772, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 903,10773, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 665,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 10776,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,10777,19007, 19007,19007,19007,10776,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007,10781,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,10782,19007,19007,19007,19007,10781, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007, 19007,19007,10786,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841, 10787,19007,19007,19007,19007,10786,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007,10791,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,10792,19007,19007,19007, 19007,10791,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007, 19007,19007,19007,19007,10796,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,10797,19007,19007,19007,19007,10796,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 10801,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,10802,19007, 19007,19007,19007,10801,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007,10805,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10806,19007,19007, 19007,19007,19007, 3982, 2841, 2841,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10806, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007,10808,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,10809,19007,19007,19007, 19007,10808,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,19007, 19007,19007,19007,19007,10811,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,10812,19007,19007,19007,19007,10811,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 10816,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,10817,19007, 19007,19007,19007,10816,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007,10821,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,10822,19007,19007,19007,19007,10821, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007, 19007,19007,10825,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10826,19007,19007,19007,19007,19007, 3982, 2841, 2841,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10826, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007, 19007,19007,19007,19007,10828,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,10829,19007,19007,19007,19007,10828,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3982, 2841, 2841, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6381,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 19007,19007,19007,19007,19007,10838, 119, 119,19007,10840, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 665, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,10843,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 19007, 119, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,10844,19007,19007,19007,19007,10843,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 10858,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2898, 778, 778, 778, 778, 778, 778,10859,19007, 19007,19007,19007,10858,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 2898,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 1023,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2900,19007, 4040, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007,10863,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778,10864,19007,19007,19007,19007, 10863,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 10868,10868,10868,10868,10868,10868,10868,10868,10868, 9426, 19007,19007,19007,19007,19007,19007,10868,10868,10868,10868, 10868,10869,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10868,10868,10868,10868,10868,10868,10871,10871, 10871,10871,10871,10871,10871,10871,10871,10872,19007,19007, 19007,19007,19007,19007,10871,10871,10871,10871,10871,10873, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10871,10871,10871,10871,10871,10871,10874,10874,10874,10874, 10874,10874,10874,10874,10874,19007,19007,19007,19007,19007, 19007,19007,10874,10874,10874,10874,10874,10875,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3504,19007,19007,19007,10874,10874, 10874,10874,10874,10874,10877,10877,10877,10877,10877,10877, 10877,10877,10877,10119,19007,19007,19007,19007,19007,19007, 10877,10877,10877,10877,10877,10878,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10877,10877,10877,10877, 10877,10877,10879,10879,10879,10879,10879,10879,10879,10879, 10879,19007,19007,19007,19007,19007,19007,19007,10879,10879, 10879,10879,10879,10880,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10879,10879,10879,10879,10879,10879, 10884,10884,10884,10884,10884,10884,10884,10884,10884,10128, 19007,19007,19007,19007,19007,19007,10884,10884,10884,10884, 10884,10885,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10884,10884,10884,10884,10884,10884,10886,10886, 10886,10886,10886,10886,10886,10886,10886,19007,19007,19007, 19007,19007,19007,19007,10886,10886,10886,10886,10886,10887, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10886,10886,10886,10886,10886,10886,10890,10890,10890,10890, 10890,10890,10890,10890,10890,10137,19007,19007,19007,19007, 19007,19007,10890,10890,10890,10890,10890,10891,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10890,10890, 10890,10890,10890,10890,10892,10892,10892,10892,10892,10892, 10892,10892,10892,19007,19007,19007,19007,19007,19007,19007, 10892,10892,10892,10892,10892,10893,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10892,10892,10892,10892, 10892,10892, 7543,19007, 8787, 8787, 8787, 8787, 8787, 8787, 8787, 8787, 8787, 8788,19007,19007,19007,19007,19007,19007, 8787, 8787, 8787, 8787, 8787, 8789,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8787, 8787, 8787, 8787, 8787, 8787,10899,10899,10899,10899,10899,10899,10899,10899, 10899,10150,19007,19007,19007,19007,19007,19007,10899,10899, 10899,10899,10899,10900,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10899,10899,10899,10899,10899,10899, 10901,10901,10901,10901,10901,10901,10901,10901,10901,19007, 19007,19007,19007,19007,19007,19007,10901,10901,10901,10901, 10901,10902,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10901,10901,10901,10901,10901,10901, 8799, 8799, 8799, 8799, 8799, 8799, 8799, 8799, 8799, 8800,19007,19007, 19007,19007,19007,19007, 8799, 8799, 8799, 8799, 8799, 8801, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8799, 8799, 8799, 8799, 8799, 8799, 8796, 8796, 8796, 8796, 8796, 8796, 8796, 8796, 8796, 7507,19007,19007,19007,19007, 19007,19007, 8796, 8796, 8796, 8796, 8796, 8797,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8796, 8796, 8796, 8796, 8796, 8796,10908,10908,10908,10908,10908,10908, 10908,10908,10908,10164,19007,19007,19007,19007,19007,19007, 10908,10908,10908,10908,10908,10909,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10908,10908,10908,10908, 10908,10908,10910,10910,10910,10910,10910,10910,10910,10910, 10910,19007,19007,19007,19007,19007,19007,19007,10910,10910, 10910,10910,10910,10911,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10910,10910,10910,10910,10910,10910, 8815, 8815, 8815, 8815, 8815, 8815, 8815, 8815, 8815, 8816, 19007,19007,19007,19007,19007,19007, 8815, 8815, 8815, 8815, 8815, 8817,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8815, 8815, 8815, 8815, 8815, 8815, 8812, 8812, 8812, 8812, 8812, 8812, 8812, 8812, 8812, 7521,19007,19007, 19007,19007,19007,19007, 8812, 8812, 8812, 8812, 8812, 8813, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8812, 8812, 8812, 8812, 8812, 8812,10917,10917,10917,10917, 10917,10917,10917,10917,10917, 9475,19007,19007,19007,19007, 19007,19007,10917,10917,10917,10917,10917,10918,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10917,10917, 10917,10917,10917,10917,10920,10920,10920,10920,10920,10920, 10920,10920,10920,10921,19007,19007,19007,19007,19007,19007, 10920,10920,10920,10920,10920,10922,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10920,10920,10920,10920, 10920,10920,10926,10927,10928,10929,10929,10929,10929,10929, 10929,19007,19007,19007,19007,19007,19007,19007, 8831, 8831, 8831, 8831, 8831, 8835,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8831, 8831, 8831, 8831, 8831, 8831, 10930,10930,10930,10930,10930,10930,10930,10930,10930, 8171, 19007,19007,19007,19007,19007,19007, 8829, 8829, 8829, 8829, 8829, 8830,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8829, 8829, 8829, 8829, 8829, 8829, 1381,19007, 19007,19007,19007,19007,19007, 1382,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1383, 19007, 1384,19007, 1385,19007,19007, 1386,19007,19007,19007, 19007, 1387,10982,19007, 1388,19007, 1389,19007, 1390,19007, 1391, 1392, 1700, 2525,10238,19007,19007,19007,19007,10239, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10240,19007,19007,19007,19007,19007, 19007,10241,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10242,19007,10243,19007,10244, 19007,19007,10245,19007,19007,19007,19007,10246,19007,19007, 10247,19007,10248,19007,10249,19007,10250,10251,10252, 2525, 10238,19007,19007,19007,19007,10239,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10240,19007,10986,19007,19007,19007,19007,10241,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,10242,19007,10243,19007,10244,19007,19007,10245,19007, 19007,19007,19007,10246,19007,19007,10247,19007,10248,19007, 10249,19007,10250,10251,10252,10987,19007,19007,19007,19007, 19007,19007,10988,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10989,19007,10990,19007, 10991,19007,19007,10992,19007,19007,19007,19007,10993,19007, 19007,10994,19007,10995,19007,10996,19007,10997,10998,10999, 2525, 2526,19007,19007,19007,19007, 1380,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2527,19007,19007,19007,19007,19007,19007, 2528,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2529,19007, 2530,19007, 2532,19007,19007, 2533, 19007,19007,19007,11016, 2535,19007,19007, 2536,19007, 2537, 19007, 2538,19007, 2539, 2540, 2541, 1713,11017,11017,11017, 11017,11017,11017,11017,11017,11017,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 1714,19007, 19007,19007,19007,19007,19007, 1715,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1716, 19007, 1717,19007, 1718,19007,19007, 1719,19007,19007,19007, 19007, 1720,19007,19007, 1721,19007, 1722,19007, 1723,19007, 1724, 2087, 1726, 1713,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 1714,19007,19007,19007,19007, 19007,19007, 1715,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 1716,19007, 1717,19007, 11018,19007,19007, 1719,19007,19007,19007,19007, 1720,19007, 19007, 1721,19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 2525,11020,19007,19007,19007,19007,11021,19007,19007,11022, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11023,19007,19007,19007,19007,19007,19007,11024,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11025,19007,11026,19007,11027,19007,19007,11028, 19007,19007,19007,19007,11029,19007,19007,11030,19007,11031, 19007,11032,19007,11033,11034,11035, 2525, 3071,19007,19007, 19007,19007, 1712,19007,19007, 3072,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3073,19007,19007, 19007,19007,19007,19007, 3074,19007,19007,19007,19007,19007, 11036,19007,19007,19007,19007,19007,19007,19007, 3075,19007, 3076,19007, 3078,19007,19007, 3079,19007,19007,19007,19007, 3081,19007,19007, 3082,19007, 3083,19007, 3084,19007, 3085, 3086, 3087, 2525, 3071,19007,19007,19007,19007, 1712,19007, 19007, 3072,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3073,19007,19007,19007,19007,19007,19007, 3074,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3075,19007, 3076,19007, 3078,19007, 19007, 3079,19007,19007,19007,19007, 3081,19007, 3655,11037, 19007, 3083,19007, 3084,19007, 3085, 3086, 3087, 9559,19007, 9559,19007,19007,10270,10270,10270,10270,10270,10270,10270, 10270,10270,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 120,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 9561,19007,19007, 9562, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,10278,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,10279,19007,19007,19007,19007, 10278,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,11052,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007,10282, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9572,19007,19007, 19007,19007,19007,11053,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 1820,19007,19007,19007,19007, 1816,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 277, 277,19007, 287, 277, 277, 277, 277, 277, 667, 280, 277,11054,11054,11054,11054,11054,11054,11054,11054, 11054, 917, 277, 277, 277, 277, 277, 277,11055,11055, 11055,11055,11055,11056, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669,11054,11054,11054,11054,11054,11054, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 278, 19007,19007,19007,19007,19007,19007,19007,19007,11055,11055, 11055,11055,11055,11055,11055,11055,11055,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11055,11055,11055,11055,11055,11055, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11061,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,11062,19007,19007,19007, 19007,11061,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10292, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,11066,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,11067,19007,19007,19007,19007,11066,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 11070,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007, 19007,10292, 119, 119, 119, 119, 119, 119,11071,19007, 19007,19007,19007,11070,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11073,11074,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119,19007,19007,19007,19007, 19007,19007,19007,11074, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11076,11077,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119,19007,19007,19007, 19007,19007,19007,19007,11077, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 7133, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9592,19007, 19007,11078,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 661, 119, 119,19007, 7135, 119, 119, 119, 119, 119, 9591, 7133, 119, 9591, 9591, 9591, 9591, 9591, 9591, 9591, 9591, 9591, 903, 119, 119, 119, 119, 119, 119, 9593, 9593, 9593, 9593, 9593, 9594, 9593, 9593, 9593, 9593, 9593,11079, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 119, 119, 119, 661, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 119, 119, 19007, 119, 119, 119, 119, 119, 119, 661, 119, 119, 11080,11081,11081,11081,11081,11081,11081,11081,11081,10307, 119, 119, 119, 119, 119, 119,11081,11081,11081,11081, 11081,11082, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 119, 119, 119, 661,11081,11081,11081,11081,11081,11081, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 1171,19007,19007, 19007,19007,19007,19007,19007,19007, 9008, 9009, 9009, 9009, 9009, 9009, 9009, 9009, 9009, 9010,19007,19007,19007,19007, 19007,19007, 9009, 9009, 9009, 9009, 9009, 9011,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 9009, 9009, 9009, 9009, 9009, 9009, 277, 277,19007, 9609, 277, 277, 277, 277, 277,19007, 277, 277,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 906, 277, 277, 277, 277, 277, 277,19007,19007,19007,19007,19007, 9597,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 277, 277, 277, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 8383, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 903, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9592,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 661, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 9582,19007,19007,19007,19007,19007, 19007,19007,19007,11084,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 277, 277,19007, 8330, 277, 277, 277, 277, 277,19007, 8332, 277,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 906, 277, 277, 277, 277, 277, 277,19007,19007,19007,19007,19007, 9588,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 277, 277, 277, 9589,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11085, 277, 277,19007, 9612, 277, 277, 277, 277, 277,19007, 277, 277,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 906, 277, 277, 277, 277, 277, 277,19007,19007,19007,19007,19007, 8361,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 277, 277, 277, 277, 277,19007, 8351, 277, 277, 277, 277, 277,19007, 8332, 277,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 906, 277, 277, 277, 277, 277, 277,19007,19007,19007,19007,19007, 8353, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 277, 277, 277, 8354, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11086,11090,11090,11090,11090,11090, 11090,11090,11090,11090,19007,19007,19007,19007,19007,19007, 19007,11090,11090,11090,11090,11090,11091,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11090,11090,11090, 11090,11090,11090, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11094,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,11095,19007,19007,19007,19007,11094, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,11099,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 11100,19007,19007,19007,19007,11099,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11104,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,11105,19007,19007,19007, 19007,11104,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,11108,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,11109,19007,19007,19007,19007,11108,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,11110, 119, 8417,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,11110,19007,19007,19007,19007, 11112,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 11110,11110, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,11113,11113,11113,11113,11113,11113, 11113,11113,11113, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,10469,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 9697, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,10469,19007, 19007,11114,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,11116,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,11117, 19007,19007,19007,19007,11116,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11120,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,11121,19007,19007,19007,19007, 11120,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,11122, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,11122,19007, 19007,19007,19007,11124,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119,11122,11122, 119, 119,19007, 7135, 119, 119, 119, 119, 119,19007, 7133, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7134,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 7135, 119, 119, 119, 119, 119,19007, 7133, 119,11125,11125,11125,11125,11125,11125,11125,11125,11125, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007, 7134,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119,11129,11130,11130,11130,11130,11130,11130, 11130,11130, 9649,19007,19007,19007,19007,19007,19007,11130, 11130,11130,11130,11130,11131,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11130,11130,11130,11130,11130, 11130,11133,11134,11134,11134,11134,11134,11134,11134,11134, 11135,19007,19007,19007,19007,19007,19007,11134,11134,11134, 11134,11134,11136,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11134,11134,11134,11134,11134,11134, 7135, 19007,19007,19007,19007,19007,19007,19007,19007,11138,11139, 11139,11139,11139,11139,11139,11139,11139,19007,19007,19007, 19007,19007,19007,19007,11139,11139,11139,11139,11139,11140, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11139,11139,11139,11139,11139,11141,11144,11145,11145,11145, 11145,11145,11145,11145,11145,10361,19007,19007,19007,19007, 19007,19007,11145,11145,11145,11145,11145,11146,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11145,11145, 11145,11145,11145,11145,11147,11148,11148,11148,11148,11148, 11148,11148,11148,19007,19007,19007,19007,19007,19007,19007, 11148,11148,11148,11148,11148,11149,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11148,11148,11148,11148, 11148,11150,11155,11156,11156,11156,11156,11156,11156,11156, 11156,10373,19007,19007,19007,19007,19007,19007,11156,11156, 11156,11156,11156,11157,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11156,11156,11156,11156,11156,11156, 11158,11159,11159,11159,11159,11159,11159,11159,11159,19007, 19007,19007,19007,19007,19007,19007,11159,11159,11159,11159, 11159,11160,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11159,11159,11159,11159,11159,11161,11167,11168, 11168,11168,11168,11168,11168,11168,11168, 9676,19007,19007, 19007,19007,19007,19007,11168,11168,11168,11168,11168,11169, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11168,11168,11168,11168,11168,11168,11171,11172,11172,11172, 11172,11172,11172,11172,11172,11173,19007,19007,19007,19007, 19007,19007,11172,11172,11172,11172,11172,11174,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11172,11172, 11172,11172,11172,11172,11181,11182,11183,11184,11184,11184, 11184,11184,11184,19007,19007,19007,19007,19007,19007,19007, 9027, 9027, 9027, 9027, 9027, 9031,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 9027, 9027, 9027, 9027, 9027, 9027, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 8418,11185,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007, 7135, 119, 119, 119, 119, 119,19007, 7133, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7150,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 7142,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11186, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,11188,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,11189, 19007,19007,19007,19007,11188,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11193,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 11195,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11196,19007,19007,19007,19007, 119, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11196, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,11197,19007, 19007,19007,19007,11193,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11201,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,11202,19007,19007,19007,19007,11201, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 10400,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,11205,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 11206,19007,19007,19007,19007,11205,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11208,11209, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119,19007,19007, 19007,19007,19007,19007,19007,11209, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,11211, 11211,11211,11211,11211,11211,11211,11211, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11212, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,11212,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,11214,11215,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119,19007,19007,19007,19007,19007, 19007,19007,11215, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11218,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11219,19007, 19007,19007,19007, 119, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11219, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9700, 19007,19007,19007,19007,19007,11220,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,11221, 8421, 8423,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007, 19007,19007,11223,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421,11221, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007,11225,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,11226,19007,19007,19007,19007,11225, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 119, 119,19007, 119, 119, 119, 119, 119, 119,11217, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,11229,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11230,19007,19007,19007,19007, 119, 119, 119,11217,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11230, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,11233,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,11234,19007,19007,19007,19007,11233,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007,10415, 119, 119, 119, 119, 119,19007, 119,10400, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,11238,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119, 19007, 119,10400,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,11239, 19007,19007,19007,19007,11238,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11242,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 10415, 119, 119, 119, 119, 119,19007, 119,10400,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,11243,19007,19007,19007,19007, 11242,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,11245,11246,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119,19007,19007,19007,19007,19007,19007,19007, 11246, 119, 119,19007,10415, 119, 119, 119, 119, 119, 19007, 119,10400,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,11248,11249,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119,19007,19007,19007,19007,19007,19007, 19007,11249, 119, 119,19007, 119, 119, 119, 119, 119, 119,11217, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,11229,19007,19007,19007,19007, 19007,11250,19007,19007,19007,19007,19007,11230,19007,19007, 19007,19007, 119, 119, 119,11217,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11230, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9700,19007, 19007,19007,19007,19007,19007,19007,19007,11251,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 8421, 8421, 19007, 8421, 8421, 8421, 8421, 8421, 8421,11252, 8421, 8423, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007, 19007,11254,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421,11252, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421, 19007,19007,19007,19007,19007,11256,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,11257,19007,19007,19007,19007,11256,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421, 19007, 8421, 8421, 8421, 8421, 8421, 8421,11260, 8421, 8423, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007, 19007,11262,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421,11260, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421, 19007,19007,19007,19007,19007,11264,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,11265,19007,19007,19007,19007,11264,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421, 19007, 8421, 8421, 8421, 8421, 8421, 8421,11268, 8421, 8423, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007, 19007,11270,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421,11268, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421, 19007,19007,19007,19007,19007,11272,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,11273,19007,19007,19007,19007,11272,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421, 19007,10423, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007, 19007,11277,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007,10423, 8421, 8421, 8421, 8421, 8421, 19007, 8421, 8423,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,11278, 19007,19007,19007,19007,11277,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8426, 8421, 8421, 8421, 8421,19007,10423, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007,11281,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11282,19007, 19007,19007,19007,19007, 8426, 8421, 8421,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11282, 8421, 8421,19007,10423, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007,11284, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007,10423, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,11285,19007,19007, 19007,19007,11284,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,11287,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,11288,19007,19007,19007,19007,11287,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 19007,10415, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,11291,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,11292, 19007,19007,19007,19007,11291,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,11296, 8421, 8423,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007,11298,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8426, 8421, 8421,11296, 8421, 8421, 19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007, 19007,11300,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421, 19007, 8421, 8423,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,11301, 19007,19007,19007,19007,11300,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8426, 8421, 8421, 8421, 8421,19007,10423, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007,11305,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007, 10423, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,11306,19007,19007,19007,19007, 11305,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007,10423, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007, 19007,19007,19007,11309,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11310,19007,19007,19007,19007,19007, 8426, 8421, 8421,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11310, 8421, 8421,19007,10423, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421, 19007,19007,19007,19007,19007,11312,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8426, 8421, 8421, 8421, 8421,19007,10423, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,11313,19007,19007,19007,19007,11312,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8426, 8421, 8421, 119, 119, 19007, 6527, 119, 119, 119, 119, 119,19007, 6525, 119, 9757, 9757, 9757, 9757, 9757, 9757, 9757, 9757, 9757, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 6526,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 6527, 119, 119, 119, 119, 119,19007, 6525, 119, 9757, 9757, 9757, 9757, 9757, 9757, 9757, 9757, 9757, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 6526,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119,11314,11315,11315,11315, 11315,11315,11315,11315,11315,10499,19007,19007,19007,19007, 19007,19007,11315,11315,11315,11315,11315,11316,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11315,11315, 11315,11315,11315,11315,11317,11318,11318,11318,11318,11318, 11318,11318,11318,11319,19007,19007,19007,19007,19007,19007, 11318,11318,11318,11318,11318,11320,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11318,11318,11318,11318, 11318,11318, 6527,19007,19007,19007,19007,19007,19007,19007, 19007,11323,11324,11324,11324,11324,11324,11324,11324,11324, 11325,19007,19007,19007,19007,19007,19007,11324,11324,11324, 11324,11324,11326,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11324,11324,11324,11324,11324,11324,11331, 11332,11332,11332,11332,11332,11332,11332,11332, 9772,19007, 19007,19007,19007,19007,19007,11332,11332,11332,11332,11332, 11333,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11332,11332,11332,11332,11332,11332,11335,11336,11336, 11336,11336,11336,11336,11336,11336,11337,19007,19007,19007, 19007,19007,19007,11336,11336,11336,11336,11336,11338,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11336, 11336,11336,11336,11336,11336,11345,11346,11346,11346,11346, 11346,11346,11346,11346, 9784,19007,19007,19007,19007,19007, 19007,11346,11346,11346,11346,11346,11347,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11346,11346,11346, 11346,11346,11346,11349,11350,11350,11350,11350,11350,11350, 11350,11350,11351,19007,19007,19007,19007,19007,19007,11350, 11350,11350,11350,11350,11352,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11350,11350,11350,11350,11350, 11350,11359,11360,11361,11362,11362,11362,11362,11362,11362, 19007,19007,19007,19007,19007,19007,19007, 9102, 9102, 9102, 9102, 9102, 9106,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 9102, 9102, 9102, 9102, 9102, 9102,11363, 11364,11364,11364,11364,11364,11364,11364,11364,10537,19007, 19007,19007,19007,19007,19007,11364,11364,11364,11364,11364, 11365,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11364,11364,11364,11364,11364,11364,11366,11367,11367, 11367,11367,11367,11367,11367,11367,19007,19007,19007,19007, 19007,19007,19007,11367,11367,11367,11367,11367,11368,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11367, 11367,11367,11367,11367,11369,11375,19007, 9115, 9115, 9115, 9115, 9115, 9115, 9115, 9115, 9115, 9118,19007,19007,19007, 19007,19007,19007, 9115, 9115, 9115, 9115, 9115, 9117,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 9115, 9115, 9115, 9115, 9115, 9115, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421, 9047, 8421, 8423,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007, 9049,19007, 19007,11379,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8426, 8421, 8421, 9047, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,11381,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 11382,19007,19007,19007,19007,11381,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11386,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,11387,19007,19007,19007, 19007,11386,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,11389,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,11390,19007,19007,19007,19007,11389,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 11392,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11393,19007,19007,19007,19007, 119, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11393, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,11397,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,11398,19007,19007,19007,19007,11397,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11402, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,11403,19007,19007, 19007,19007,11402,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,11406,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,11407,19007,19007,19007,19007,11406,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,11409,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11410,19007,19007, 119, 119, 7812,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11410, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11412,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,11413,19007,19007,19007,19007,11412, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,11415,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 11416,19007,19007,19007,19007,11415,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11418,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11419,19007,19007, 119, 119, 7812,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11419, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,11421,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,11422,19007,19007,19007,19007,11421,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11426, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,11427,19007,19007, 19007,19007,11426,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 6527, 119, 119, 119, 119, 119,19007, 6525, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 6544,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 6534,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11431,11440,19007,19007,19007, 19007,19007,19007,19007,19007,11441,11441,11441,11441,11441, 11441,11441,11441,11441,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 4527,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11442, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007, 19007,19007,19007,11462,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,11463,19007,19007,19007,19007,11462,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3370, 1004, 1004, 1265,19007,19007,19007, 19007,19007,19007,19007,19007, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 3368,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 1266,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3370,19007, 4562, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007,11467, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,11468,19007,19007, 19007,19007,11467,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 19007,19007,19007,19007,19007,11475,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8592, 5945, 5945,19007,19007,19007,11476, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,11477,19007,19007, 19007,19007,11475,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,11476, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,11484, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007, 19007,19007,11485, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,11487,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11488,19007, 19007,19007,19007, 5945, 5945, 5945,19007,19007,19007,11489, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11488, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,11490,19007,19007,19007,19007,11484, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007, 19007,19007,11485, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,11496,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,11497, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,11498,19007, 19007,19007,19007,11496,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,11497, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 11502,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945, 19007,19007,19007,11503, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,11504,19007,19007,19007,19007,11502,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 11503, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945,10685,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007, 19007,19007,19007,19007,11506,11507,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8592, 5945, 5945,19007,19007,19007,11508,19007,19007, 19007,11507, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,11510,11510,11510,11510,11510, 11510,11510,11510, 5945, 5945, 5945, 5945, 5945, 5945, 5945, 19007,19007,19007,19007,19007,11511,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5945, 5945, 5945,19007,19007,19007,11512, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007, 19007,19007,11511,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007,11512, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,11515, 11516,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007, 19007,19007,11517,19007,19007,19007,11516, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 11526,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945, 19007,19007,19007,11527, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,11528,19007,19007,19007,19007,11526,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 11527, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945, 8589,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007, 19007,19007,19007,19007,11536,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8592, 5945, 5945,19007,19007,19007,11537, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,11538,19007,19007,19007, 19007,11536,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,11537, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,11545,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007, 19007,11546, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 11547,19007,19007,19007,19007,11545,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8592, 5945, 5945,19007,19007,19007,11546, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007, 19007,19007,11553,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,11554, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,11555,19007,19007,19007,19007,11553, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007, 19007,19007,11554, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,11559,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11560,19007,19007, 19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,11561, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11560, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,11563,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007, 19007,11564, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 11565,19007,19007,19007,19007,11563,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8592, 5945, 5945,19007,19007,19007,11564, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007, 19007,19007,11570,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007,11571, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,11572,19007,19007,19007,19007,11570, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007, 19007,19007,11571, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,11581,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,11582, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,11583,19007, 19007,19007,19007,11581,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,11582, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 11589,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945, 19007,19007,19007,11590, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,11591,19007,19007,19007,19007,11589,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 11590, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945, 8589,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007, 19007,19007,19007,19007,11595,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11596,19007,19007,19007,19007, 19007, 8592, 5945, 5945,19007,19007,19007,11597,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11596, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,11599,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,11600, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,11601,19007, 19007,19007,19007,11599,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,11600, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5947, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 5948,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 19007,19007,19007, 5949,11608,11610,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11611,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11612, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007,10776,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 5957,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,10777,19007,19007,19007,19007, 10776,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007, 19007,19007,19007,11616,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,11617,19007,19007,19007,19007,11616,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007,11621, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,11622,19007,19007, 19007,19007,11621,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 19007,19007,19007,19007,19007,11626,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2852, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,11627,19007,19007,19007,19007,11626,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2852, 2841, 2841, 2842,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11632,11632, 11632,11632,11632,11632,11632,11632,11632,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3392, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2852, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 2192,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6381,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2195, 119, 119, 19007,19007,19007,19007,11639, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11644,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,11645,19007,19007, 19007,19007,11644,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119,11648,11648,11648,11648,11648,11648,11648, 11648,11648,19007,19007,19007,19007,19007,19007,19007,11648, 11648,11648,11648,11648,11649,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11648,11648,11648,11648,11648, 11648, 778, 778,19007, 778, 778, 778, 778, 778, 778, 19007, 778, 778,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007, 19007,19007,19007,19007,11661,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,11662,19007,19007,19007,19007,11661,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007,11665, 778,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007, 10863,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 11665, 778,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 778, 778, 778, 778, 778, 778, 778,10864,19007, 19007,19007,19007,10863,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007,11667,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 1987,19007, 19007,19007,19007, 778, 778, 778,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 1987,11670,11670,11670,11670, 11670,11670,11670,11670,11670,10872,19007,19007,19007,19007, 19007,19007,11670,11670,11670,11670,11670,11671,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11670,11670, 11670,11670,11670,11670,10874,10874,10874,10874,10874,10874, 10874,10874,10874,11672,19007,19007,19007,19007,19007,19007, 10874,10874,10874,10874,10874,10875,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10874,10874,10874,10874, 10874,10874,11674,11674,11674,11674,11674,11674,11674,11674, 11674,19007,19007,19007,19007,19007,19007,19007,11674,11674, 11674,11674,11674,11675,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3504,19007,19007,19007,11674,11674,11674,11674,11674,11674, 11677,11677,11677,11677,11677,11677,11677,11677,11677,10119, 19007,19007,19007,19007,19007,19007,11677,11677,11677,11677, 11677,11678,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11677,11677,11677,11677,11677,11677,11680,11680, 11680,11680,11680,11680,11680,11680,11680,19007,19007,19007, 19007,19007,19007,19007,11680,11680,11680,11680,11680,11681, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11680,11680,11680,11680,11680,11680,11684,11684,11684,11684, 11684,11684,11684,11684,11684,10128,19007,19007,19007,19007, 19007,19007,11684,11684,11684,11684,11684,11685,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11684,11684, 11684,11684,11684,11684,11687,11687,11687,11687,11687,11687, 11687,11687,11687,19007,19007,19007,19007,19007,19007,19007, 11687,11687,11687,11687,11687,11688,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11687,11687,11687,11687, 11687,11687,11690,11691,11692,11693,11693,11693,11693,11693, 11693,19007,19007,19007,19007,19007,19007,19007, 9435, 9435, 9435, 9435, 9435, 9436,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 9435, 9435, 9435, 9435, 9435, 9435, 11694,11694,11694,11694,11694,11694,11694,11694,11694,10137, 19007,19007,19007,19007,19007,19007,11694,11694,11694,11694, 11694,11695,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11694,11694,11694,11694,11694,11694,11697,11697, 11697,11697,11697,11697,11697,11697,11697,19007,19007,19007, 19007,19007,19007,19007,11697,11697,11697,11697,11697,11698, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11697,11697,11697,11697,11697,11697,11700,11701,11702,11703, 11703,11703,11703,11703,11703,19007,19007,19007,19007,19007, 19007,19007, 9442, 9442, 9442, 9442, 9442, 9443,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 9442, 9442, 9442, 9442, 9442, 9442, 7543,19007,11704,11704,11704,11704, 11704,11704,11704,11704,11704, 8788,19007,19007,19007,19007, 19007,19007, 9440, 9440, 9440, 9440, 9440, 9441,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 9440, 9440, 9440, 9440, 9440, 9440,11705,11705,11705,11705,11705,11705, 11705,11705,11705,10150,19007,19007,19007,19007,19007,19007, 11705,11705,11705,11705,11705,11706,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11705,11705,11705,11705, 11705,11705,11708,11708,11708,11708,11708,11708,11708,11708, 11708,19007,19007,19007,19007,19007,19007,19007,11708,11708, 11708,11708,11708,11709,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11708,11708,11708,11708,11708,11708, 11711,11712,11713,11714,11714,11714,11714,11714,11714,19007, 19007,19007,19007,19007,19007,19007, 9450, 9450, 9450, 9450, 9450, 9451,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 9450, 9450, 9450, 9450, 9450, 9450,11715,11715, 11715,11715,11715,11715,11715,11715,11715, 8800,19007,19007, 19007,19007,19007,19007, 9448, 9448, 9448, 9448, 9448, 9449, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 9448, 9448, 9448, 9448, 9448, 9448,11716,11716,11716,11716, 11716,11716,11716,11716,11716,10164,19007,19007,19007,19007, 19007,19007,11716,11716,11716,11716,11716,11717,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11716,11716, 11716,11716,11716,11716,11719,11719,11719,11719,11719,11719, 11719,11719,11719,19007,19007,19007,19007,19007,19007,19007, 11719,11719,11719,11719,11719,11720,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11719,11719,11719,11719, 11719,11719,11722,11723,11724,11725,11725,11725,11725,11725, 11725,19007,19007,19007,19007,19007,19007,19007, 9461, 9461, 9461, 9461, 9461, 9462,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 9461, 9461, 9461, 9461, 9461, 9461, 11726,11726,11726,11726,11726,11726,11726,11726,11726, 8816, 19007,19007,19007,19007,19007,19007, 9459, 9459, 9459, 9459, 9459, 9460,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 9459, 9459, 9459, 9459, 9459, 9459,11727,11727, 11727,11727,11727,11727,11727,11727,11727,10921,19007,19007, 19007,19007,19007,19007,11727,11727,11727,11727,11727,11728, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11727,11727,11727,11727,11727,11727,11729,11729,11729,11729, 11729,11729,11729,11729,11729,19007,19007,19007,19007,19007, 19007,19007,11729,11729,11729,11729,11729,11730,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11729,11729, 11729,11729,11729,11729, 9474, 9474, 9474, 9474, 9474, 9474, 9474, 9474, 9474, 9475,19007,19007,19007,19007,19007,19007, 9474, 9474, 9474, 9474, 9474, 9476,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 9474, 9474, 9474, 9474, 9474, 9474, 9471, 9471, 9471, 9471, 9471, 9471, 9471, 9471, 9471, 8171,19007,19007,19007,19007,19007,19007, 9471, 9471, 9471, 9471, 9471, 9472,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 9471, 9471, 9471, 9471, 9471, 9471, 1381,19007,19007,19007,19007,19007,19007, 1382,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 1383,19007, 1384,19007, 1385,19007,19007, 1386,19007, 19007,19007,19007, 1387,19007,19007, 1388,19007, 1389,19007, 11782,19007, 1391, 1392, 1393, 2525,10238,19007,19007,19007, 19007,10239,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10240,19007,19007,19007, 19007,19007,19007,10241,19007,19007,19007,19007,19007,11784, 19007,19007,19007,19007,19007,19007,19007,10242,19007,10243, 19007,10244,19007,19007,10245,19007,19007,19007,19007,10246, 19007,19007,10247,19007,10248,19007,10249,19007,10250,10251, 10252,11785,19007,19007,19007,19007,10987,19007,19007,19007, 19007,19007,19007,10988,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10989,19007,10990, 19007,10991,19007,19007,10992,19007,19007,19007,19007,10993, 19007,19007,10994,19007,10995,19007,10996,19007,10997,10998, 10999,10987,19007,19007,19007,19007,19007,19007,10988,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10989,19007,10990,19007,10991,19007,19007,10992, 19007,19007,19007,19007,10993,19007,19007,10994,19007,10995, 19007,10996,19007,10997,10998,10999,11786,10987,19007,19007, 19007,19007,19007,19007,10988,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10989,19007, 10990,11787,10991,19007,19007,10992,19007,19007,19007,19007, 10993,19007,19007,10994,19007,10995,19007,10996,19007,10997, 10998,10999,10987,19007,19007,19007,19007,19007,19007,10988, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10989,19007,10990,19007,10991,19007,11788, 10992,19007,19007,19007,19007,10993,19007,19007,10994,19007, 10995,19007,10996,19007,10997,10998,10999,10987,19007,19007, 19007,19007,19007,19007,10988,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10989,19007, 10990,19007,10991,19007,19007,10992,19007,19007,19007,19007, 10993,19007,19007,10994,19007,10995,19007,10996,19007,10997, 10998,11789,10987,19007,19007,19007,19007,19007,19007,10988, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10989,19007,10990,19007,10991,19007,19007, 10992,19007,19007,19007,19007,10993,19007,11790,10994,19007, 10995,19007,10996,19007,10997,10998,10999,10987,19007,19007, 19007,19007,19007,19007,10988,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11791,19007, 10990,19007,10991,19007,19007,10992,19007,19007,19007,19007, 10993,19007,19007,10994,19007,10995,19007,10996,19007,10997, 10998,10999,11792,10987,19007,19007,19007,19007,19007,19007, 10988,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10989,19007,10990,19007,10991,19007, 19007,11793,19007,19007,19007,19007,11794,19007,19007,10994, 19007,10995,19007,10996,19007,10997,10998,10999,10987,19007, 19007,19007,19007,19007,19007,10988,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10989, 19007,10990,19007,10991,19007,19007,10992,19007,19007,19007, 19007,10993,19007,11795,10994,19007,10995,19007,10996,19007, 10997,10998,10999,10987,19007,19007,19007,19007,19007,19007, 10988,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10989,19007,10990,19007,10991,19007, 19007,10992,19007,19007,19007,19007,10993,19007,19007,10994, 19007,10995,19007,10996,19007,10997,10998,10999,11796,11797, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10987,19007,19007,19007,19007,19007,19007, 10988,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10989,19007,10990,19007,10991,19007, 19007,10992,19007,19007,19007,19007,10993,19007,19007,10994, 19007,10995,19007,10996,19007,10997,10998,10999,10987,19007, 19007,19007,19007,19007,19007,10988,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10989, 19007,10990,19007,11798,19007,19007,10992,19007,19007,19007, 19007,10993,19007,19007,11799,19007,10995,19007,10996,19007, 10997,10998,10999,10987,19007,19007,19007,19007,19007,19007, 10988,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11800,19007,10990,19007,10991,19007, 19007,10992,19007,19007,19007,19007,10993,19007,19007,10994, 19007,10995,19007,10996,19007,10997,10998,10999, 2525,10238, 19007,19007,19007,19007,10239,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10240, 19007,19007,11801,19007,19007,19007,10241,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10242,19007,10243,19007,10244,19007,19007,10245,19007,19007, 19007,19007,10246,19007,19007,10247,19007,10248,19007,10249, 19007,10250,10251,10252, 2525, 2526,19007,19007,19007,19007, 1380,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2527,19007,19007,19007,19007, 19007,19007, 2528,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2529,19007, 2530,19007, 2532,19007,19007, 2533,11817,19007,19007,19007, 2535,19007, 19007, 2536,19007, 2537,19007, 2538,19007, 2539, 2540, 2541, 11818,19007,19007,19007,19007,19007,11819, 1713,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1714, 19007,19007,19007,19007,19007,19007, 1715,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1716,19007, 1717,19007, 1718,19007,19007, 1719,19007,19007, 19007,19007, 1720,19007,19007, 1721,19007, 1722,19007, 1723, 19007, 1724, 1725, 1726, 1713,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 1714,19007,19007,19007, 19007,19007,19007, 1715,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 1716,19007, 1717, 19007, 1718,19007,19007, 1719,19007,19007,19007,19007, 1720, 11820,19007, 1721,19007, 1722,19007, 1723,19007, 1724, 1725, 2092, 2525,11020,19007,19007,19007,19007,11021,19007,19007, 11022,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11023,19007,19007,19007,19007,19007,19007,11024, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11025,19007,11026,19007,11027,19007,19007, 11028,19007,19007,19007,19007,11029,19007,19007,11030,19007, 11031,19007,11032,19007,11033,11034,11035, 2525,11020,19007, 19007,19007,19007,11021,19007,19007,11022,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11023,19007, 11821,19007,19007,19007,19007,11024,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11025, 19007,11026,19007,11027,19007,19007,11028,19007,19007,19007, 19007,11029,19007,19007,11030,19007,11031,19007,11032,19007, 11033,11034,11035,11822,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11823,19007,19007,19007,19007, 19007,19007,11824,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11825,19007,11826,19007, 11827,19007,19007,11828,19007,19007,19007,19007,11829,19007, 19007,11830,19007,11831,19007,11832,19007,11833,11834,11835, 2525, 3071,19007,19007,19007,19007, 1712,19007,19007, 3072, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3073,19007,19007,19007,19007,19007,19007, 3074,19007, 19007,11853,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3075,19007, 3076,19007, 3078,19007,19007, 3079, 19007,19007,19007,19007, 3081,19007,19007, 3082,19007, 3083, 19007, 3084,19007, 3085, 3086, 3087, 2525, 8904,19007,19007, 19007,19007, 1712,19007,19007, 3072,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3073,19007,19007, 19007,19007,19007,19007, 3074,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3075,19007, 3076,19007, 3078,19007,19007, 3659,19007,19007,19007,19007, 3660,19007,19007, 3082,19007, 3083,19007, 3084,19007, 3085, 3086, 3087,10272,19007,10272,19007,19007,11049,11049,11049, 11049,11049,11049,11049,11049,11049,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 120,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10274,19007,19007,10275, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,11869,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,11870, 19007,19007,19007,19007,11869,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119,19007, 857, 119, 119, 119, 119, 119,19007,10282, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9572,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 277, 277,19007, 287, 277, 277, 277, 277, 277, 667, 280, 277, 688, 688, 688, 688, 688, 688, 688, 688, 688, 917, 277, 277, 277, 277, 277, 277, 687, 687, 687, 687, 687, 690, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 278,19007,19007,19007, 19007,19007,19007,19007,19007, 687, 687, 687, 687, 687, 687, 687, 687, 687,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10292, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,11874,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,11875,19007,19007,19007,19007,11874,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,11879,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10292, 119, 119, 119, 119, 119, 119,11880, 19007,19007,19007,19007,11879,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11884,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,11885,19007,19007,19007,19007, 11884,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007, 19007,10292, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,11888,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,11889,19007,19007,19007,19007,11888,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11891, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11892,19007,19007, 8419, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11892, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10292, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,11894,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,11895,19007,19007,19007,19007,11894,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 11897,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11898,19007,19007, 8419, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11898, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 7133, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 903, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 9592,19007,19007,19007,19007, 19007,11899,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 661, 119, 119,19007, 9034, 119, 119, 119, 119, 119, 9591, 7133, 119, 9591, 9591, 9591, 9591, 9591, 9591, 9591, 9591, 9591, 903, 119, 119, 119, 119, 119, 119, 9593, 9593, 9593, 9593, 9593, 9594, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 119, 119, 119, 661, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10307, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 662,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10309, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 662,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10292, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,10293,11900,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 277, 277,19007, 8330, 277, 277, 277, 277, 277,19007, 8332, 277,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 906, 277, 277, 277, 277, 277, 277,19007,19007,19007,19007,19007, 9588,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 277, 277, 277, 9589,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11901, 277, 277,19007, 8351, 277, 277, 277, 277, 277,19007, 8332, 277,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 906, 277, 277, 277, 277, 277, 277,19007,19007,19007,19007,19007, 8353,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 277, 277, 277, 8354,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11902, 11905,11905,11905,11905,11905,11905,11905,11905,11905,19007, 19007,19007,19007,19007,19007,19007,11905,11905,11905,11905, 11905,11906,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11905,11905,11905,11905,11905,11905, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,11909,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,11910, 19007,19007,19007,19007,11909,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11914,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,11915,19007,19007,19007,19007, 11914,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,11919,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,11920,19007,19007,19007,19007,11919,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11924, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,11925,19007,19007, 19007,19007,11924,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,11928,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11929,19007,19007,19007, 19007,19007, 8419, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11929, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11931,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,11932,19007,19007,19007,19007, 11931,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,11933,11933,11933,11933,11933,11933,11933,11933, 11933, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,11287,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 9697, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11287,19007,19007,19007, 19007,19007,11934,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11936, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,11937,19007,19007, 19007,19007,11936,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,11941,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,11942,19007,19007,19007,19007,11941,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,11945,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11946,19007,19007,19007,19007,19007, 8419, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11946, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,11948,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,11949,19007,19007,19007,19007,11948,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 7135, 119, 119, 119, 119, 119,19007, 7133, 119,10346,10346, 10346,10346,10346,10346,10346,10346,10346, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7134, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 7135, 119, 119, 119, 119, 119,19007, 7133, 119,10346,10346,10346,10346,10346,10346,10346,10346, 10346, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 7134,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119,11950,11951,11951,11951,11951,11951, 11951,11951,11951,11135,19007,19007,19007,19007,19007,19007, 11951,11951,11951,11951,11951,11952,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11951,11951,11951,11951, 11951,11951,11953,11954,11954,11954,11954,11954,11954,11954, 11954,11955,19007,19007,19007,19007,19007,19007,11954,11954, 11954,11954,11954,11956,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11954,11954,11954,11954,11954,11954, 7135,19007,19007,19007,19007,19007,19007,19007,19007,11959, 11960,11960,11960,11960,11960,11960,11960,11960,11961,19007, 19007,19007,19007,19007,19007,11960,11960,11960,11960,11960, 11962,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11960,11960,11960,11960,11960,11960,11967,11968,11968, 11968,11968,11968,11968,11968,11968,10361,19007,19007,19007, 19007,19007,19007,11968,11968,11968,11968,11968,11969,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11968, 11968,11968,11968,11968,11968,11971,11972,11972,11972,11972, 11972,11972,11972,11972,11973,19007,19007,19007,19007,19007, 19007,11972,11972,11972,11972,11972,11974,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11972,11972,11972, 11972,11972,11972,11981,11982,11982,11982,11982,11982,11982, 11982,11982,10373,19007,19007,19007,19007,19007,19007,11982, 11982,11982,11982,11982,11983,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11982,11982,11982,11982,11982, 11982,11985,11986,11986,11986,11986,11986,11986,11986,11986, 11987,19007,19007,19007,19007,19007,19007,11986,11986,11986, 11986,11986,11988,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11986,11986,11986,11986,11986,11986,11995, 11996,11997,11998,11998,11998,11998,11998,11998,19007,19007, 19007,19007,19007,19007,19007, 9662, 9662, 9662, 9662, 9662, 9666,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 9662, 9662, 9662, 9662, 9662, 9662,11999,12000,12000, 12000,12000,12000,12000,12000,12000,11173,19007,19007,19007, 19007,19007,19007,12000,12000,12000,12000,12000,12001,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12000, 12000,12000,12000,12000,12000,12002,12003,12003,12003,12003, 12003,12003,12003,12003,19007,19007,19007,19007,19007,19007, 19007,12003,12003,12003,12003,12003,12004,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12003,12003,12003, 12003,12003,12005,12011,19007, 9675, 9675, 9675, 9675, 9675, 9675, 9675, 9675, 9675, 9678,19007,19007,19007,19007,19007, 19007, 9675, 9675, 9675, 9675, 9675, 9677,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 9675, 9675, 9675, 9675, 9675, 9675, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9038,19007,19007,12015, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 7135, 119, 119, 119, 119, 119,19007, 7133, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 7150, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 7142, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12016, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,12018,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12019,19007,19007,19007,19007,12018,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12023, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 10400,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12024,19007,19007, 19007,19007,12023,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,12026,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,12027,19007,19007,19007,19007,12026,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,12029,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12030,19007,19007,19007,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12030, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119,10400,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,12034,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12035,19007,19007,19007,19007,12034,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 12039,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,12040,19007, 19007,19007,19007,12039,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12043,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12044,19007,19007,19007,19007,12043, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 10400,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,12046,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12047,19007,19007, 8419, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12047, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12049,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,12050, 12050,12050,12050,12050,12050,12050,12050,12050, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 12049,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 9697, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,12053,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12054,19007,19007,19007,19007,12053,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12056, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12057,19007,19007, 8419, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12057, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,12060,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,12061,19007,19007,19007,19007,12060,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 12063,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12064,19007,19007,19007,19007, 119, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12064, 119, 119,19007,12065, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 9700,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,12066, 8421, 8423,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007,12068,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8426, 8421, 8421,12066, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007, 12070,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,12071,19007, 19007,19007,19007,12070,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12075,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,12076,19007,19007,19007,19007,12075, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,12078,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12079,19007,19007,19007,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12079, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,12081,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12082,19007,19007,19007,19007,12081,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007,10415, 119, 119, 119, 119, 119,19007, 119,10400, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,12086,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119, 19007, 119,10400,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,12087, 19007,19007,19007,19007,12086,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12091,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 10415, 119, 119, 119, 119, 119,19007, 119,10400,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12092,19007,19007,19007,19007, 12091,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,12095,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12096,19007,19007,19007,19007,12095,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12098, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12099,19007,19007, 8419, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12099, 119, 119,19007,10415, 119, 119, 119, 119, 119, 19007, 119,10400,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,12101,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12102,19007,19007,19007,19007,12101,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 10415, 119, 119, 119, 119, 119,19007, 119,10400,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 12104,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12105,19007,19007, 8419, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12105, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007, 9700,12107,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,12066, 8421, 8423,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007,12068,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8426, 8421, 8421,12066, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,12108, 8421, 8423,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007, 19007,19007,12110,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421,12108, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007,12112,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,12113,19007,19007,19007,19007,12112, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,12117,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 12118,19007,19007,19007,19007,12117,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12122,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 19007,10415, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,12123,19007,19007,19007, 19007,12122,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119,12128,12129,12129,12129,12129,12129,12129,12129,12129, 10499,19007,19007,19007,19007,19007,19007,12129,12129,12129, 12129,12129,12130,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12129,12129,12129,12129,12129,12129,12129, 12129,12129,12129,12129,12129,12129,12129,12129,10501,19007, 19007,19007,19007,19007,19007,12129,12129,12129,12129,12129, 12130,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12129,12129,12129,12129,12129,12129,12132,12133,12133, 12133,12133,12133,12133,12133,12133,12134,19007,19007,19007, 19007,19007,19007,12133,12133,12133,12133,12133,12135,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12133, 12133,12133,12133,12133,12133, 6527,19007,19007,19007,19007, 19007,19007,19007,19007,12137,12137,12137,12137,12137,12137, 12137,12137,12137,19007,19007,19007,19007,19007,19007,19007, 12137,12137,12137,12137,12137,12138,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12137,12137,12137,12137, 12137,12139,12142,12143,12143,12143,12143,12143,12143,12143, 12143,11325,19007,19007,19007,19007,19007,19007,12143,12143, 12143,12143,12143,12144,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12143,12143,12143,12143,12143,12143, 12145,12145,12145,12145,12145,12145,12145,12145,12145,19007, 19007,19007,19007,19007,19007,19007,12145,12145,12145,12145, 12145,12146,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12145,12145,12145,12145,12145,12147,12152,12153, 12153,12153,12153,12153,12153,12153,12153,11337,19007,19007, 19007,19007,19007,19007,12153,12153,12153,12153,12153,12154, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12153,12153,12153,12153,12153,12153,12155,12155,12155,12155, 12155,12155,12155,12155,12155,19007,19007,19007,19007,19007, 19007,19007,12155,12155,12155,12155,12155,12156,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12155,12155, 12155,12155,12155,12157,12163,12164,12164,12164,12164,12164, 12164,12164,12164,11351,19007,19007,19007,19007,19007,19007, 12164,12164,12164,12164,12164,12165,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12164,12164,12164,12164, 12164,12164,12166,12166,12166,12166,12166,12166,12166,12166, 12166,19007,19007,19007,19007,19007,19007,19007,12166,12166, 12166,12166,12166,12167,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12166,12166,12166,12166,12166,12168, 11375,19007, 9783, 9783, 9783, 9783, 9783, 9783, 9783, 9783, 9783, 9786,19007,19007,19007,19007,19007,19007, 9783, 9783, 9783, 9783, 9783, 9785,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 9783, 9783, 9783, 9783, 9783, 9783, 12177,12178,12178,12178,12178,12178,12178,12178,12178,10537, 19007,19007,19007,19007,19007,19007,12178,12178,12178,12178, 12178,12179,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12178,12178,12178,12178,12178,12178,12181,12182, 12182,12182,12182,12182,12182,12182,12182,12183,19007,19007, 19007,19007,19007,19007,12182,12182,12182,12182,12182,12184, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12182,12182,12182,12182,12182,12182,12191,12192,12193,12194, 12194,12194,12194,12194,12194,19007,19007,19007,19007,19007, 19007,19007, 9796, 9796, 9796, 9796, 9796, 9800,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 9796, 9796, 9796, 9796, 9796, 9796,12199,12199,12199,12199,12199,12199, 12199,12199,12199, 9118,19007,19007,19007,19007,19007,19007, 9793, 9793, 9793, 9793, 9793, 9794,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 9793, 9793, 9793, 9793, 9793, 9793, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421, 19007,19007,19007,19007,19007, 9706,19007,19007,19007,19007, 19007,19007,19007,12200,19007,19007,19007,19007,19007,19007, 19007,19007, 8426, 8421, 8421, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12202,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,12203,19007,19007,19007, 19007,12202,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 9811,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,12207,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,12208,19007,19007,19007,19007,12207,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 12211,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,12212,19007, 19007,19007,19007,12211,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12215,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,12216,19007,19007,19007,19007,12215, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,12218,19007,12219,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12220, 12220,12221,19007,19007,19007,19007,19007,19007,19007,19007, 12222, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 9811,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,12225,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,12226,19007,19007,19007,19007,12225,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 12230,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,12231,19007, 19007,19007,19007,12230,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12235,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,12236,19007,19007,19007,19007,12235, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,12239,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 12240,19007,19007,19007,19007,12239,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,12241, 119, 9811,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,12241,19007,19007,19007,19007,12243,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 7812,12241,12241, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,12245,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,12246,19007,19007,19007,19007,12245,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12249, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,12250,19007,19007, 19007,19007,12249,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,12253,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,12254,19007,19007,19007,19007,12253,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119, 19007, 119, 119, 119, 119, 119, 119,12255, 119, 9811, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,12255,19007,19007,19007, 19007,12257,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812,12255,12255, 119, 119,19007, 6527, 119, 119, 119, 119, 119,19007, 6525, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6544,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 6534, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 12287,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,12288,19007, 19007,19007,19007,12287,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007,12291, 1004,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007,11467,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 1004, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007,12291, 1004,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,11468,19007,19007,19007,19007,11467, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007, 19007,19007,12294,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2346,19007,19007,19007,19007, 1004, 1004, 1004,19007,19007,19007,19007,19007,19007, 2345,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2346, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 19007,19007,19007,19007,19007,12299,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8592, 5945, 5945,19007,19007,19007,12300, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,12301,19007,19007, 19007,19007,12299,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,12300, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,12309, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007, 19007,19007,12310, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,12311,19007,19007,19007,19007,12309,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,12310, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007, 19007,19007,19007,12314,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007,12315, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,12316,19007,19007,19007,19007, 12314,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 19007,19007,19007,12315, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,12318,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12319, 19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007, 12320,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12319, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 12327,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945, 19007,19007,19007,12328, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,12329,19007,19007,19007,19007,12327,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 12328, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945,10685,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007, 19007,19007,19007,19007,12335,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8592, 5945, 5945,19007,19007,19007,12336, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,12337,19007,19007,19007, 19007,12335,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,12336, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,12341,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007, 19007,12342, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 12343,19007,19007,19007,19007,12341,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8592, 5945, 5945,19007,19007,19007,12342, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 10685,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007, 19007,19007,12345,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12346,19007,19007, 8592, 5945, 5945,19007,19007,19007,12347,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12346, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,12350,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007, 12351, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945, 5945,12352,12352,12352,12352,12352,12352,12352, 12352,12352, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007, 19007,19007,19007,19007,12350,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5945, 5945, 9967,19007,19007,19007,12351, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007, 19007,12357,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,12358, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,12359,19007,19007,19007,19007,12357,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007, 19007,12358, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 19007,19007,19007,19007,19007,12361,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12362, 19007,19007, 8592, 5945, 5945,19007,19007,19007,12363,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12362, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 12372,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945, 19007,19007,19007,12373, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,12374,19007,19007,19007,19007,12372,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 12373, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007, 19007,19007,19007,19007,12382,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5945, 5945, 5945,19007,19007,19007,12383, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,12384,19007,19007,19007, 19007,12382,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007,12383, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5947, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 5948,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007, 19007, 5949,12395,11610,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,12396, 19007,19007,19007,19007,11611, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007,12400,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,12401,19007,19007,19007, 19007,12400,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,19007, 19007,19007,19007,19007,12405,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2852, 2841, 2841, 2841, 119, 119,19007,12413, 119, 119, 119, 119, 119,19007, 119, 2192,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2193, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 6381,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2195, 119, 119, 119, 119, 19007, 119, 119, 119, 119,19007, 119, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,12418,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 12419,19007,19007,19007,19007,12418,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119,12422,12422,12422,12422, 12422,12422,12422,12422,12422,19007,19007,19007,19007,19007, 19007,19007,12422,12422,12422,12422,12422,12423,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12422,12422, 12422,12422,12422,12422, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007,11661,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2898, 778, 778, 778, 778, 778, 778,11662,19007,19007,19007,19007, 11661,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2900, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 778, 778, 778, 778, 778, 778, 778,19007,19007, 19007,19007,19007,12439,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007,11665, 778,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007,10863,19007,19007, 19007,19007,19007,12440,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778, 2391,19007,19007,19007,19007, 2387,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 12442,12442,12442,12442,12442,12442,12442,12442,12442,10872, 19007,19007,19007,19007,19007,19007,12442,12442,12442,12442, 12442,12443,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12442,12442,12442,12442,12442,12442,12445,12445, 12445,12445,12445,12445,12445,12445,12445,19007,19007,19007, 19007,19007,19007,19007,12445,12445,12445,12445,12445,12446, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3504,19007,19007,19007, 12445,12445,12445,12445,12445,12445,12448,12448,12448,12448, 12448,12448,12448,12448,12448,19007,19007,19007,19007,19007, 19007,19007,12448,12448,12448,12448,12448,12449,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12448,12448, 12448,12448,12448,12448,12451,12452,12453,12454,12454,12454, 12454,12454,12454,10115,19007,19007,19007,19007,19007,19007, 10114,10114,10114,10114,10114,10116,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10114,10114,10114,10114, 10114,10114,12455,12455,12455,12455,12455,12455,12455,12455, 12455,19007,19007,19007,19007,19007,19007,19007,12455,12455, 12455,12455,12455,12456,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12455,12455,12455,12455,12455,12455, 7543,19007,10127,10127,10127,10127,10127,10127,10127,10127, 10127,10128,19007,19007,19007,19007,19007,19007,10127,10127, 10127,10127,10127,10129,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10127,10127,10127,10127,10127,10127, 12461,12461,12461,12461,12461,12461,12461,12461,12461,19007, 19007,19007,19007,19007,19007,19007,12461,12461,12461,12461, 12461,12462,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12461,12461,12461,12461,12461,12461,10136,10136, 10136,10136,10136,10136,10136,10136,10136,10137,19007,19007, 19007,19007,19007,19007,10136,10136,10136,10136,10136,10138, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10136,10136,10136,10136,10136,10136,10133,10133,10133,10133, 10133,10133,10133,10133,10133, 8788,19007,19007,19007,19007, 19007,19007,10133,10133,10133,10133,10133,10134,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10133,10133, 10133,10133,10133,10133,12467,12467,12467,12467,12467,12467, 12467,12467,12467,19007,19007,19007,19007,19007,19007,19007, 12467,12467,12467,12467,12467,12468,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12467,12467,12467,12467, 12467,12467,10149,10149,10149,10149,10149,10149,10149,10149, 10149,10150,19007,19007,19007,19007,19007,19007,10149,10149, 10149,10149,10149,10151,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10149,10149,10149,10149,10149,10149, 10146,10146,10146,10146,10146,10146,10146,10146,10146, 8800, 19007,19007,19007,19007,19007,19007,10146,10146,10146,10146, 10146,10147,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10146,10146,10146,10146,10146,10146,12473,12473, 12473,12473,12473,12473,12473,12473,12473,19007,19007,19007, 19007,19007,19007,19007,12473,12473,12473,12473,12473,12474, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12473,12473,12473,12473,12473,12473,10163,10163,10163,10163, 10163,10163,10163,10163,10163,10164,19007,19007,19007,19007, 19007,19007,10163,10163,10163,10163,10163,10165,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10163,10163, 10163,10163,10163,10163,10160,10160,10160,10160,10160,10160, 10160,10160,10160, 8816,19007,19007,19007,19007,19007,19007, 10160,10160,10160,10160,10160,10161,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10160,10160,10160,10160, 10160,10160,12479,12479,12479,12479,12479,12479,12479,12479, 12479,10921,19007,19007,19007,19007,19007,19007,12479,12479, 12479,12479,12479,12480,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12479,12479,12479,12479,12479,12479, 12482,12482,12482,12482,12482,12482,12482,12482,12482,19007, 19007,19007,19007,19007,19007,19007,12482,12482,12482,12482, 12482,12483,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12482,12482,12482,12482,12482,12482,12485,12486, 12487,12488,12488,12488,12488,12488,12488,19007,19007,19007, 19007,19007,19007,19007,10176,10176,10176,10176,10176,10177, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10176,10176,10176,10176,10176,10176,12489,12489,12489,12489, 12489,12489,12489,12489,12489, 9475,19007,19007,19007,19007, 19007,19007,10174,10174,10174,10174,10174,10175,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10174,10174, 10174,10174,10174,10174,12535,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 1381,19007,19007,19007,19007,19007, 19007, 1382,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 1383,19007, 1384,19007, 1385, 19007,19007, 1386,19007,19007,19007,19007, 1387,19007,19007, 1388,19007, 1389,19007, 1390,19007, 1391, 1392, 1393, 1707, 2525,10238,19007,19007,19007,19007,10239,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,10240,19007,19007,19007,19007,19007,19007,10241,19007, 19007,19007,19007,19007,12537,19007,19007,19007,19007,19007, 19007,19007,10242,19007,10243,19007,10244,19007,19007,10245, 19007,19007,19007,19007,10246,19007,19007,10247,19007,10248, 19007,10249,19007,10250,10251,10252,10987,19007,19007,12538, 19007,19007,19007,10988,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10989,19007,10990, 19007,10991,19007,19007,10992,19007,19007,19007,19007,10993, 19007,19007,10994,19007,10995,19007,10996,19007,10997,10998, 10999,12539,19007,19007,19007,19007,10987,19007,19007,19007, 19007,19007,19007,10988,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12540,19007,10990, 19007,10991,19007,19007,10992,19007,19007,19007,19007,10993, 19007,19007,10994,19007,10995,19007,10996,19007,10997,10998, 10999,10987,19007,19007,19007,19007,19007,19007,10988,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10989,19007,10990,19007,10991,19007,19007,10992, 19007,19007,19007,19007,12541,19007,19007,10994,19007,10995, 19007,10996,19007,10997,10998,10999,10987,19007,19007,19007, 19007,19007,19007,10988,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10989,19007,10990, 19007,10991,19007,19007,10992,12542,19007,19007,19007,10993, 19007,19007,10994,19007,10995,19007,10996,19007,10997,10998, 10999,10987,19007,19007,19007,19007,19007,19007,10988,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11800,19007,10990,19007,10991,19007,19007,10992, 19007,19007,19007,19007,10993,19007,19007,10994,19007,10995, 19007,12543,19007,10997,10998,10999,10987,19007,19007,19007, 19007,19007,19007,10988,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10989,19007,10990, 19007,10991,19007,19007,10992,19007,19007,19007,19007,10993, 19007,19007,10994,19007,12544,19007,10996,19007,10997,10998, 10999,10987,19007,19007,19007,19007,19007,19007,10988,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10989,19007,10990,11787,10991,19007,19007,10992, 12545,19007,19007,19007,10993,19007,19007,10994,19007,10995, 19007,10996,19007,10997,10998,10999,12539,19007,19007,19007, 19007,10987,19007,19007,19007,19007,19007,19007,10988,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12540,19007,10990,19007,10991,19007,19007,10992, 19007,19007,19007,19007,10993,19007,19007,10994,19007,10995, 12546,10996,19007,10997,10998,10999,10987,19007,19007,19007, 19007,19007,19007,10988,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10989,19007,10990, 19007,10991,19007,19007,10992,19007,19007,19007,19007,10993, 19007,11790,12547,19007,10995,19007,10996,19007,10997,10998, 10999,10987,19007,19007,19007,19007,19007,19007,10988,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12548,19007,10990,19007,10991,19007,19007,10992, 19007,19007,19007,19007,10993,19007,19007,10994,19007,10995, 19007,10996,19007,10997,10998,10999,11792,10987,19007,19007, 19007,19007,19007,19007,10988,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10989,19007, 10990,19007,10991,19007,19007,10992,19007,19007,19007,19007, 10993,19007,19007,10994,19007,10995,19007,10996,12549,10997, 10998,10999,10987,19007,19007,19007,19007,19007,19007,10988, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10989,19007,10990,19007,10991,19007,19007, 10992,19007,19007,19007,19007,10993,19007,19007,12550,19007, 10995,19007,10996,19007,10997,10998,10999,10987,19007,19007, 19007,19007,19007,19007,10988,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10989,19007, 10990,19007,10991,19007,19007,10992,19007,19007,19007,19007, 10993,19007,19007,10994,19007,10995,19007,10996,19007,10997, 10998,10999,10987,19007,19007,19007,19007,19007,19007,10988, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10989,12551,10990,19007,10991,19007,19007, 10992,19007,19007,19007,19007,10993,19007,19007,10994,19007, 10995,19007,10996,19007,10997,10998,11789,12552,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,10987,19007,19007,19007,19007,19007,19007,10988,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10989,19007,10990,19007,10991,19007,19007,11793, 19007,19007,19007,19007,11794,19007,19007,10994,19007,10995, 19007,10996,19007,10997,10998,10999,10987,19007,19007,19007, 19007,19007,19007,10988,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10989,19007,10990, 11787,10991,19007,19007,10992,19007,19007,19007,19007,12553, 19007,19007,10994,19007,10995,19007,10996,19007,10997,10998, 10999, 2525,10238,19007,19007,19007,19007,10239,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10240,19007,19007,19007,19007,19007,12554,10241, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10242,19007,10243,19007,10244,19007,19007, 10245,19007,19007,19007,19007,10246,19007,19007,10247,19007, 10248,19007,10249,19007,10250,10251,10252, 2525, 2526,19007, 19007,19007,19007, 1380,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2527,19007, 19007,19007,19007,19007,19007, 2528,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2529, 19007, 2530,19007,12570,19007,19007, 2533,19007,19007,19007, 19007, 2535,19007,19007, 2536,19007, 2537,19007, 2538,19007, 2539, 2540, 2541,12571,19007,19007,19007,19007,19007,19007, 19007, 1713,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 1714,19007,19007,19007,19007,19007,19007, 1715,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 1716,19007, 1717,19007, 1718,19007, 19007, 1719,19007,19007,19007,19007, 1720,19007,19007, 1721, 19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 1713,12572, 12572,12572,12572,12572,12572,12572,12572,12572,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1714,19007,19007,19007,19007,19007,19007, 1715,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 1716,19007, 1717,19007, 1718,19007,19007, 1719,19007, 19007,19007,19007, 1720,19007,19007, 1721,19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 2525,11020,19007,19007,19007, 19007,11021,19007,19007,11022,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11023,19007,19007,19007, 19007,19007,19007,11024,19007,19007,19007,19007,19007,12574, 19007,19007,19007,19007,19007,19007,19007,11025,19007,11026, 19007,11027,19007,19007,11028,19007,19007,19007,19007,11029, 19007,19007,11030,19007,11031,19007,11032,19007,11033,11034, 11035,11822,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11823,19007,19007,19007,19007,19007,19007, 11824,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11825,19007,11826,19007,11827,19007, 19007,11828,19007,19007,19007,19007,11829,19007,19007,11830, 19007,11831,19007,11832,19007,11833,12575,11835,11822,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12576,19007,19007,19007,19007, 11823,19007,19007,19007,19007,19007,19007,11824,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11825,19007,11826,19007,11827,19007,19007,11828,19007, 19007,19007,19007,11829,19007,19007,11830,19007,11831,19007, 11832,19007,11833,11834,11835,11822,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11823,19007,19007, 19007,19007,19007,19007,11824,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11825,19007, 11826,19007,11827,19007,19007,11828,19007,19007,19007,19007, 11829,19007,19007,11830,19007,11831,19007,11832,19007,11833, 11834,11835,12577,11822,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11823,19007,19007,19007,19007, 19007,19007,11824,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11825,19007,11826,12578, 11827,19007,19007,11828,19007,19007,19007,19007,11829,19007, 19007,11830,19007,11831,19007,11832,19007,11833,11834,11835, 11822,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11823,19007,19007,19007,19007,19007,19007,11824, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11825,19007,11826,19007,11827,19007,12579, 11828,19007,19007,19007,19007,11829,19007,19007,11830,19007, 11831,19007,11832,19007,11833,11834,11835,11822,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11823, 19007,19007,19007,19007,19007,19007,11824,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11825,19007,11826,19007,11827,19007,19007,11828,19007,19007, 19007,19007,11829,19007,19007,11830,19007,11831,19007,11832, 19007,11833,11834,12580,11822,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11823,19007,19007,19007, 19007,19007,19007,11824,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11825,19007,11826, 19007,11827,19007,19007,11828,19007,19007,19007,19007,11829, 19007,12581,11830,19007,11831,19007,11832,19007,11833,11834, 11835,11822,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11823,19007,19007,19007,19007,19007,19007, 11824,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12582,19007,11826,19007,11827,19007, 19007,11828,19007,19007,19007,19007,11829,19007,19007,11830, 19007,11831,19007,11832,19007,11833,11834,11835,12583,11822, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11823,19007,19007,19007,19007,19007,19007,11824,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11825,19007,11826,19007,11827,19007,19007,12584, 19007,19007,19007,19007,12585,19007,19007,11830,19007,11831, 19007,11832,19007,11833,11834,11835,11822,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11823,19007, 19007,19007,19007,19007,19007,11824,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11825, 19007,11826,19007,11827,19007,19007,11828,19007,19007,19007, 19007,11829,19007,12586,11830,19007,11831,19007,11832,19007, 11833,11834,11835,11822,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11823,19007,19007,19007,19007, 19007,19007,11824,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11825,19007,11826,19007, 11827,19007,19007,11828,19007,19007,19007,19007,11829,19007, 19007,11830,19007,11831,19007,11832,19007,11833,11834,11835, 12587,12588,19007,11822,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11823,19007,19007,19007,19007, 19007,19007,11824,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11825,19007,11826,19007, 11827,19007,19007,11828,19007,19007,19007,19007,11829,19007, 19007,11830,19007,11831,19007,11832,19007,11833,11834,11835, 11822,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11823,19007,19007,19007,19007,19007,19007,11824, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11825,19007,11826,19007,12589,19007,19007, 11828,19007,19007,19007,19007,11829,19007,19007,12590,19007, 11831,19007,11832,19007,11833,11834,11835,11822,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11823, 19007,19007,19007,19007,19007,19007,11824,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12591,19007,11826,19007,11827,19007,19007,11828,19007,19007, 19007,19007,11829,19007,19007,11830,19007,11831,19007,11832, 19007,11833,11834,11835, 2525,11020,19007,19007,19007,19007, 11021,19007,19007,11022,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11023,19007,19007,19007,19007, 19007,19007,11024,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11025,19007,11026,19007, 11850,19007,19007,11028,19007,19007,19007,19007,11029,19007, 19007,12592,19007,11031,19007,11032,19007,11033,11034,11035, 2525, 3071,19007,19007,19007,19007, 1712,19007,19007,12609, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3073,19007,19007,19007,19007,19007,19007, 3074,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3075,19007, 3076,19007, 3078,19007,19007, 3079, 19007,19007,19007,19007, 3081,19007,19007, 3082,19007, 3083, 19007, 3084,19007, 3085, 3086, 3087, 2525, 3071,19007,19007, 19007,19007, 1712,19007,19007, 3072,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3073,19007,19007, 19007,19007,19007,19007, 3074,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3075,19007, 3076,19007, 3078,19007,19007, 3079,12610,19007,19007,19007, 3081,19007,19007, 3082,19007, 3083,19007, 3084,19007, 3085, 3086, 3087, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,11869,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119,12623, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,11870,19007,19007,19007,19007,11869,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119,12623, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,12628,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10292, 119, 119, 119, 119, 119, 119,12629, 19007,19007,19007,19007,12628,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12633,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,12634,19007,19007,19007,19007, 12633,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007, 19007,10292, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,12638,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,12639,19007,19007,19007,19007,12638,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12643, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10292, 119, 119, 119, 119, 119, 119,12644,19007,19007, 19007,19007,12643,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10292, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,12647,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,12648,19007,19007,19007,19007,12647,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,12649, 119, 8417, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,12649,19007,19007,19007, 19007,12651,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119,12649,12649, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12653,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,12654,19007,19007,19007,19007,12653, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10292, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,12657,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10292, 119, 119, 119, 119, 119, 119, 12658,19007,19007,19007,19007,12657,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,12659, 119, 8417,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,12659,19007,19007,19007,19007,12661,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119,12659,12659, 119, 119,19007, 857, 119, 119, 119, 119, 119,19007, 7133, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 903, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 9592,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 661, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11061,19007,19007, 12662,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 277, 277,19007, 8330, 277, 277, 277, 277, 277,19007, 8332, 277,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 906, 277, 277, 277, 277, 277, 277,19007,19007,19007,19007,19007, 9588,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 277, 277, 277, 9589,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12663, 277, 277,19007, 8351, 277, 277, 277, 277, 277, 19007, 8332, 277,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 906, 277, 277, 277, 277, 277, 277,19007, 19007,19007,19007,19007, 8353,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 277, 277, 277, 8354,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12664, 277, 277,19007, 287, 277, 277, 277, 277, 277, 667, 280, 277,11903,11903,11903, 11903,11903,11903,11903,11903,11903, 917, 277, 277, 277, 277, 277, 277, 687, 687, 687, 687, 687, 690, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 277, 277, 277, 669, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12018,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12019,19007,19007,19007,19007, 12018,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,12667,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12668,19007,19007,19007,19007,12667,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,12671,12671, 12671,12671,12671,12671,12671,12671,12671, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12117, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 9697, 119, 119,19007, 857, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,12117,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119,12673,12674,12674,12674,12674,12674,12674,12674, 12674,11135,19007,19007,19007,19007,19007,19007,12674,12674, 12674,12674,12674,12675,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12674,12674,12674,12674,12674,12674, 12677,12678,12678,12678,12678,12678,12678,12678,12678,12679, 19007,19007,19007,19007,19007,19007,12678,12678,12678,12678, 12678,12680,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12678,12678,12678,12678,12678,12678, 7135,19007, 19007,19007,19007,19007,19007,19007,19007,12682,12682,12682, 12682,12682,12682,12682,12682,12682,19007,19007,19007,19007, 19007,19007,19007,12682,12682,12682,12682,12682,12683,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12682, 12682,12682,12682,12682,12684,12687,12688,12688,12688,12688, 12688,12688,12688,12688,11961,19007,19007,19007,19007,19007, 19007,12688,12688,12688,12688,12688,12689,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12688,12688,12688, 12688,12688,12688,12690,12690,12690,12690,12690,12690,12690, 12690,12690,19007,19007,19007,19007,19007,19007,19007,12690, 12690,12690,12690,12690,12691,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12690,12690,12690,12690,12690, 12692,12697,12698,12698,12698,12698,12698,12698,12698,12698, 11973,19007,19007,19007,19007,19007,19007,12698,12698,12698, 12698,12698,12699,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12698,12698,12698,12698,12698,12698,12700, 12700,12700,12700,12700,12700,12700,12700,12700,19007,19007, 19007,19007,19007,19007,19007,12700,12700,12700,12700,12700, 12701,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12700,12700,12700,12700,12700,12702,12708,12709,12709, 12709,12709,12709,12709,12709,12709,11987,19007,19007,19007, 19007,19007,19007,12709,12709,12709,12709,12709,12710,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12709, 12709,12709,12709,12709,12709,12711,12711,12711,12711,12711, 12711,12711,12711,12711,19007,19007,19007,19007,19007,19007, 19007,12711,12711,12711,12711,12711,12712,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12711,12711,12711, 12711,12711,12713,12011,19007,10372,10372,10372,10372,10372, 10372,10372,10372,10372,10375,19007,19007,19007,19007,19007, 19007,10372,10372,10372,10372,10372,10374,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10372,10372,10372, 10372,10372,10372,12722,12723,12723,12723,12723,12723,12723, 12723,12723,11173,19007,19007,19007,19007,19007,19007,12723, 12723,12723,12723,12723,12724,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12723,12723,12723,12723,12723, 12723,12726,12727,12727,12727,12727,12727,12727,12727,12727, 12728,19007,19007,19007,19007,19007,19007,12727,12727,12727, 12727,12727,12729,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12727,12727,12727,12727,12727,12727,12736, 12737,12738,12739,12739,12739,12739,12739,12739,19007,19007, 19007,19007,19007,19007,19007,10385,10385,10385,10385,10385, 10389,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,10385,10385,10385,10385,10385,10385,12744,12744,12744, 12744,12744,12744,12744,12744,12744, 9678,19007,19007,19007, 19007,19007,19007,10382,10382,10382,10382,10382,10383,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10382, 10382,10382,10382,10382,10382, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9687,19007, 19007,19007,19007,19007,19007,19007,12745,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007, 7135, 119, 119, 119, 119, 119,19007, 7133, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007, 7150,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 7142, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,12747,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12748,19007,19007,19007,19007,12747,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119,10400, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,12752,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119,10400,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,12753, 19007,19007,19007,19007,12752,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12756,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12757,19007,19007,19007,19007, 12756,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,12760,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12761,19007,19007,19007,19007,12760,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12763, 19007,12764,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12765,12766,12766,19007, 19007,19007,19007,19007,19007,19007,19007,12767, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119,10400, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,12770,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119,10400,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,12771, 19007,19007,19007,19007,12770,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12775,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12776,19007,19007,19007,19007, 12775,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,12780,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12781,19007,19007,19007,19007,12780,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12784, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 10400,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12785,19007,19007, 19007,19007,12784,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,12786, 119,10400,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 12786,19007,19007,19007,19007,12788,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119,12786,12786, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 12790,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,12791,19007, 19007,19007,19007,12790,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12795,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12796,19007,19007,19007,19007,12795, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 10400,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,12799,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 12800,19007,19007,19007,19007,12799,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,12801, 119,10400,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12801,19007,19007,19007,19007,12803,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119,12801,12801, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,12807,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,12809,19007,19007,19007,19007,12807,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12812, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 12806,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,12813,19007,19007, 19007,19007,12812,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,12815,19007,12816,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12817,12818,12818,19007,19007,19007,19007,19007, 19007,19007,19007,12819, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,11218,19007,19007, 19007,19007,19007,12820,19007,19007,19007,19007,19007,11219, 19007,19007,19007,19007, 119, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11219, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,12821, 8421, 8423,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007, 12823,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 12821, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421, 19007, 8421, 8423,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007, 19007,19007,19007,19007,12825,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,12826,19007,19007,19007,19007,12825,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8426, 8421, 8421, 119, 119,19007, 10415, 119, 119, 119, 119, 119,19007, 119,12806,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 12830,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,12831,19007, 19007,19007,19007,12830,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12834,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,12835,19007,19007,19007,19007,12834, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119, 12806,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,12837,19007,12838,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12817, 12818,12818,19007,19007,19007,19007,19007,19007,19007,19007, 12839, 119, 119,19007,10415, 119, 119, 119, 119, 119, 19007, 119,10400,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,12841,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12842,19007,19007,19007,19007,12841,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 10415, 119, 119, 119, 119, 119,19007, 119,10400,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 12846,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,12847,19007, 19007,19007,19007,12846,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12851,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12852,19007,19007,19007,19007,12851, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119, 10400,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,12856,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 12857,19007,19007,19007,19007,12856,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12860,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007,10415, 119, 119, 119, 119, 119,19007, 119,10400, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12861,19007,19007,19007, 19007,12860,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119, 12862, 119,10400,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,12862, 19007,19007,19007,19007,12864,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119,12862,12862, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12866, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119, 10400,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12867,19007,19007, 19007,19007,12866,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,12870,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12871,19007,19007,19007,19007,12870,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007,10415, 119, 119, 119, 119, 119,12872, 119,10400, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12872,19007,19007,19007, 19007,12874,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119,12872,12872, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9700,19007,19007,12876, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,12821, 8421, 8423,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007,12823, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8426, 8421, 8421,12821, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007, 9700,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119,12877,12878,12878,12878,12878,12878,12878, 12878,12878,12134,19007,19007,19007,19007,19007,19007,12878, 12878,12878,12878,12878,12879,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12878,12878,12878,12878,12878, 12878,12880,12880,12880,12880,12880,12880,12880,12880,12880, 12881,19007,19007,19007,19007,19007,19007,12880,12880,12880, 12880,12880,12882,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12880,12880,12880,12880,12880,12883, 6527, 19007,19007,19007,19007,19007,19007,19007,19007,12886,12886, 12886,12886,12886,12886,12886,12886,12886,12887,19007,19007, 19007,19007,19007,19007,12886,12886,12886,12886,12886,12888, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12886,12886,12886,12886,12886,12886,12892,12893,12893,12893, 12893,12893,12893,12893,12893,11325,19007,19007,19007,19007, 19007,19007,12893,12893,12893,12893,12893,12894,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12893,12893, 12893,12893,12893,12893,12896,12896,12896,12896,12896,12896, 12896,12896,12896,12897,19007,19007,19007,19007,19007,19007, 12896,12896,12896,12896,12896,12898,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12896,12896,12896,12896, 12896,12896,12904,12905,12905,12905,12905,12905,12905,12905, 12905,11337,19007,19007,19007,19007,19007,19007,12905,12905, 12905,12905,12905,12906,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12905,12905,12905,12905,12905,12905, 12908,12908,12908,12908,12908,12908,12908,12908,12908,12909, 19007,19007,19007,19007,19007,19007,12908,12908,12908,12908, 12908,12910,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12908,12908,12908,12908,12908,12908,12916,12917, 12918,12919,12919,12919,12919,12919,12919,19007,19007,19007, 19007,19007,19007,19007,10512,10512,10512,10512,10512,10516, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10512,10512,10512,10512,10512,10512,12920,12921,12921,12921, 12921,12921,12921,12921,12921,11351,19007,19007,19007,19007, 19007,19007,12921,12921,12921,12921,12921,12922,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12921,12921, 12921,12921,12921,12921,12924,12924,12924,12924,12924,12924, 12924,12924,12924,12925,19007,19007,19007,19007,19007,19007, 12924,12924,12924,12924,12924,12926,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12924,12924,12924,12924, 12924,12924,12932,12933,12934,12935,12935,12935,12935,12935, 12935,19007,19007,19007,19007,19007,19007,19007,10523,10523, 10523,10523,10523,10527,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10523,10523,10523,10523,10523,10523, 11375,19007,12936,12936,12936,12936,12936,12936,12936,12936, 12936, 9786,19007,19007,19007,19007,19007,19007,10520,10520, 10520,10520,10520,10521,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10520,10520,10520,10520,10520,10520, 12937,12938,12938,12938,12938,12938,12938,12938,12938,12183, 19007,19007,19007,19007,19007,19007,12938,12938,12938,12938, 12938,12939,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12938,12938,12938,12938,12938,12938,12940,12940, 12940,12940,12940,12940,12940,12940,12940,19007,19007,19007, 19007,19007,19007,19007,12940,12940,12940,12940,12940,12941, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12940,12940,12940,12940,12940,12942,10536,10536,10536,10536, 10536,10536,10536,10536,10536,10539,19007,19007,19007,19007, 19007,19007,10536,10536,10536,10536,10536,10538,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10536,10536, 10536,10536,10536,10536,10532,10532,10532,10532,10532,10532, 10532,10532,10532, 9118,19007,19007,19007,19007,19007,19007, 10532,10532,10532,10532,10532,10533,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10532,10532,10532,10532, 10532,10532, 8421, 8421,19007,10423, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12953, 8421, 8421, 8421, 8421, 8421, 8421, 19007,19007,19007,19007,19007,10421,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8426, 8421, 8421, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12955,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,12956,19007,19007,19007, 19007,12955,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 9811,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,12960,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,12961,19007,19007,19007,19007,12960,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 12965,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,12966,19007, 19007,19007,19007,12965,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12970,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,12971,19007,19007,19007,19007,12970, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,12974,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 12975,19007,19007,19007,19007,12974,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12977,12978, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 7812,19007,19007, 19007,19007,19007,19007,19007,12978, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12980, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 8481, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,12980,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,12982,12983,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 7812,19007,19007,19007,19007,19007, 19007,19007,12983, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12985,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,12986,19007,19007,19007,19007,12985, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,12990,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 12991,19007,19007,19007,19007,12990,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12995,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,12996,19007,19007,19007, 19007,12995,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 9811,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,13000,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,13001,19007,19007,19007,19007,13000,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 13004,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,13005,19007,19007,19007,19007,19007, 119, 119, 7812, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,13005, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,13007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 13008,19007,19007,19007,19007,13007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13010,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,13011,19007,19007,19007, 19007,13010,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 9811,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,13015,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,13016,19007,19007,19007,19007,13015,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 13020,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,13021,19007, 19007,19007,19007,13020,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13024,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,13025,19007,19007, 19007,19007,19007, 119, 119, 7812,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,13025, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13027,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,13028,19007,19007,19007, 19007,13027,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,19007, 19007,19007,19007,19007,12287,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3368, 1004, 1004, 1004, 1004, 1004, 1004,12288,19007,19007,19007,19007,12287,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3370, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 13060,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 19007,12291, 1004,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007, 19007,19007,19007,19007,11467,19007,19007,19007,19007,19007, 13061,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 1004, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007,12291, 1004,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007,11467,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 1004, 1004, 1004,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 13062, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 2824, 19007,19007,19007,19007, 2820,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 1004, 1004, 1004, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,13066,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 13067, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945, 8589,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,13068, 19007,19007,19007,19007,13066,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8592, 5945, 5945,19007,19007,19007,13067, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007, 19007,13077,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,13078, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,13079,19007,19007,19007,19007,13077,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007, 19007,13078, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 19007,19007,19007,19007,19007,13084,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8592, 5945, 5945,19007,19007,19007,13085, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,13086,19007,19007, 19007,19007,13084,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,13085, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,13090, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007, 19007,19007,13091, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,13092,19007,19007,19007,19007,13090,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,13091, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007, 19007,19007,19007,13094,19007,13095,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 13096,13097,13097,19007,19007,19007,13098,19007,19007,19007, 19007,13099, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 19007,19007,19007,19007,19007,13106,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8592, 5945, 5945,19007,19007,19007,13107, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 10685,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,13108,19007,19007, 19007,19007,13106,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,13107, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,13115, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007, 19007,19007,13116, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,13117,19007,19007,19007,19007,13115,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,13116, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007, 19007,19007,19007,13123,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,13124, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,13125,19007,19007,19007,19007, 13123,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945, 19007,19007,19007,13124, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,13129,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 13130, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945,10685,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,13131, 19007,19007,19007,19007,13129,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8592, 5945, 5945,19007,19007,19007,13130, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,13132, 5945,10685, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,13132,19007,19007,19007, 19007,13134,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,13132,13132,19007,13135, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,13139,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007, 19007,13140, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945, 13141,19007,19007,19007,19007,13139,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5945, 5945, 5945,19007,19007,19007,13140, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 10685,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007, 19007,19007,13148,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,13149, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,13150,19007,19007,19007,19007,13148, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007, 19007,19007,13149, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,13154,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,13155, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,13156,19007, 19007,19007,19007,13154,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,13155, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,13157, 5945,10685,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,13157,19007,19007,19007,19007, 13159,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945, 13157,13157,19007,13160, 8589, 9966, 9966, 9966, 9966, 9966, 9966, 9966, 9966, 9966, 8590,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 6644,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8592,19007, 9967,19007,19007,19007, 6645, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5947, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007, 19007,19007,19007, 5948,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007, 5949,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,13171,11610,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11611,19007,19007,13172, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 13177,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,13178,19007, 19007,19007,19007,13177,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841,13181, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007,12405,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2852, 2841, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841,13181, 2841, 2841,19007, 2841, 2841,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,13182,19007,19007,19007,19007, 12405,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2852, 2841, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,19007, 19007,19007,19007,19007,13183,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 2853,19007,19007,19007, 19007, 2852, 2841, 2841,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2853, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13194,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119, 119, 119,19007, 119, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,13195,19007,19007,19007, 19007,13194,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119,11654,19007,11654,19007,19007,12432,12432,12432, 12432,12432,12432,12432,12432,12432,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 1023,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11656,19007,19007,11657, 778, 778, 19007, 778, 778, 778, 778, 778, 778,19007, 778, 778, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007, 19007,13209,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778,19007, 778, 778, 778, 778, 778, 778, 19007, 778, 778,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 778, 778, 778, 778, 778, 778, 778,13210, 19007,19007,19007,19007,13209,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 778, 778, 778, 778, 778,19007, 2372, 778, 778, 778, 778, 778,19007,11665, 778,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007,10863,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 778, 778, 778,13212,13212,13212, 13212,13212,13212,13212,13212,13212,19007,19007,19007,19007, 19007,19007,19007,13212,13212,13212,13212,13212,13213,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3504,19007,19007,19007,13212, 13212,13212,13212,13212,13212,13215,13215,13215,13215,13215, 13215,13215,13215,13215,19007,19007,19007,19007,19007,19007, 19007,13215,13215,13215,13215,13215,13216,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,13215,13215,13215, 13215,13215,13215, 7543,19007,10871,10871,10871,10871,10871, 10871,10871,10871,10871,10872,19007,19007,19007,19007,19007, 19007,10871,10871,10871,10871,10871,10873,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10871,10871,10871, 10871,10871,10871,13221,13221,13221,13221,13221,13221,13221, 13221,13221,19007,19007,19007,19007,19007,19007,19007,13221, 13221,13221,13221,13221,13222,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,13221,13221,13221,13221,13221, 13221, 7543,19007,13224,13224,13224,13224,13224,13224,13224, 13224,13224,10128,19007,19007,19007,19007,19007,19007,10884, 10884,10884,10884,10884,10885,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10884,10884,10884,10884,10884, 10884,13225,13225,13225,13225,13225,13225,13225,13225,13225, 19007,19007,19007,19007,19007,19007,19007,13225,13225,13225, 13225,13225,13226,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,13225,13225,13225,13225,13225,13225,13228, 13228,13228,13228,13228,13228,13228,13228,13228,10137,19007, 19007,19007,19007,19007,19007,10890,10890,10890,10890,10890, 10891,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,10890,10890,10890,10890,10890,10890,13229,13229,13229, 13229,13229,13229,13229,13229,13229,19007,19007,19007,19007, 19007,19007,19007,13229,13229,13229,13229,13229,13230,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,13229, 13229,13229,13229,13229,13229,13232,13232,13232,13232,13232, 13232,13232,13232,13232,10150,19007,19007,19007,19007,19007, 19007,10899,10899,10899,10899,10899,10900,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10899,10899,10899, 10899,10899,10899,13233,13233,13233,13233,13233,13233,13233, 13233,13233,19007,19007,19007,19007,19007,19007,19007,13233, 13233,13233,13233,13233,13234,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,13233,13233,13233,13233,13233, 13233,13236,13236,13236,13236,13236,13236,13236,13236,13236, 10164,19007,19007,19007,19007,19007,19007,10908,10908,10908, 10908,10908,10909,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10908,10908,10908,10908,10908,10908,13237, 13237,13237,13237,13237,13237,13237,13237,13237,19007,19007, 19007,19007,19007,19007,19007,13237,13237,13237,13237,13237, 13238,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,13237,13237,13237,13237,13237,13237,10920,10920,10920, 10920,10920,10920,10920,10920,10920,10921,19007,19007,19007, 19007,19007,19007,10920,10920,10920,10920,10920,10922,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10920, 10920,10920,10920,10920,10920,10917,10917,10917,10917,10917, 10917,10917,10917,10917, 9475,19007,19007,19007,19007,19007, 19007,10917,10917,10917,10917,10917,10918,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10917,10917,10917, 10917,10917,10917,13284,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 1381,19007,19007,19007,19007,19007,19007, 1382, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 1383,19007, 1384,19007, 1385,19007,19007, 1386,19007,19007,19007,19007, 1387,19007,19007, 1388,19007, 1389,19007, 1390,19007, 1391, 1392, 1393, 2525,10238,19007, 19007,19007,19007,10239,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10240,19007, 19007,19007,19007,19007,19007,10241,19007,19007,13286,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10242, 19007,10243,19007,10244,19007,19007,10245,19007,19007,19007, 19007,10246,19007,19007,10247,19007,10248,19007,10249,19007, 10250,10251,10252,10987,19007,19007,19007,19007,19007,13287, 10988,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10989,19007,10990,19007,10991,19007, 19007,10992,19007,19007,19007,19007,10993,19007,19007,10994, 19007,10995,19007,10996,19007,10997,10998,10999,10987,19007, 19007,19007,19007,19007,19007,10988,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10989, 19007,10990,13288,10991,19007,19007,10992,19007,19007,19007, 19007,10993,19007,19007,10994,19007,10995,19007,10996,19007, 10997,10998,10999,10987,19007,19007,19007,19007,19007,19007, 10988,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10989,19007,10990,13289,10991,19007, 19007,10992,19007,19007,19007,19007,10993,19007,19007,10994, 19007,10995,19007,10996,19007,10997,10998,10999,10987,19007, 19007,19007,19007,19007,19007,10988,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11791, 19007,10990,19007,10991,19007,19007,10992,13290,19007,19007, 19007,10993,19007,19007,10994,19007,10995,19007,10996,19007, 10997,10998,10999,11792,13291,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10987,19007, 19007,19007,19007,19007,19007,10988,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10989, 19007,10990,19007,10991,19007,19007,10992,19007,19007,19007, 19007,10993,19007,19007,10994,19007,10995,19007,10996,19007, 10997,10998,10999,10987,19007,19007,19007,19007,19007,19007, 10988,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10989,19007,10990,19007,10991,19007, 19007,10992,19007,19007,19007,19007,10993,19007,19007,10994, 19007,10995,19007,10996,19007,10997,10998,10999,11796,10987, 19007,19007,19007,19007,19007,19007,10988,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10989,19007,10990,13292,10991,19007,19007,10992,19007,19007, 19007,19007,10993,19007,11795,10994,19007,10995,19007,10996, 19007,10997,10998,10999,10987,19007,19007,19007,19007,19007, 19007,10988,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10989,19007,10990,19007,10991, 19007,19007,10992,19007,19007,19007,13293,10993,19007,19007, 10994,19007,10995,19007,10996,19007,10997,10998,10999,10987, 19007,19007,19007,19007,19007,19007,10988,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10989,19007,10990,19007,10991,19007,19007,10992,19007,19007, 19007,19007,10993,19007,19007,10994,13294,10995,19007,10996, 19007,10997,10998,10999,10987,19007,19007,19007,19007,19007, 19007,10988,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10989,19007,10990,19007,10991, 19007,19007,11793,19007,19007,19007,19007,11794,19007,19007, 10994,19007,10995,19007,10996,19007,10997,10998,10999, 2525, 10238,19007,19007,19007,19007,10239,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10240,19007,19007,19007,19007,19007,19007,10241,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,10242,19007,10243,11002,10244,19007,19007,10245,11808, 19007,19007,19007,10246,19007,19007,10247,19007,10248,19007, 10249,19007,10250,10251,10252,10987,19007,19007,19007,19007, 19007,19007,10988,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10989,19007,10990,19007, 10991,19007,19007,10992,19007,19007,19007,19007,10993,13295, 19007,10994,19007,10995,19007,10996,19007,10997,10998,10999, 10987,19007,19007,19007,19007,19007,19007,10988,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,10989,19007,10990,19007,10991,19007,19007,11793,19007, 19007,19007,19007,11794,19007,13296,10994,19007,10995,19007, 10996,19007,10997,10998,10999,10987,19007,19007,19007,19007, 19007,19007,10988,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10989,19007,10990,19007, 10991,19007,19007,10992,19007,19007,19007,19007,13297,19007, 19007,10994,19007,10995,19007,10996,19007,10997,10998,10999, 10987,19007,19007,19007,19007,19007,19007,10988,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,13298,19007,13299,19007,10991,19007,19007,10992,19007, 19007,19007,13300,10993,19007,19007,10994,19007,10995,13301, 10996,19007,10997,10998,10999,10987,19007,19007,19007,19007, 19007,19007,10988,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11791,19007,10990,19007, 10991,19007,19007,10992,19007,19007,19007,19007,10993,19007, 19007,13302,19007,10995,19007,10996,19007,10997,10998,10999, 11792, 2525, 2526,19007,19007,19007,19007, 1380,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2527,19007,19007,19007,19007,19007,19007, 2528, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2529,19007, 2530,19007, 2532,19007,19007, 2533,19007,19007,19007,19007, 2535,13318,19007, 2536,19007, 2537,19007, 2538,19007, 2539, 2540, 3040, 1713,19007,19007, 13319,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1714, 19007,19007,19007,19007,19007,19007, 1715,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1716,19007, 1717,19007, 1718,19007,19007, 1719,19007,19007, 19007,19007, 1720,19007,19007, 1721,19007, 1722,19007, 1723, 19007, 1724, 1725, 1726,11818,19007,19007,19007,19007,19007, 19007, 1713,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 1714,19007,19007,19007,19007,19007,19007, 1715,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 1716,19007, 1717,19007, 1718,19007, 19007, 1719,19007,19007,19007,19007, 1720,19007,19007, 1721, 19007, 1722,19007, 1723,19007, 1724, 1725, 1726,13320,19007, 19007,19007,19007,19007,19007,19007, 1713,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 1714,19007, 19007,19007,19007,19007,19007, 1715,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1716, 19007, 1717,19007, 1718,19007,19007, 1719,19007,19007,19007, 19007, 1720,19007,19007, 1721,19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 2099, 2525,11020,19007,19007,19007,19007, 11021,19007,19007,11022,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11023,19007,19007,19007,19007, 19007,19007,11024,19007,19007,19007,19007,19007,13321,19007, 19007,19007,19007,19007,19007,19007,11025,19007,11026,19007, 11027,19007,19007,11028,19007,19007,19007,19007,11029,19007, 19007,11030,19007,11031,19007,11032,19007,11033,11034,11035, 11822,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11823,19007,19007,19007,19007,19007,19007,11824, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11825,19007,11826,19007,12589,19007,19007, 11828,19007,19007,19007,19007,11829,19007,19007,13322,19007, 11831,19007,11832,19007,11833,11834,11835,11822,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11823, 19007,19007,13323,19007,19007,19007,11824,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11825,19007,11826,19007,11827,19007,19007,11828,19007,19007, 19007,19007,11829,19007,19007,11830,19007,11831,19007,11832, 19007,11833,11834,11835,11822,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,13324,19007,19007,19007,19007,11823,19007,19007,19007, 19007,19007,19007,11824,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,13325,19007,11826, 19007,11827,19007,19007,11828,19007,19007,19007,19007,11829, 19007,19007,11830,19007,11831,19007,11832,19007,11833,11834, 11835,11822,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11823,19007,19007,19007,19007,19007,19007, 11824,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11825,19007,11826,19007,11827,19007, 19007,11828,19007,19007,19007,19007,13326,19007,19007,11830, 19007,11831,19007,11832,19007,11833,11834,11835,11822,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11823,19007,19007,19007,19007,19007,19007,11824,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11825,19007,11826,19007,11827,19007,19007,11828,13327, 19007,19007,19007,11829,19007,19007,11830,19007,11831,19007, 11832,19007,11833,11834,11835,11822,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11823,19007,19007, 19007,19007,19007,19007,11824,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12591,19007, 11826,19007,11827,19007,19007,11828,19007,19007,19007,19007, 11829,19007,19007,11830,19007,11831,19007,13328,19007,11833, 11834,11835,11822,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11823,19007,19007,19007,19007,19007, 19007,11824,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11825,19007,11826,19007,11827, 19007,19007,11828,19007,19007,19007,19007,11829,19007,19007, 11830,19007,13329,19007,11832,19007,11833,11834,11835,11822, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11823,19007,19007,19007,19007,19007,19007,11824,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11825,19007,11826,12578,11827,19007,19007,11828, 13330,19007,19007,19007,11829,19007,19007,11830,19007,11831, 19007,11832,19007,11833,11834,11835, 2525,11020,19007,19007, 19007,19007,11021,13339,19007,11022,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11023,19007,19007, 19007,19007,19007,19007,11024,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11025,19007, 11026,19007,11027,19007,19007,11845,19007,19007,19007,19007, 11846,19007,19007,11030,19007,11031,19007,11032,19007,11033, 11034,11035, 2525, 3071,19007,19007,19007,19007, 1712,19007, 19007, 3072,13356,13356,13356,13356,13356,13356,13356,13356, 13356,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3073,19007,19007,19007,19007,19007,19007, 3074,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3075,19007, 3076,19007, 3078,19007, 19007, 3079,19007,19007,19007,19007, 3081,19007,19007, 3082, 19007, 3083,19007, 3084,19007, 3085, 3649, 3087, 2525, 3071, 19007,19007,19007,19007, 1712,19007,19007, 3072,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3073, 19007,19007,19007,19007,19007,19007, 3074,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3075,19007, 3076,19007,13357,19007,19007, 3079,19007,19007, 19007,19007, 3081,19007,19007, 3082,19007, 3083,19007, 3084, 19007, 3085, 3086, 3087,11858,19007,11858,19007,19007,12616, 12616,12616,12616,12616,12616,12616,12616,12616,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 120,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11860,19007,19007,11861, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,11869,19007,19007,19007,19007,19007,13367, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119,12623, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13371,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,13372,19007,19007,19007,19007,13371, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10292, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,13376,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10292, 119, 119, 119, 119, 119, 119, 13377,19007,19007,19007,19007,13376,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13381,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,13382,19007,19007,19007, 19007,13381,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10292, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,13386,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,13387,19007,19007,19007,19007,13386,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 13391,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007, 19007,10292, 119, 119, 119, 119, 119, 119,13392,19007, 19007,19007,19007,13391,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13395,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,13396,19007,19007, 19007,19007,19007, 8419, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,13396, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13398,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,13399,19007,19007,19007, 19007,13398,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10292, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,13401,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,13402,19007,19007,19007,19007,13401,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 13406,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007, 19007,10292, 119, 119, 119, 119, 119, 119,13407,19007, 19007,19007,19007,13406,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13410,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,13411,19007,19007, 19007,19007,19007, 8419, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,13411, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13413,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,13414,19007,19007,19007, 19007,13413,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10292, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,11874,19007,19007,19007,19007,19007, 19007,19007,13415,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 277, 277,19007, 8330, 277, 277, 277, 277, 277,19007, 8332, 277,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 906, 277, 277, 277, 277, 277, 277,19007,19007,19007,19007,19007, 9588,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 277, 277, 277, 9589, 277, 277, 19007, 8351, 277, 277, 277, 277, 277,19007, 8332, 277, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 906, 277, 277, 277, 277, 277, 277,19007,19007,19007,19007, 19007, 8353,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 277, 277, 277, 8354, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,12747,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,12748,19007,19007,19007,19007,12747,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 8417, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 7157,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 120,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419,19007, 9697, 13417,13418,13418,13418,13418,13418,13418,13418,13418,12679, 19007,19007,19007,19007,19007,19007,13418,13418,13418,13418, 13418,13419,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,13418,13418,13418,13418,13418,13418,13420,13420, 13420,13420,13420,13420,13420,13420,13420,13421,19007,19007, 19007,19007,19007,19007,13420,13420,13420,13420,13420,13422, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 13420,13420,13420,13420,13420,13423, 7135,19007,19007,19007, 19007,19007,19007,19007,19007,13426,13426,13426,13426,13426, 13426,13426,13426,13426,13427,19007,19007,19007,19007,19007, 19007,13426,13426,13426,13426,13426,13428,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,13426,13426,13426, 13426,13426,13426,13432,13433,13433,13433,13433,13433,13433, 13433,13433,11961,19007,19007,19007,19007,19007,19007,13433, 13433,13433,13433,13433,13434,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,13433,13433,13433,13433,13433, 13433,13436,13436,13436,13436,13436,13436,13436,13436,13436, 13437,19007,19007,19007,19007,19007,19007,13436,13436,13436, 13436,13436,13438,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,13436,13436,13436,13436,13436,13436,13444, 13445,13445,13445,13445,13445,13445,13445,13445,11973,19007, 19007,19007,19007,19007,19007,13445,13445,13445,13445,13445, 13446,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,13445,13445,13445,13445,13445,13445,13448,13448,13448, 13448,13448,13448,13448,13448,13448,13449,19007,19007,19007, 19007,19007,19007,13448,13448,13448,13448,13448,13450,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,13448, 13448,13448,13448,13448,13448,13456,13457,13458,13459,13459, 13459,13459,13459,13459,19007,19007,19007,19007,19007,19007, 19007,11148,11148,11148,11148,11148,11152,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11148,11148,11148, 11148,11148,11148,13460,13461,13461,13461,13461,13461,13461, 13461,13461,11987,19007,19007,19007,19007,19007,19007,13461, 13461,13461,13461,13461,13462,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,13461,13461,13461,13461,13461, 13461,13464,13464,13464,13464,13464,13464,13464,13464,13464, 13465,19007,19007,19007,19007,19007,19007,13464,13464,13464, 13464,13464,13466,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,13464,13464,13464,13464,13464,13464,13472, 13473,13474,13475,13475,13475,13475,13475,13475,19007,19007, 19007,19007,19007,19007,19007,11159,11159,11159,11159,11159, 11163,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11159,11159,11159,11159,11159,11159,12011,19007,13476, 13476,13476,13476,13476,13476,13476,13476,13476,10375,19007, 19007,19007,19007,19007,19007,11156,11156,11156,11156,11156, 11157,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11156,11156,11156,11156,11156,11156,13477,13478,13478, 13478,13478,13478,13478,13478,13478,12728,19007,19007,19007, 19007,19007,19007,13478,13478,13478,13478,13478,13479,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,13478, 13478,13478,13478,13478,13478,13480,13480,13480,13480,13480, 13480,13480,13480,13480,19007,19007,19007,19007,19007,19007, 19007,13480,13480,13480,13480,13480,13481,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,13480,13480,13480, 13480,13480,13482,11172,11172,11172,11172,11172,11172,11172, 11172,11172,11175,19007,19007,19007,19007,19007,19007,11172, 11172,11172,11172,11172,11174,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11172,11172,11172,11172,11172, 11172,11168,11168,11168,11168,11168,11168,11168,11168,11168, 9678,19007,19007,19007,19007,19007,19007,11168,11168,11168, 11168,11168,11169,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11168,11168,11168,11168,11168,11168, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007,19007, 13493, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,10396,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,13495,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,13496,19007,19007,19007,19007,13495,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119,10400, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,13500,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119,10400,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,13501, 19007,19007,19007,19007,13500,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13505,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,13506,19007,19007,19007,19007, 13505,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,13510,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,13511,19007,19007,19007,19007,13510,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13514, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,13515,19007,19007, 19007,19007,13514,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,13517,13518,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119,19007,19007,19007,19007,19007, 19007,19007,13518, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,13520,13520,13520,13520, 13520,13520,13520,13520, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13521,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13521, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,13523,13524,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119,19007,19007,19007,19007,19007,19007,19007,13524, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,13526,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,13527,19007,19007,19007,19007,13526,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13531, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 10400,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,13532,19007,19007, 19007,19007,13531,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,13536,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,13537,19007,19007,19007,19007,13536,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119,10400, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,13541,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119,10400,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,13542, 19007,19007,19007,19007,13541,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13545,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,13546,19007, 19007,19007,19007,19007, 8419, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,13546, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13548, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 10400,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,13549,19007,19007, 19007,19007,13548,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,13551,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,13552,19007,19007,19007,19007,13551,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119,10400, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,13557,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119,10400,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,13558, 19007,19007,19007,19007,13557,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13562,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,13563,19007,19007,19007,19007, 13562,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,13566,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,13567,19007,19007,19007,19007,19007, 8419, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,13567, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,13569,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,13570,19007,19007,19007,19007,13569,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119,12806, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,13573,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,13575,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,13576,19007,19007,19007, 19007, 119, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,13576, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,13577,19007,19007,19007,19007,13573,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 13582,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,13583,19007, 19007,19007,19007,13582,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13586,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,13587,19007,19007,19007,19007,13586, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 12806,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,13589,13590,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119,19007,19007,19007,19007,19007,19007,19007,13590, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,13592,13592,13592,13592,13592,13592,13592, 13592, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,13593,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13593,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13595, 13596,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119,19007, 19007,19007,19007,19007,19007,19007,13596, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 12060,19007,19007,19007,19007,19007,19007,19007,19007,13597, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,13598, 8421, 8423,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007, 19007,19007,19007,13600,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421,13598, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007,13602,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,13603,19007,19007,19007,19007, 13602,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,13607,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,13608,19007,19007,19007,19007,13607,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13612, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119, 12806,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,13613,19007,19007, 19007,19007,13612,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,13616,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,13617,19007,19007,19007,19007,13616,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12808, 119, 119, 119, 119, 19007,10415, 119, 119, 119, 119, 119,19007, 119,12806, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,13619,13620,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119,19007,19007,19007,19007,19007,19007,19007,13620, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119, 12806,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,13622,13623,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119,19007,19007,19007,19007,19007,19007,19007,13623, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,13625,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,13626,19007,19007,19007,19007,13625,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13630, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119, 10400,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,13631,19007,19007, 19007,19007,13630,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,13635,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,13636,19007,19007,19007,19007,13635,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007,10415, 119, 119, 119, 119, 119,19007, 119,10400, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,13640,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119, 19007, 119,10400,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,13641, 19007,19007,19007,19007,13640,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13645,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 10415, 119, 119, 119, 119, 119,19007, 119,10400,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,13646,19007,19007,19007,19007, 13645,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,13649,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,13650,19007,19007,19007,19007,19007, 8419, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,13650, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,13652,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,13653,19007,19007,19007,19007,13652,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007,10415, 119, 119, 119, 119, 119,19007, 119,10400, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,13655,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119, 19007, 119,10400,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,13656, 19007,19007,19007,19007,13655,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13660,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 10415, 119, 119, 119, 119, 119,19007, 119,10400,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,13661,19007,19007,19007,19007, 13660,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,13664,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,13665,19007,19007,19007,19007,19007, 8419, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,13665, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,13667,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,13668,19007,19007,19007,19007,13667,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007,10415, 119, 119, 119, 119, 119,19007, 119,12806, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,13607,19007,19007,13669,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007, 9700,19007,19007,19007,19007,19007, 19007,19007,13670,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119,13671,13672,13672,13672,13672,13672, 13672,13672,13672,12134,19007,19007,19007,19007,19007,19007, 13672,13672,13672,13672,13672,13673,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,13672,13672,13672,13672, 13672,13672,13672,13672,13672,13672,13672,13672,13672,13672, 13672,12136,19007,19007,19007,19007,19007,19007,13672,13672, 13672,13672,13672,13673,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,13672,13672,13672,13672,13672,13672, 13675,13675,13675,13675,13675,13675,13675,13675,13675,13676, 19007,19007,19007,19007,19007,19007,13675,13675,13675,13675, 13675,13677,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,13675,13675,13675,13675,13675,13675, 6527,19007, 19007,19007,19007,19007,19007,19007,19007,13678,13678,13678, 13678,13678,13678,13678,13678,13678,19007,19007,19007,19007, 19007,19007,19007,13678,13678,13678,13678,13678,13679,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,13678, 13678,13678,13678,13678,13678,13683,13683,13683,13683,13683, 13683,13683,13683,13683,12887,19007,19007,19007,19007,19007, 19007,13683,13683,13683,13683,13683,13684,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,13683,13683,13683, 13683,13683,13683,13685,13685,13685,13685,13685,13685,13685, 13685,13685,19007,19007,19007,19007,19007,19007,19007,13685, 13685,13685,13685,13685,13686,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,13685,13685,13685,13685,13685, 13685,13690,13690,13690,13690,13690,13690,13690,13690,13690, 12897,19007,19007,19007,19007,19007,19007,13690,13690,13690, 13690,13690,13691,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,13690,13690,13690,13690,13690,13690,13692, 13692,13692,13692,13692,13692,13692,13692,13692,19007,19007, 19007,19007,19007,19007,19007,13692,13692,13692,13692,13692, 13693,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,13692,13692,13692,13692,13692,13692,13698,13698,13698, 13698,13698,13698,13698,13698,13698,12909,19007,19007,19007, 19007,19007,19007,13698,13698,13698,13698,13698,13699,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,13698, 13698,13698,13698,13698,13698,13700,13700,13700,13700,13700, 13700,13700,13700,13700,19007,19007,19007,19007,19007,19007, 19007,13700,13700,13700,13700,13700,13701,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,13700,13700,13700, 13700,13700,13700,11375,19007,11336,11336,11336,11336,11336, 11336,11336,11336,11336,11339,19007,19007,19007,19007,19007, 19007,11336,11336,11336,11336,11336,11338,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11336,11336,11336, 11336,11336,11336,13709,13709,13709,13709,13709,13709,13709, 13709,13709,12925,19007,19007,19007,19007,19007,19007,13709, 13709,13709,13709,13709,13710,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,13709,13709,13709,13709,13709, 13709,13711,13711,13711,13711,13711,13711,13711,13711,13711, 19007,19007,19007,19007,19007,19007,19007,13711,13711,13711, 13711,13711,13712,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,13711,13711,13711,13711,13711,13711,11350, 11350,11350,11350,11350,11350,11350,11350,11350,11353,19007, 19007,19007,19007,19007,19007,11350,11350,11350,11350,11350, 11352,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11350,11350,11350,11350,11350,11350,11346,11346,11346, 11346,11346,11346,11346,11346,11346, 9786,19007,19007,19007, 19007,19007,19007,11346,11346,11346,11346,11346,11347,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11346, 11346,11346,11346,11346,11346,13720,13721,13721,13721,13721, 13721,13721,13721,13721,12183,19007,19007,19007,19007,19007, 19007,13721,13721,13721,13721,13721,13722,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,13721,13721,13721, 13721,13721,13721,13724,13724,13724,13724,13724,13724,13724, 13724,13724,13725,19007,19007,19007,19007,19007,19007,13724, 13724,13724,13724,13724,13726,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,13724,13724,13724,13724,13724, 13724,13732,13733,13734,13735,13735,13735,13735,13735,13735, 19007,19007,19007,19007,19007,19007,19007,11367,11367,11367, 11367,11367,11371,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11367,11367,11367,11367,11367,11367,13736, 13736,13736,13736,13736,13736,13736,13736,13736,10539,19007, 19007,19007,19007,19007,19007,11364,11364,11364,11364,11364, 11365,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11364,11364,11364,11364,11364,11364, 119, 119,19007, 3676, 119, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9046,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 7810,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,12955,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 7810,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,12956,19007,19007,19007,19007,12955,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 13742,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,13743,19007, 19007,19007,19007,13742,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13747,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,13748,19007,19007,19007,19007,13747, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,13752,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 13753,19007,19007,19007,19007,13752,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13757,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,13758,19007,19007,19007, 19007,13757,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,13761,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,13762,19007,19007,19007,19007,13761,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 13764,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,13765,19007,19007, 119, 119, 7812, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,13765, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,13767,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,13768,19007,19007,19007,19007,13767,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,13770,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,13771, 19007,19007,19007,19007,13770,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13773,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,13774,19007,19007, 119, 119, 7812,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,13774, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,13776,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 13777,19007,19007,19007,19007,13776,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13781,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,13782,19007,19007,19007, 19007,13781,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 1265,19007,19007,19007,12280,19007,12280,19007,19007, 13053,13053,13053,13053,13053,13053,13053,13053,13053,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 1266,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12282,19007,19007, 12283, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007, 19007,19007,19007,19007,13811,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 1004, 1004, 1004, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,13812,19007,19007,19007,19007,13811,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004,19007, 2805, 1004, 1004, 1004, 1004, 1004,19007,12291, 1004,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007,19007,19007, 11467,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004,19007, 3343, 1004, 1004, 1004, 1004, 1004,19007, 12291, 1004,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007, 19007,19007,19007,11467,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,13816,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,13817, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,13818,19007, 19007,19007,19007,13816,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,13817, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 13828,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945, 19007,19007,19007,13829, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,13830,19007,19007,19007,19007,13828,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 13829, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007, 19007,19007,19007,19007,13837,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8592, 5945, 5945,19007,19007,19007,13838, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,13839,19007,19007,19007, 19007,13837,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,13838, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,13845,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007, 19007,13846, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 13847,19007,19007,19007,19007,13845,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8592, 5945, 5945,19007,19007,19007,13846, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007, 19007,19007,13851,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,13852, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,13853,19007,19007,19007,19007,13851, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007, 19007,19007,13852, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,13855,13856,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,13857, 19007,19007,19007,13856, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,13859,13859,13859, 13859,13859,13859,13859,13859, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,13860,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007, 13861, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007, 19007,19007,19007,19007,13860,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5945, 5945, 5945,19007,19007,19007,13861, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007, 19007,13864,13865,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,13866,19007,19007,19007,13865, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 10685,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007, 19007,19007,13872,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,13873, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,13874,19007,19007,19007,19007,13872, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007, 19007,19007,13873, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,13882,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,13883, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,13884,19007, 19007,19007,19007,13882,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,13883, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 13891,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945, 19007,19007,19007,13892, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,13893,19007,19007,19007,19007,13891,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 13892, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945,10685,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007, 19007,19007,19007,19007,13899,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8592, 5945, 5945,19007,19007,19007,13900, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,13901,19007,19007,19007, 19007,13899,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,13900, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,13905,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,13906, 19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007, 19007,13907,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,13906, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 13909,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945, 19007,19007,19007,13910, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,13911,19007,19007,19007,19007,13909,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 13910, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007, 19007,19007,19007,19007,13916,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5945, 5945, 5945,19007,19007,19007,13917, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,13918,19007,19007,19007, 19007,13916,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007,13917, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,13927,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007, 19007,13928, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 13929,19007,19007,19007,19007,13927,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8592, 5945, 5945,19007,19007,19007,13928, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 10685,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007, 19007,19007,13935,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,13936, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,13937,19007,19007,19007,19007,13935, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007, 19007,19007,13936, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,13941,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,13942,19007,19007, 19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,13943, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,13942, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,13945,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007, 19007,13946, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 13947,19007,19007,19007,19007,13945,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8592, 5945, 5945,19007,19007,19007,13946, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007, 19007,19007,13816,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,13954,19007,13817, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,13816, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007, 19007,19007,13817,13955, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5947, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 5948,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007, 5949,19007,13959,11610,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11611,19007,19007,19007,19007,19007, 13960, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,19007, 19007,19007,19007,19007,13177,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3980, 2841, 2841, 2841, 2841, 2841, 2841,13178,19007,19007,19007,19007,13177,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3982, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841,13181, 2841, 2841,19007, 2841, 2841,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007,19007, 12405,19007,19007,13965,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2852, 2841, 2841, 2841, 2841, 2841, 2842, 2841, 2841, 2841, 2841, 2841, 2841, 19007, 2841, 2841,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 3400, 19007,19007,19007,19007, 3395,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 2852, 2841, 2841, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13976,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119, 119, 119,19007, 119, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,13977,19007,19007,19007, 19007,13976,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119,13980,13980,13980,13980,13980,13980,13980,13980, 13980,19007,19007,19007,19007,19007,19007,19007,13980,13980, 13980,13980,13980,13981,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,13980,13980,13980,13980,13980,13980, 12434,19007,12434,19007,19007,13207,13207,13207,13207,13207, 13207,13207,13207,13207,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 1023,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12436,19007,19007,12437, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007,13209, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 778, 778,13993, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778,13210,19007,19007, 19007,19007,13209,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 778, 778,13993, 7543,19007,13996,13996,13996,13996,13996,13996, 13996,13996,13996,10872,19007,19007,19007,19007,19007,19007, 11670,11670,11670,11670,11670,11671,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11670,11670,11670,11670, 11670,11670,11684,11684,11684,11684,11684,11684,11684,11684, 11684,10128,19007,19007,19007,19007,19007,19007,11684,11684, 11684,11684,11684,11685,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3504,19007,19007,19007,11684,11684,11684,11684,11684,11684, 11694,11694,11694,11694,11694,11694,11694,11694,11694,10137, 19007,19007,19007,19007,19007,19007,11694,11694,11694,11694, 11694,11695,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11694,11694,11694,11694,11694,11694,11705,11705, 11705,11705,11705,11705,11705,11705,11705,10150,19007,19007, 19007,19007,19007,19007,11705,11705,11705,11705,11705,11706, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11705,11705,11705,11705,11705,11705,11716,11716,11716,11716, 11716,11716,11716,11716,11716,10164,19007,19007,19007,19007, 19007,19007,11716,11716,11716,11716,11716,11717,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11716,11716, 11716,11716,11716,11716,13997,13997,13997,13997,13997,13997, 13997,13997,13997,19007,19007,19007,19007,19007,19007,19007, 13997,13997,13997,13997,13997,13998,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3504,19007,19007,19007,13997,13997,13997,13997, 13997,13997,14000,14000,14000,14000,14000,14000,14000,14000, 14000,10921,19007,19007,19007,19007,19007,19007,11727,11727, 11727,11727,11727,11728,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11727,11727,11727,11727,11727,11727, 1381,19007,19007,19007,19007,19007,19007, 1382,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 1383,19007, 1384,19007, 1385,19007,19007, 1386,19007, 19007,19007,19007, 1387,19007,19007, 1388,19007, 1389,19007, 1390,19007, 1391, 1392, 1393, 2525,10238,19007,19007,19007, 19007,10239,19007,19007,14038,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10240,19007,19007,19007, 19007,19007,19007,10241,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10242,19007,10243, 19007,10244,19007,19007,10245,19007,19007,19007,19007,10246, 19007,19007,10247,19007,10248,19007,10249,19007,10250,10251, 10252,14039,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,10987,19007,19007,19007,19007,19007,19007,10988,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10989,19007,10990,19007,10991,19007,19007,10992, 19007,19007,19007,19007,10993,19007,19007,10994,19007,10995, 19007,10996,19007,10997,10998,10999,10987,19007,19007,19007, 19007,19007,19007,10988,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10989,19007,10990, 19007,10991,19007,19007,10992,19007,19007,19007,19007,14040, 19007,19007,10994,19007,10995,19007,10996,19007,10997,10998, 10999,10987,19007,19007,19007,19007,19007,19007,10988,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10989,19007,10990,19007,10991,19007,19007,10992, 19007,19007,19007,19007,14041,19007,19007,10994,19007,10995, 19007,10996,19007,10997,10998,10999,10987,19007,19007,19007, 19007,19007,19007,10988,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10989,19007,10990, 19007,10991,19007,19007,10992,19007,19007,19007,19007,10993, 14042,19007,10994,19007,10995,19007,10996,19007,10997,10998, 10999,10987,19007,19007,19007,19007,19007,19007,10988,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10989,14043,10990,19007,10991,19007,19007,10992, 19007,19007,19007,19007,10993,19007,19007,10994,19007,10995, 19007,10996,19007,10997,10998,10999,10987,19007,19007,19007, 19007,19007,19007,10988,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10989,19007,10990, 19007,14044,19007,19007,10992,19007,19007,19007,19007,10993, 19007,19007,10994,19007,10995,19007,10996,19007,10997,10998, 10999, 2525,10238,19007,19007,19007,19007,10239,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10240,19007,19007,19007,19007,19007,19007,10241, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10242,19007,10243,19007,10244,19007,19007, 10245,19007,19007,19007,19007,10246,19007,19007,10247,19007, 10248,19007,10249,19007,10250,10251,10252,10987,19007,19007, 19007,19007,19007,19007,10988,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10989,19007, 10990,19007,10991,19007,19007,10992,19007,19007,19007,14045, 10993,19007,19007,10994,19007,10995,19007,10996,19007,10997, 10998,10999,10987,19007,19007,19007,19007,19007,19007,10988, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10989,19007,10990,14046,10991,19007,19007, 10992,19007,19007,19007,19007,10993,19007,19007,10994,19007, 10995,19007,10996,19007,10997,10998,10999,14047,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10987,19007,19007,19007,19007, 19007,19007,10988,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10989,19007,10990,19007, 10991,19007,19007,10992,19007,19007,19007,19007,10993,19007, 19007,10994,19007,10995,19007,10996,19007,10997,10998,10999, 10987,19007,19007,19007,19007,19007,19007,10988,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,14048,19007,10990,19007,10991,19007,19007,10992,19007, 19007,19007,19007,10993,19007,19007,10994,19007,10995,19007, 10996,19007,10997,10998,10999,11792,10987,19007,19007,19007, 19007,19007,19007,10988,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10989,19007,10990, 14049,10991,19007,19007,10992,19007,19007,19007,19007,10993, 19007,19007,10994,19007,10995,19007,10996,19007,10997,10998, 10999,10987,19007,19007,19007,19007,19007,19007,10988,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10989,19007,10990,19007,10991,19007,11788,10992, 19007,19007,19007,19007,10993,19007,14050,10994,19007,10995, 19007,10996,19007,10997,10998,10999,10987,19007,19007,19007, 19007,19007,19007,10988,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10989,19007,10990, 19007,10991,19007,19007,10992,19007,19007,19007,19007,10993, 19007,14051,10994,19007,10995,19007,10996,19007,10997,10998, 10999,10987,19007,19007,19007,19007,19007,19007,10988,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10989,19007,10990,19007,10991,19007,19007,10992, 14052,19007,19007,19007,10993,19007,19007,10994,19007,10995, 19007,10996,19007,10997,10998,10999,10987,19007,19007,19007, 19007,19007,19007,10988,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10989,19007,10990, 19007,10991,19007,19007,11793,19007,19007,19007,19007,11794, 19007,19007,14053,19007,10995,19007,10996,19007,10997,10998, 10999, 2525, 2526,19007,19007,19007,19007, 1380,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2527,19007,19007,19007,19007,19007,19007, 2528, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2529,19007, 2530,19007, 2532,19007,19007, 2533,19007,19007,19007,19007, 2535,19007,19007, 2536,19007, 2537,19007,14066,19007, 2539, 2540, 2541, 1713,14067,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1714, 19007,19007,19007,19007,19007,19007, 1715,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1716,19007, 1717,19007, 1718,19007,19007, 1719,19007,19007, 19007,19007, 1720,19007,19007, 1721,19007, 1722,19007, 1723, 19007, 1724, 1725, 1726,14068,19007,19007,19007,19007,19007, 19007, 1713,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 1714,19007,19007,19007,19007,19007,19007, 1715,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 1716,19007, 1717,19007, 1718,19007, 19007, 1719,19007,19007,19007,19007, 1720,19007,19007, 1721, 19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 2525,11020, 19007,19007,19007,19007,11021,19007,19007,11022,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11023, 19007,19007,19007,19007,19007,19007,11024,19007,19007,14069, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11025,19007,11026,19007,11027,19007,19007,11028,19007,19007, 19007,19007,11029,19007,19007,11030,19007,11031,19007,11032, 19007,11033,11034,11035,14070,19007,11822,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11823,19007, 19007,19007,19007,19007,19007,11824,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11825, 19007,11826,19007,11827,19007,19007,12584,19007,19007,19007, 19007,12585,19007,19007,11830,19007,11831,19007,11832,19007, 11833,11834,11835,11822,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11823,19007,19007,19007,19007, 19007,14071,11824,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11825,19007,11826,19007, 11827,19007,19007,11828,19007,19007,19007,19007,11829,19007, 19007,11830,19007,11831,19007,11832,19007,11833,11834,11835, 11822,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11823,19007,19007,19007,19007,19007,19007,11824, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11825,19007,11826,14072,11827,19007,19007, 11828,19007,19007,19007,19007,11829,19007,19007,11830,19007, 11831,19007,11832,19007,11833,11834,11835,11822,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11823, 19007,19007,19007,19007,19007,19007,11824,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11825,19007,11826,14073,11827,19007,19007,11828,19007,19007, 19007,19007,11829,19007,19007,11830,19007,11831,19007,11832, 19007,11833,11834,11835,11822,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11823,19007,19007,19007, 19007,19007,19007,11824,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12582,19007,11826, 19007,11827,19007,19007,11828,14074,19007,19007,19007,11829, 19007,19007,11830,19007,11831,19007,11832,19007,11833,11834, 11835,12583, 2525,11020,19007,19007,19007,19007,11021,19007, 19007,11022,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11023,19007,19007,19007,19007,19007,19007, 11024,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11025,19007,11026,11839,11027,19007, 19007,11028,12600,19007,19007,19007,11029,19007,19007,11030, 19007,11031,19007,11032,19007,11033,11034,11035, 2525, 3071, 14103,19007,19007,19007, 1712,19007,14104, 3072,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3073, 19007,19007,19007,19007,19007,19007, 3074,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3075,19007, 3076,19007, 3078,19007,19007, 3079,19007,19007, 19007,19007, 3081,19007,19007, 3082,19007, 3083,19007, 3084, 19007, 3085, 3086, 3087, 2525, 3071,19007,19007,19007,19007, 1712,19007,19007, 3072,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3073,19007,19007,19007,19007, 19007,19007, 3074,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3075,19007, 3076,19007, 3078,19007,19007, 3079,19007,19007,19007,19007, 3081,14105, 19007, 3082,19007, 3083,19007, 3084,19007, 3085, 3086, 3654, 119, 119,19007, 857, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,11869,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119,12623, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14118,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,14119,19007,19007,19007,19007,14118, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10292, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,14123,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10292, 119, 119, 119, 119, 119, 119, 14124,19007,19007,19007,19007,14123,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007, 19007,19007,19007,19007,19007,19007,14128, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,12628,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119,14130,14131, 14131,14131,14131,14131,14131,14131,14131,12679,19007,19007, 19007,19007,19007,19007,14131,14131,14131,14131,14131,14132, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 14131,14131,14131,14131,14131,14131,14134,14134,14134,14134, 14134,14134,14134,14134,14134,14135,19007,19007,19007,19007, 19007,19007,14134,14134,14134,14134,14134,14136,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,14134,14134, 14134,14134,14134,14134, 7135,19007,19007,19007,19007,19007, 19007,19007,19007,14137,14137,14137,14137,14137,14137,14137, 14137,14137,19007,19007,19007,19007,19007,19007,19007,14137, 14137,14137,14137,14137,14138,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,14137,14137,14137,14137,14137, 14137,14142,14142,14142,14142,14142,14142,14142,14142,14142, 13427,19007,19007,19007,19007,19007,19007,14142,14142,14142, 14142,14142,14143,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,14142,14142,14142,14142,14142,14142,14144, 14144,14144,14144,14144,14144,14144,14144,14144,19007,19007, 19007,19007,19007,19007,19007,14144,14144,14144,14144,14144, 14145,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,14144,14144,14144,14144,14144,14144,14149,14149,14149, 14149,14149,14149,14149,14149,14149,13437,19007,19007,19007, 19007,19007,19007,14149,14149,14149,14149,14149,14150,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,14149, 14149,14149,14149,14149,14149,14151,14151,14151,14151,14151, 14151,14151,14151,14151,19007,19007,19007,19007,19007,19007, 19007,14151,14151,14151,14151,14151,14152,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,14151,14151,14151, 14151,14151,14151,14157,14157,14157,14157,14157,14157,14157, 14157,14157,13449,19007,19007,19007,19007,19007,19007,14157, 14157,14157,14157,14157,14158,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,14157,14157,14157,14157,14157, 14157,14159,14159,14159,14159,14159,14159,14159,14159,14159, 19007,19007,19007,19007,19007,19007,19007,14159,14159,14159, 14159,14159,14160,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,14159,14159,14159,14159,14159,14159,12011, 19007,11972,11972,11972,11972,11972,11972,11972,11972,11972, 11975,19007,19007,19007,19007,19007,19007,11972,11972,11972, 11972,11972,11974,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11972,11972,11972,11972,11972,11972,14168, 14168,14168,14168,14168,14168,14168,14168,14168,13465,19007, 19007,19007,19007,19007,19007,14168,14168,14168,14168,14168, 14169,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,14168,14168,14168,14168,14168,14168,14170,14170,14170, 14170,14170,14170,14170,14170,14170,19007,19007,19007,19007, 19007,19007,19007,14170,14170,14170,14170,14170,14171,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,14170, 14170,14170,14170,14170,14170,11986,11986,11986,11986,11986, 11986,11986,11986,11986,11989,19007,19007,19007,19007,19007, 19007,11986,11986,11986,11986,11986,11988,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11986,11986,11986, 11986,11986,11986,11982,11982,11982,11982,11982,11982,11982, 11982,11982,10375,19007,19007,19007,19007,19007,19007,11982, 11982,11982,11982,11982,11983,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11982,11982,11982,11982,11982, 11982,14179,14180,14180,14180,14180,14180,14180,14180,14180, 12728,19007,19007,19007,19007,19007,19007,14180,14180,14180, 14180,14180,14181,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,14180,14180,14180,14180,14180,14180,14183, 14183,14183,14183,14183,14183,14183,14183,14183,14184,19007, 19007,19007,19007,19007,19007,14183,14183,14183,14183,14183, 14185,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,14183,14183,14183,14183,14183,14183,14191,14192,14193, 14194,14194,14194,14194,14194,14194,19007,19007,19007,19007, 19007,19007,19007,12003,12003,12003,12003,12003,12007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12003, 12003,12003,12003,12003,12003,14195,14195,14195,14195,14195, 14195,14195,14195,14195,11175,19007,19007,19007,19007,19007, 19007,12000,12000,12000,12000,12000,12001,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12000,12000,12000, 12000,12000,12000, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13495,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,13496,19007,19007,19007,19007,13495, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 10400,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,14201,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 14202,19007,19007,19007,19007,14201,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14206,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,14207,19007,19007,19007, 19007,14206,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,14211,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,14212,19007,19007,19007,19007,14211,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 14216,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,14217,19007, 19007,19007,19007,14216,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14220,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,14221,19007,19007,19007,19007,14220, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,14223,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,14224,19007,19007, 8419, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,14224, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14226,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,14227, 14227,14227,14227,14227,14227,14227,14227,14227, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 14226,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 9697, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,14230,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,14231,19007,19007,19007,19007,14230,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14233, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,14234,19007,19007, 8419, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 14234, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119,10400,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,14236,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,14237,19007,19007,19007,19007,14236,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 14241,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,14242,19007, 19007,19007,19007,14241,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14249,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14250,19007,19007,19007,19007,14249, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,14252,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 14253,19007,19007,19007,19007,14252,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14255,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 14256,19007,19007,19007,19007, 119, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,14256, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119,12806, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,14262,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119,12806,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,14263, 19007,19007,19007,19007,14262,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14267,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14268,19007,19007,19007,19007, 14267,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,14271,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14272,19007,19007,19007,19007,14271,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14274, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,14275,19007,19007,12808, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 14275, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,14277,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,14278,14278,14278,14278, 14278,14278,14278,14278,14278, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14277,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119,14259, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 14281,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,14282,19007, 19007,19007,19007,14281,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14284,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 14285,19007,19007,12808, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,14285, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119,12806, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,12807,14286,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421, 13598, 8421, 8423,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007, 19007,19007,19007,19007,13600,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8426, 8421, 8421,13598, 8421, 8421,19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,19007,19007,19007,19007,19007,13602,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8426, 8421, 8421, 8421, 8421, 19007, 8421, 8421, 8421, 8421, 8421, 8421,19007, 8421, 8423, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8424, 8421, 8421, 8421, 8421, 8421, 8421,13603,19007,19007,19007, 19007,13602,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8426, 8421, 8421, 119, 119,19007,10415, 119, 119, 119, 119, 119, 19007, 119,12806,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,14288,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14289,19007,19007,19007,19007,14288,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 10415, 119, 119, 119, 119, 119,19007, 119,12806,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 14293,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,14294,19007, 19007,19007,19007,14293,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14298,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14299,19007,19007,19007,19007,14298, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119, 12806,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,14302,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 14303,19007,19007,19007,19007,14302,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14305,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,14306,19007,19007,12808, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,14306, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,14308,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14309,19007,19007,19007,19007,14308,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14311, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,14312,19007,19007,12808, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 14312, 119, 119,19007,10415, 119, 119, 119, 119, 119, 19007, 119,10400,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,14314,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,14315,19007,19007,19007,19007,14314,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 10415, 119, 119, 119, 119, 119,19007, 119,10400,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 14319,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,14320,19007, 19007,19007,19007,14319,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3098, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 9700,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119,14325,14325,14325,14325, 14325,14325,14325,14325,14325,13676,19007,19007,19007,19007, 19007,19007,14325,14325,14325,14325,14325,14326,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,14325,14325, 14325,14325,14325,14325,14327,14327,14327,14327,14327,14327, 14327,14327,14327,14328,19007,19007,19007,19007,19007,19007, 14327,14327,14327,14327,14327,14329,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,14327,14327,14327,14327, 14327,14327, 6527,19007,19007,19007,19007,19007,19007,19007, 19007,14331,14331,14331,14331,14331,14331,14331,14331,14331, 14332,19007,19007,19007,19007,19007,19007,14331,14331,14331, 14331,14331,14333,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,14331,14331,14331,14331,14331,14331,14337, 14337,14337,14337,14337,14337,14337,14337,14337,12887,19007, 19007,19007,19007,19007,19007,14337,14337,14337,14337,14337, 14338,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,14337,14337,14337,14337,14337,14337,14340,14340,14340, 14340,14340,14340,14340,14340,14340,14341,19007,19007,19007, 19007,19007,19007,14340,14340,14340,14340,14340,14342,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,14340, 14340,14340,14340,14340,14340,14346,14346,14346,14346,14346, 14346,14346,14346,14346,12897,19007,19007,19007,19007,19007, 19007,14346,14346,14346,14346,14346,14347,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,14346,14346,14346, 14346,14346,14346,14349,14349,14349,14349,14349,14349,14349, 14349,14349,14350,19007,19007,19007,19007,19007,19007,14349, 14349,14349,14349,14349,14351,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,14349,14349,14349,14349,14349, 14349,14355,14356,14357,14358,14358,14358,14358,14358,14358, 19007,19007,19007,19007,19007,19007,19007,12145,12145,12145, 12145,12145,12149,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12145,12145,12145,12145,12145,12145,14359, 14359,14359,14359,14359,14359,14359,14359,14359,12909,19007, 19007,19007,19007,19007,19007,14359,14359,14359,14359,14359, 14360,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,14359,14359,14359,14359,14359,14359,14362,14362,14362, 14362,14362,14362,14362,14362,14362,14363,19007,19007,19007, 19007,19007,19007,14362,14362,14362,14362,14362,14364,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,14362, 14362,14362,14362,14362,14362,14368,14369,14370,14371,14371, 14371,14371,14371,14371,19007,19007,19007,19007,19007,19007, 19007,12155,12155,12155,12155,12155,12159,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12155,12155,12155, 12155,12155,12155,11375,19007,14372,14372,14372,14372,14372, 14372,14372,14372,14372,11339,19007,19007,19007,19007,19007, 19007,12153,12153,12153,12153,12153,12154,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12153,12153,12153, 12153,12153,12153,14373,14373,14373,14373,14373,14373,14373, 14373,14373,12925,19007,19007,19007,19007,19007,19007,14373, 14373,14373,14373,14373,14374,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,14373,14373,14373,14373,14373, 14373,14376,14376,14376,14376,14376,14376,14376,14376,14376, 14377,19007,19007,19007,19007,19007,19007,14376,14376,14376, 14376,14376,14378,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,14376,14376,14376,14376,14376,14376,14382, 14383,14384,14385,14385,14385,14385,14385,14385,19007,19007, 19007,19007,19007,19007,19007,12166,12166,12166,12166,12166, 12170,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12166,12166,12166,12166,12166,12166,14386,14386,14386, 14386,14386,14386,14386,14386,14386,11353,19007,19007,19007, 19007,19007,19007,12164,12164,12164,12164,12164,12165,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12164, 12164,12164,12164,12164,12164,14387,14387,14387,14387,14387, 14387,14387,14387,14387,13725,19007,19007,19007,19007,19007, 19007,14387,14387,14387,14387,14387,14388,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,14387,14387,14387, 14387,14387,14387,14389,14389,14389,14389,14389,14389,14389, 14389,14389,19007,19007,19007,19007,19007,19007,19007,14389, 14389,14389,14389,14389,14390,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,14389,14389,14389,14389,14389, 14389,12182,12182,12182,12182,12182,12182,12182,12182,12182, 12185,19007,19007,19007,19007,19007,19007,12182,12182,12182, 12182,12182,12184,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12182,12182,12182,12182,12182,12182,12178, 12178,12178,12178,12178,12178,12178,12178,12178,10539,19007, 19007,19007,19007,19007,19007,12178,12178,12178,12178,12178, 12179,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12178,12178,12178,12178,12178,12178, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 14401,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,14402,19007, 19007,19007,19007,14401,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14406,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14407,19007,19007,19007,19007,14406, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,14411,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 14412,19007,19007,19007,19007,14411,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14416,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14417,19007,19007,19007, 19007,14416,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,14421,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14422,19007,19007,19007,19007,14421,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 14425,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,14426,19007, 19007,19007,19007,14425,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,14427, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14427,19007,19007,19007,19007,14429,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 7812,14427,14427, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,14431,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,14432, 19007,19007,19007,19007,14431,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14435,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14436,19007,19007,19007,19007, 14435,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,14439,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14440,19007,19007,19007,19007,14439,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,14441, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14441,19007,19007,19007,19007,14443, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 7812,14441, 14441, 1265,19007,19007,19007,13055,19007,13055,19007,19007, 13809,13809,13809,13809,13809,13809,13809,13809,13809,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 1266,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,13057,19007,19007, 13058, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004, 19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007, 19007,19007,19007,19007,13811,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 1004, 1004,14471, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,13812,19007,19007,19007,19007,13811,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 1004, 1004,14471, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 13816,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945, 19007,19007,19007,13817, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,13818,19007,19007,19007,19007,13816,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 13817, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945,10685,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007, 19007,19007,19007,19007,14476,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8592, 5945, 5945,19007,19007,19007,14477, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,14478,19007,19007,19007, 19007,14476,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,14477, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,14486,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007, 19007,14487, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 14488,19007,19007,19007,19007,14486,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8592, 5945, 5945,19007,19007,19007,14487, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007, 19007,19007,14495,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,14496, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,14497,19007,19007,19007,19007,14495, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007, 19007,19007,14496, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,14503,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,14504, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,14505,19007, 19007,19007,19007,14503,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,14504, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 14509,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945, 19007,19007,19007,14510, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,14511,19007,19007,19007,19007,14509,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 14510, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007, 19007,19007,19007,19007,14513,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,14514,19007, 19007, 8592, 5945, 5945,19007,19007,19007,14515,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,14514, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,14518, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007, 19007,19007,14519, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,14520,14520,14520,14520,14520, 14520,14520,14520,14520, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,14518,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 5945, 5945, 9967,19007,19007,19007,14519, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007, 19007,19007,19007,14525,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,14526, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,14527,19007,19007,19007,19007, 14525,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945, 19007,19007,19007,14526, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,14529,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,14530,19007,19007, 8592, 5945, 5945,19007,19007,19007, 14531,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,14530, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 10685,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007, 19007,19007,14538,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,14539, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,14540,19007,19007,19007,19007,14538, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007, 19007,19007,14539, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,14548,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 5945, 5945, 5945,19007,19007,19007,14549, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,14550,19007, 19007,19007,19007,14548,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007,14549, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5947, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 5948,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 19007,19007,19007, 5949,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,14564, 11610,14565,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11611, 2841, 2841, 2842, 2841, 2841, 2841,13181, 2841, 2841,19007, 2841, 2841,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 19007,19007,19007,19007,19007,12405,19007,19007,19007,19007, 19007,14570,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2852, 2841, 2841, 2841, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14581, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,14582,19007, 19007,19007,19007,14581,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119,14585,14585,14585,14585,14585,14585, 14585,14585,14585,19007,19007,19007,19007,19007,19007,19007, 14585,14585,14585,14585,14585,14586,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,14585,14585,14585,14585, 14585,14585, 778, 778,19007, 778, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 778, 778, 778, 778, 778, 778, 778, 19007,19007,19007,19007,19007,13209,19007,19007,19007,19007, 19007,14598,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 778, 778,13993, 7543,19007,12442,12442,12442, 12442,12442,12442,12442,12442,12442,10872,19007,19007,19007, 19007,19007,19007,12442,12442,12442,12442,12442,12443,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12442, 12442,12442,12442,12442,12442,12479,12479,12479,12479,12479, 12479,12479,12479,12479,10921,19007,19007,19007,19007,19007, 19007,12479,12479,12479,12479,12479,12480,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3504,19007,19007,19007,12479,12479,12479, 12479,12479,12479, 2525,10238,19007,19007,19007,19007,10239, 19007,19007,19007,14637,14637,14637,14637,14637,14637,14637, 14637,14637,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10240,19007,19007,19007,19007,19007, 19007,10241,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10242,19007,10243,19007,10244, 19007,19007,10245,19007,19007,19007,19007,10246,19007,19007, 10247,19007,10248,19007,10249,19007,10250,10251,10252,10987, 19007,19007,19007,19007,19007,14638,10988,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10989,19007,10990,19007,10991,19007,19007,10992,19007,19007, 19007,19007,10993,19007,19007,10994,19007,10995,19007,10996, 19007,10997,10998,10999,10987,19007,19007,19007,19007,19007, 19007,10988,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11791,19007,10990,19007,10991, 19007,19007,10992,14639,19007,19007,19007,10993,19007,19007, 10994,19007,10995,19007,10996,19007,10997,10998,10999,11792, 10987,19007,19007,19007,19007,19007,19007,10988,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11791,19007,10990,19007,10991,19007,19007,10992,14640, 19007,19007,19007,10993,19007,19007,10994,19007,10995,19007, 10996,19007,10997,10998,10999,11792,14641,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10987,19007, 19007,19007,19007,19007,19007,10988,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10989, 19007,10990,19007,10991,19007,19007,10992,19007,19007,19007, 19007,10993,19007,19007,10994,19007,10995,19007,10996,19007, 10997,10998,10999,10987,19007,19007,19007,19007,19007,19007, 10988,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10989,19007,10990,19007,10991,19007, 19007,10992,14642,19007,19007,19007,10993,19007,19007,10994, 19007,10995,19007,10996,19007,10997,10998,10999, 2525,10238, 19007,19007,19007,19007,10239,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10240, 19007,19007,19007,19007,19007,19007,10241,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10242,19007,10243,19007,10244,19007,19007,10245,19007,19007, 19007,19007,10246,19007,19007,10247,19007,10248,19007,10249, 19007,10250,10251,11004,10987,19007,19007,19007,19007,19007, 19007,10988,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,14643,19007,10990,19007,10991, 19007,19007,10992,19007,19007,19007,19007,10993,19007,19007, 10994,19007,10995,19007,10996,19007,10997,10998,10999,10987, 19007,19007,19007,19007,19007,19007,10988,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10989,19007,14644,19007,10991,19007,19007,10992,19007,19007, 19007,19007,10993,19007,19007,10994,19007,10995,19007,10996, 19007,10997,10998,10999,14641,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10987,19007,19007,19007, 19007,19007,19007,10988,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10989,19007,10990, 19007,10991,19007,19007,10992,19007,19007,19007,19007,10993, 19007,19007,10994,19007,10995,19007,10996,19007,10997,10998, 10999,10987,19007,19007,19007,19007,19007,19007,10988,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10989,19007,10990,11787,10991,19007,19007,10992, 14645,19007,19007,19007,10993,19007,19007,10994,19007,10995, 19007,10996,19007,10997,10998,10999,10987,19007,19007,19007, 19007,19007,19007,10988,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10989,19007,10990, 19007,10991,19007,19007,10992,19007,19007,19007,19007,14646, 19007,19007,10994,19007,10995,19007,10996,19007,10997,10998, 10999,10987,19007,19007,19007,19007,19007,19007,10988,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10989,19007,10990,19007,10991,19007,19007,10992, 19007,19007,19007,19007,10993,14647,19007,10994,19007,10995, 19007,10996,19007,10997,10998,10999,10987,19007,19007,19007, 19007,19007,19007,10988,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10989,19007,10990, 19007,10991,19007,14648,10992,19007,19007,19007,19007,10993, 19007,19007,10994,19007,10995,19007,10996,19007,10997,10998, 10999,10987,19007,19007,19007,19007,19007,19007,10988,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10989,19007,10990,19007,10991,19007,14649,10992, 19007,19007,19007,19007,10993,19007,19007,10994,19007,10995, 19007,10996,19007,10997,10998,10999,14641,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10987,19007, 19007,19007,19007,19007,19007,10988,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10989, 19007,10990,19007,10991,19007,19007,11793,19007,19007,19007, 19007,11794,19007,19007,10994,19007,10995,19007,10996,19007, 10997,10998,10999, 2525,14660,19007,19007,19007,19007, 1380, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 2527,19007,19007,19007,19007,19007, 19007, 2528,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 2529,19007, 2530,19007, 2532, 19007,19007, 2533,19007,19007,19007,19007, 2535,19007,19007, 2536,19007, 2537,19007, 2538,19007, 2539, 2540, 2541, 3048, 1713,14661,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 1714,19007,19007,19007,19007,19007,19007, 1715, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 1716,19007, 1717,19007, 1718,19007,19007, 1719,19007,19007,19007,19007, 1720,19007,19007, 1721,19007, 1722,19007, 1723,19007, 1724, 1725, 1726, 1713,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1714, 19007,19007,19007,19007,19007,19007, 1715,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1716,19007, 1717,19007, 1718,19007,19007, 1719,19007,19007, 19007,19007, 1720,19007,19007, 1721,19007, 1722,19007, 1723, 19007, 1724, 1725, 1726, 2525,11020,19007,19007,19007,19007, 11021,19007,19007,14662,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11023,19007,19007,19007,19007, 19007,19007,11024,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11025,19007,11026,19007, 11027,19007,19007,11028,19007,19007,19007,19007,11029,19007, 19007,11030,19007,11031,19007,11032,19007,11033,11034,11035, 11822,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11823,19007,19007,19007,19007,19007,19007,11824, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,14082,19007,14083,19007,11827,19007,19007, 11828,19007,19007,19007,14663,11829,19007,19007,11830,19007, 11831,14085,11832,19007,11833,11834,11835,14664,19007,19007, 19007,19007,19007,19007,19007,11822,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11823,19007,19007, 19007,19007,19007,19007,11824,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11825,19007, 11826,19007,11827,19007,19007,11828,19007,19007,19007,19007, 11829,19007,19007,11830,19007,11831,19007,11832,19007,11833, 11834,11835,11822,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11823,19007,19007,19007,19007,19007, 19007,11824,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11825,19007,11826,19007,11827, 19007,19007,11828,19007,19007,19007,19007,14665,19007,19007, 11830,19007,11831,19007,11832,19007,11833,11834,11835,11822, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11823,19007,19007,19007,19007,19007,19007,11824,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11825,19007,11826,19007,11827,19007,19007,11828, 19007,19007,19007,19007,14666,19007,19007,11830,19007,11831, 19007,11832,19007,11833,11834,11835,11822,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11823,19007, 19007,19007,19007,19007,19007,11824,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11825, 19007,11826,19007,11827,19007,19007,11828,19007,19007,19007, 19007,11829,14667,19007,11830,19007,11831,19007,11832,19007, 11833,11834,11835,11822,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11823,19007,19007,19007,19007, 19007,19007,11824,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11825,14668,11826,19007, 11827,19007,19007,11828,19007,19007,19007,19007,11829,19007, 19007,11830,19007,11831,19007,11832,19007,11833,11834,11835, 11822,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11823,19007,19007,19007,19007,19007,19007,11824, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11825,19007,11826,19007,14669,19007,19007, 11828,19007,19007,19007,19007,11829,19007,19007,11830,19007, 11831,19007,11832,19007,11833,11834,11835, 2525,11020,19007, 19007,19007,19007,11021,19007,19007,11022,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11023,19007, 19007,19007,19007,19007,19007,11024,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11025, 19007,11026,19007,11027,19007,19007,11028,19007,19007,19007, 19007,11029,19007,19007,11030,19007,11031,19007,11032,19007, 11033,11034,11035,11822,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11823,19007,19007,19007,19007, 19007,19007,11824,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11825,19007,11826,19007, 11827,19007,19007,11828,19007,19007,19007,14670,11829,19007, 19007,11830,19007,11831,19007,11832,19007,11833,11834,11835, 11822,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11823,19007,19007,19007,19007,19007,19007,11824, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11825,19007,11826,14671,11827,19007,19007, 11828,19007,19007,19007,19007,11829,19007,19007,11830,19007, 11831,19007,11832,19007,11833,11834,11835,11822,19007,19007, 19007,14672,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11823, 19007,19007,19007,19007,19007,19007,11824,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11825,19007,11826,19007,11827,19007,19007,11828,19007,19007, 19007,19007,11829,19007,19007,11830,19007,11831,19007,11832, 19007,11833,11834,11835,11822,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11823,19007,19007,19007, 19007,19007,19007,11824,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,14673,19007,11826, 19007,11827,19007,19007,11828,19007,19007,19007,19007,11829, 19007,19007,11830,19007,11831,19007,11832,19007,11833,11834, 11835,12583,11822,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11823,19007,19007,19007,19007,19007, 19007,11824,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11825,19007,11826,14674,11827, 19007,19007,11828,19007,19007,19007,19007,11829,19007,19007, 11830,19007,11831,19007,11832,19007,11833,11834,11835,11822, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11823,19007,19007,19007,19007,19007,19007,11824,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11825,19007,11826,19007,11827,19007,12579,11828, 19007,19007,19007,19007,11829,19007,14675,11830,19007,11831, 19007,11832,19007,11833,11834,11835, 2525,14692,19007,19007, 19007,19007, 1712,19007,19007, 3072,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3073,19007,19007, 19007,19007,19007,19007, 3074,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3075,19007, 3076,19007, 3078,19007,19007, 3079,19007,19007,19007,19007, 3081,19007,19007, 3082,19007, 3083,19007, 3084,19007, 3085, 3086, 3087, 2525, 3071,19007,19007,19007,19007, 1712,19007, 19007, 3072,14693,14693,14693,14693,14693,14693,14693,14693, 14693,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3073,19007,19007,19007,19007,19007,19007, 3074,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 3075,19007, 3076,19007, 3078,19007, 19007, 3079,19007,19007,19007,19007, 3081,19007,19007, 3082, 19007, 3083,19007, 3084,19007, 3085, 3086, 3087, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,14709,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10292, 119, 119, 119, 119, 119, 119,14710, 19007,19007,19007,19007,14709,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119,14714,14714,14714,14714,14714,14714, 14714,14714,14714,14135,19007,19007,19007,19007,19007,19007, 14714,14714,14714,14714,14714,14715,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,14714,14714,14714,14714, 14714,14714,14716,14716,14716,14716,14716,14716,14716,14716, 14716,14717,19007,19007,19007,19007,19007,19007,14716,14716, 14716,14716,14716,14718,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,14716,14716,14716,14716,14716,14716, 7135,19007,19007,19007,19007,19007,19007,19007,19007,14720, 14720,14720,14720,14720,14720,14720,14720,14720,14721,19007, 19007,19007,19007,19007,19007,14720,14720,14720,14720,14720, 14722,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,14720,14720,14720,14720,14720,14720,14726,14726,14726, 14726,14726,14726,14726,14726,14726,13427,19007,19007,19007, 19007,19007,19007,14726,14726,14726,14726,14726,14727,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,14726, 14726,14726,14726,14726,14726,14729,14729,14729,14729,14729, 14729,14729,14729,14729,14730,19007,19007,19007,19007,19007, 19007,14729,14729,14729,14729,14729,14731,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,14729,14729,14729, 14729,14729,14729,14735,14735,14735,14735,14735,14735,14735, 14735,14735,13437,19007,19007,19007,19007,19007,19007,14735, 14735,14735,14735,14735,14736,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,14735,14735,14735,14735,14735, 14735,14738,14738,14738,14738,14738,14738,14738,14738,14738, 14739,19007,19007,19007,19007,19007,19007,14738,14738,14738, 14738,14738,14740,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,14738,14738,14738,14738,14738,14738,14744, 14745,14746,14747,14747,14747,14747,14747,14747,19007,19007, 19007,19007,19007,19007,19007,12690,12690,12690,12690,12690, 12694,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12690,12690,12690,12690,12690,12690,14748,14748,14748, 14748,14748,14748,14748,14748,14748,13449,19007,19007,19007, 19007,19007,19007,14748,14748,14748,14748,14748,14749,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,14748, 14748,14748,14748,14748,14748,14751,14751,14751,14751,14751, 14751,14751,14751,14751,14752,19007,19007,19007,19007,19007, 19007,14751,14751,14751,14751,14751,14753,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,14751,14751,14751, 14751,14751,14751,14757,14758,14759,14760,14760,14760,14760, 14760,14760,19007,19007,19007,19007,19007,19007,19007,12700, 12700,12700,12700,12700,12704,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12700,12700,12700,12700,12700, 12700,12011,19007,14761,14761,14761,14761,14761,14761,14761, 14761,14761,11975,19007,19007,19007,19007,19007,19007,12698, 12698,12698,12698,12698,12699,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12698,12698,12698,12698,12698, 12698,14762,14762,14762,14762,14762,14762,14762,14762,14762, 13465,19007,19007,19007,19007,19007,19007,14762,14762,14762, 14762,14762,14763,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,14762,14762,14762,14762,14762,14762,14765, 14765,14765,14765,14765,14765,14765,14765,14765,14766,19007, 19007,19007,19007,19007,19007,14765,14765,14765,14765,14765, 14767,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,14765,14765,14765,14765,14765,14765,14771,14772,14773, 14774,14774,14774,14774,14774,14774,19007,19007,19007,19007, 19007,19007,19007,12711,12711,12711,12711,12711,12715,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12711, 12711,12711,12711,12711,12711,14775,14775,14775,14775,14775, 14775,14775,14775,14775,11989,19007,19007,19007,19007,19007, 19007,12709,12709,12709,12709,12709,12710,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12709,12709,12709, 12709,12709,12709,14776,14776,14776,14776,14776,14776,14776, 14776,14776,14184,19007,19007,19007,19007,19007,19007,14776, 14776,14776,14776,14776,14777,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,14776,14776,14776,14776,14776, 14776,14778,14778,14778,14778,14778,14778,14778,14778,14778, 19007,19007,19007,19007,19007,19007,19007,14778,14778,14778, 14778,14778,14779,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,14778,14778,14778,14778,14778,14778,12727, 12727,12727,12727,12727,12727,12727,12727,12727,12730,19007, 19007,19007,19007,19007,19007,12727,12727,12727,12727,12727, 12729,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12727,12727,12727,12727,12727,12727,12723,12723,12723, 12723,12723,12723,12723,12723,12723,11175,19007,19007,19007, 19007,19007,19007,12723,12723,12723,12723,12723,12724,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12723, 12723,12723,12723,12723,12723, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14790,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119,10400, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,14791,19007,19007,19007, 19007,14790,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,14795,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,14796,19007,19007,19007,19007,14795,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 14800,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,14801,19007, 19007,19007,19007,14800,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14805,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,14806,19007,19007,19007,19007,14805, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,14810,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 14811,19007,19007,19007,19007,14810,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14814,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,14815,19007,19007,19007, 19007,14814,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 14816, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,14816, 19007,19007,19007,19007,14818,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119,14816,14816, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14820, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14821,19007,19007, 19007,19007,14820,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,14825,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,14826,19007,19007,19007,19007,14825,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,14829,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,14830, 19007,19007,19007,19007,14829,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,14831, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,14831,19007,19007,19007,19007,14833,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119,14831,14831,10400, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 7157, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 120,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419,19007, 9697, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119,12806,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,14836,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14837,19007,19007,19007,19007,14836,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 14841,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,14842,19007, 19007,19007,19007,14841,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14845,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14846,19007,19007,19007,19007,14845, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 14840,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,14848,19007,14849,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,14850, 14851,14851,19007,19007,19007,19007,19007,19007,19007,19007, 14852, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119,12806,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,14856,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14857,19007,19007,19007,19007,14856,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 14861,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,14862,19007, 19007,19007,19007,14861,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14866,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14867,19007,19007,19007,19007,14866, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 12806,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,14870,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 14871,19007,19007,19007,19007,14870,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,14872, 119,12806,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14872,19007,19007,19007,19007,14874,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12808, 119, 119,14872,14872, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,14876,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14877,19007,19007,19007,19007,14876,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14881, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 12806,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14882,19007,19007, 19007,19007,14881,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,14885,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14886,19007,19007,19007,19007,14885,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12808, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,14887, 119,12806, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14887,19007,19007,19007, 19007,14889,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119,14887,14887, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,13573,19007,19007,14890, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14892, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119, 12806,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14893,19007,19007, 19007,19007,14892,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,14897,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14898,19007,19007,19007,19007,14897,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12808, 119, 119, 119, 119, 19007,10415, 119, 119, 119, 119, 119,19007, 119,12806, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,14902,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119, 19007, 119,12806,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,14903, 19007,19007,19007,19007,14902,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14907,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 10415, 119, 119, 119, 119, 119,19007, 119,12806,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14908,19007,19007,19007,19007, 14907,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,14911,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14912,19007,19007,19007,19007,14911,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,14913, 119,12806,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14913,19007,19007,19007,19007,14915, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119,14913, 14913, 119, 119,19007,10415, 119, 119, 119, 119, 119, 19007, 119,12806,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,14917,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14918,19007,19007,19007,19007,14917,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 10415, 119, 119, 119, 119, 119,19007, 119,12806,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 14921,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,14922,19007, 19007,19007,19007,14921,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,14923, 119,12806,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,14923,19007,19007,19007,19007,14925,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119,14923,14923, 119, 119, 19007,10415, 119, 119, 119, 119, 119,19007, 119,10400, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,14927,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119, 19007, 119,10400,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,14928, 19007,19007,19007,19007,14927,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119,14931,14931,14931,14931,14931,14931, 14931,14931,14931,13676,19007,19007,19007,19007,19007,19007, 14931,14931,14931,14931,14931,14932,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,14931,14931,14931,14931, 14931,14931,14931,14931,14931,14931,14931,14931,14931,14931, 14931,13676,19007,19007,19007,19007,19007,19007,14933,14931, 14931,14931,14931,14932,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,14931,14931,14931,14931,14931,14931, 14934,14934,14934,14934,14934,14934,14934,14934,14934,14935, 19007,19007,19007,19007,19007,19007,14934,14934,14934,14934, 14934,14936,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,14934,14934,14934,14934,14934,14934, 6527,19007, 19007,19007,19007,19007,19007,19007,19007,14937,14937,14937, 14937,14937,14937,14937,14937,14937,19007,19007,19007,19007, 19007,19007,19007,14937,14937,14937,14937,14937,14938,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,14937, 14937,14937,14937,14937,14937,14940,14940,14940,14940,14940, 14940,14940,14940,14940,14332,19007,19007,19007,19007,19007, 19007,14940,14940,14940,14940,14940,14941,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,14940,14940,14940, 14940,14940,14940,14942,14942,14942,14942,14942,14942,14942, 14942,14942,19007,19007,19007,19007,19007,19007,19007,14942, 14942,14942,14942,14942,14943,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,14942,14942,14942,14942,14942, 14942,14947,14947,14947,14947,14947,14947,14947,14947,14947, 14341,19007,19007,19007,19007,19007,19007,14947,14947,14947, 14947,14947,14948,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,14947,14947,14947,14947,14947,14947,14949, 14949,14949,14949,14949,14949,14949,14949,14949,19007,19007, 19007,19007,19007,19007,19007,14949,14949,14949,14949,14949, 14950,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,14949,14949,14949,14949,14949,14949,14953,14953,14953, 14953,14953,14953,14953,14953,14953,14350,19007,19007,19007, 19007,19007,19007,14953,14953,14953,14953,14953,14954,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,14953, 14953,14953,14953,14953,14953,14955,14955,14955,14955,14955, 14955,14955,14955,14955,19007,19007,19007,19007,19007,19007, 19007,14955,14955,14955,14955,14955,14956,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,14955,14955,14955, 14955,14955,14955,11375,19007,12896,12896,12896,12896,12896, 12896,12896,12896,12896,12897,19007,19007,19007,19007,19007, 19007,12896,12896,12896,12896,12896,12898,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12896,12896,12896, 12896,12896,12896,14962,14962,14962,14962,14962,14962,14962, 14962,14962,14363,19007,19007,19007,19007,19007,19007,14962, 14962,14962,14962,14962,14963,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,14962,14962,14962,14962,14962, 14962,14964,14964,14964,14964,14964,14964,14964,14964,14964, 19007,19007,19007,19007,19007,19007,19007,14964,14964,14964, 14964,14964,14965,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,14964,14964,14964,14964,14964,14964,12908, 12908,12908,12908,12908,12908,12908,12908,12908,12909,19007, 19007,19007,19007,19007,19007,12908,12908,12908,12908,12908, 12910,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12908,12908,12908,12908,12908,12908,12905,12905,12905, 12905,12905,12905,12905,12905,12905,11339,19007,19007,19007, 19007,19007,19007,12905,12905,12905,12905,12905,12906,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12905, 12905,12905,12905,12905,12905,14971,14971,14971,14971,14971, 14971,14971,14971,14971,14377,19007,19007,19007,19007,19007, 19007,14971,14971,14971,14971,14971,14972,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,14971,14971,14971, 14971,14971,14971,14973,14973,14973,14973,14973,14973,14973, 14973,14973,19007,19007,19007,19007,19007,19007,19007,14973, 14973,14973,14973,14973,14974,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,14973,14973,14973,14973,14973, 14973,12924,12924,12924,12924,12924,12924,12924,12924,12924, 12925,19007,19007,19007,19007,19007,19007,12924,12924,12924, 12924,12924,12926,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12924,12924,12924,12924,12924,12924,12921, 12921,12921,12921,12921,12921,12921,12921,12921,11353,19007, 19007,19007,19007,19007,19007,12921,12921,12921,12921,12921, 12922,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12921,12921,12921,12921,12921,12921,14980,14980,14980, 14980,14980,14980,14980,14980,14980,13725,19007,19007,19007, 19007,19007,19007,14980,14980,14980,14980,14980,14981,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,14980, 14980,14980,14980,14980,14980,14983,14983,14983,14983,14983, 14983,14983,14983,14983,14984,19007,19007,19007,19007,19007, 19007,14983,14983,14983,14983,14983,14985,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,14983,14983,14983, 14983,14983,14983,14989,14990,14991,14992,14992,14992,14992, 14992,14992,19007,19007,19007,19007,19007,19007,19007,12940, 12940,12940,12940,12940,12944,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12940,12940,12940,12940,12940, 12940,14993,14993,14993,14993,14993,14993,14993,14993,14993, 12185,19007,19007,19007,19007,19007,19007,12938,12938,12938, 12938,12938,12939,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12938,12938,12938,12938,12938,12938, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,14999,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 15000,19007,19007,19007,19007,14999,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,15004,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15005,19007,19007,19007, 19007,15004,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,15009,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15010,19007,19007,19007,19007,15009,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 15014,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,15015,19007, 19007,19007,19007,15014,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,15019,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15020,19007,19007,19007,19007,15019, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,15024,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 15025,19007,19007,19007,19007,15024,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,15028,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15029, 19007,19007,19007,19007,19007, 119, 119, 7812,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15029, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 15031,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,15032,19007, 19007,19007,19007,15031,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,15034,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15035,19007,19007,19007,19007,15034, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,15039,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 15040,19007,19007,19007,19007,15039,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,15044,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15045,19007,19007,19007, 19007,15044,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,15048,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,15049,19007,19007,19007,19007, 19007, 119, 119, 7812,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,15049, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,15051,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15052,19007,19007,19007,19007,15051, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 7812, 1004, 1004,19007, 1265, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007,19007, 19007,19007,13811,19007,19007,19007,19007,19007,15080,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004,14471, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 19007,19007,19007,19007,19007,15084,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8592, 5945, 5945,19007,19007,19007,15085, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 10685,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,15086,19007,19007, 19007,19007,15084,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,15085, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,15095, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007, 19007,19007,15096, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,15097,19007,19007,19007,19007,15095,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,15096, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007, 19007,19007,19007,15105,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,15106, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,15107,19007,19007,19007,19007, 15105,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945, 19007,19007,19007,15106, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,15114,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 15115, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,15116, 19007,19007,19007,19007,15114,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8592, 5945, 5945,19007,19007,19007,15115, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007, 19007,15122,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,15123, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,15124,19007,19007,19007,19007,15122,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007, 19007,15123, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 19007,19007,19007,19007,19007,15128,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8592, 5945, 5945,19007,19007,19007,15129, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,15130,19007,19007, 19007,19007,15128,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,15129, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,15131, 5945, 5945,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,15131,19007,19007,19007,19007,15133, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,15131, 15131,19007,15134, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,15138,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 5945, 5945, 5945,19007,19007,19007,15139, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,15140,19007, 19007,19007,19007,15138,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007,15139, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 15147,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945, 19007,19007,19007,15148, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,15149,19007,19007,19007,19007,15147,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 15148, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007, 19007,19007,19007,19007,15153,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8592, 5945, 5945,19007,19007,19007,15154, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,15155,19007,19007,19007, 19007,15153,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,15154, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,15156, 5945, 5945,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,15156,19007,19007,19007,19007,15158,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8592, 5945, 5945,15156,15156, 19007,15159,10685, 9966, 9966, 9966, 9966, 9966, 9966, 9966, 9966, 9966, 8590,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 6644,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8592,19007, 9967,19007,19007,19007, 6645, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007, 19007,13816,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,13817,19007,15169, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5947, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 5948,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 19007,19007,19007, 5949,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15171, 11610,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11611,19007,19007,19007,19007,19007,15172, 2841, 2841, 2842, 5267, 2841, 2841,13181, 2841, 2841,19007, 2841, 2841, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 2841, 2841, 2841, 2841, 2841, 2841, 2841,19007,19007,19007,19007, 19007,12405,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2852, 2841, 2841, 2841, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,15188,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15189,19007,19007,19007,19007,15188, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 13984,19007,13984,19007,19007,14592,14592,14592,14592,14592, 14592,14592,14592,14592,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 1023,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,13986,19007,19007,13987, 778, 778,19007, 2372, 778, 778, 778, 778, 778,19007, 778, 778,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 778, 778, 778, 778, 778, 778, 778,19007,19007,19007,19007,19007,13209, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 778, 778,13993, 2525, 10984,19007,19007,19007,19007,10985,19007,19007,19007,15235, 15235,15235,15235,15235,15235,15235,15235,15235, 2525,10238, 15236,19007,19007,19007,10239,19007,15237,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10240, 19007,19007,19007,19007,19007,19007,10241,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10242,19007,10243,19007,10244,19007,19007,10245,19007,19007, 19007,19007,10246,19007,19007,10247,19007,10248,19007,10249, 19007,10250,10251,10252,10987,19007,19007,19007,19007,19007, 19007,10988,19007,15238,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10989,19007,10990,19007,10991, 19007,19007,10992,19007,19007,19007,19007,10993,19007,19007, 10994,19007,10995,19007,10996,19007,10997,10998,10999,10987, 19007,19007,19007,19007,19007,19007,10988,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10989,19007,10990,19007,10991,19007,19007,10992,19007,19007, 19007,19007,10993,15239,19007,10994,19007,10995,19007,10996, 19007,10997,10998,10999,10987,19007,19007,19007,19007,19007, 19007,10988,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10989,19007,10990,19007,10991, 19007,19007,10992,19007,19007,19007,19007,10993,15240,19007, 10994,19007,10995,19007,10996,19007,10997,10998,10999,10987, 19007,19007,19007,19007,19007,19007,10988,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10989,19007,10990,19007,10991,19007,19007,10992,19007,19007, 19007,19007,10993,19007,19007,10994,19007,10995,19007,10996, 19007,10997,10998,10999,10987,19007,19007,19007,19007,19007, 19007,10988,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10989,19007,10990,19007,10991, 19007,19007,10992,19007,19007,19007,19007,10993,13293,19007, 10994,19007,10995,19007,10996,19007,10997,10998,10999,10987, 19007,19007,19007,19007,19007,19007,10988,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10989,19007,10990,15241,10991,19007,19007,10992,19007,19007, 19007,19007,10993,19007,19007,10994,19007,10995,19007,10996, 19007,10997,10998,10999,10987,19007,19007,19007,19007,19007, 19007,10988,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10989,19007,10990,19007,10991, 19007,11788,10992,19007,19007,19007,19007,10993,19007,19007, 10994,19007,10995,19007,10996,15242,10997,10998,10999,10987, 19007,19007,19007,19007,19007,19007,10988,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10989,19007,10990,19007,10991,19007,19007,10992,19007,19007, 19007,15243,10993,19007,19007,10994,19007,10995,19007,10996, 19007,10997,10998,10999,10987,19007,19007,19007,19007,19007, 19007,10988,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11791,19007,10990,19007,10991, 19007,19007,10992,15244,19007,19007,19007,10993,19007,19007, 10994,19007,10995,19007,10996,19007,10997,10998,10999,11792, 10987,19007,19007,19007,19007,19007,19007,10988,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,10989,19007,10990,19007,10991,15245,19007,10992,19007, 19007,19007,19007,10993,19007,19007,10994,19007,10995,19007, 10996,19007,10997,10998,10999,10987,19007,19007,19007,19007, 19007,19007,10988,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10989,19007,10990,19007, 10991,19007,19007,10992,15246,19007,19007,19007,10993,19007, 19007,10994,19007,10995,19007,10996,19007,10997,10998,10999, 10987,19007,19007,19007,19007,19007,19007,10988,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,10989,19007,10990,19007,10991,19007,19007,10992,19007, 19007,19007,19007,10993,15247,19007,10994,19007,10995,19007, 10996,19007,10997,10998,10999, 2525,10238,19007,19007,19007, 19007,10239,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10240,15248,19007,19007, 19007,19007,19007,10241,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10242,19007,10243, 19007,10244,19007,19007,10245,19007,19007,19007,19007,10246, 19007,19007,10247,19007,10248,19007,10249,19007,10250,10251, 10252, 2525, 2526,15255,19007,19007,19007, 1380,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 2527,19007, 3035,19007,19007,19007,19007, 2528, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 2529,19007, 2530,19007, 2532,19007,19007, 2533,19007,19007,19007,19007, 2535,19007,19007, 2536,19007, 2537,19007, 2538,19007, 2539, 2540, 2541,15257,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15258, 19007,19007,19007,19007,19007,19007,15259,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15260,19007,15261,19007,15262,19007,19007,15263,19007,19007, 19007,19007,15264,19007,19007,15265,19007,15266,19007,15267, 19007,15268,15269,15270, 2525,11020,19007,19007,19007,19007, 11021,19007,19007,11022,15271,15271,15271,15271,15271,15271, 15271,15271,15271,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11023,19007,19007,19007,19007, 19007,19007,11024,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11025,19007,11026,19007, 11027,19007,19007,11028,19007,19007,19007,19007,11029,19007, 19007,11030,19007,11031,19007,11032,19007,11033,11836,11035, 11822,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11823,19007,19007,19007,19007,19007,19007,11824, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11825,19007,11826,19007,11827,19007,19007, 11828,19007,19007,19007,19007,11829,19007,15272,11830,19007, 11831,19007,11832,19007,11833,11834,11835,11822,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11823, 19007,19007,19007,19007,19007,15273,11824,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11825,19007,11826,19007,11827,19007,19007,11828,19007,19007, 19007,19007,11829,19007,19007,11830,19007,11831,19007,11832, 19007,11833,11834,11835,11822,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11823,19007,19007,19007, 19007,19007,19007,11824,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12582,19007,11826, 19007,11827,19007,19007,11828,15274,19007,19007,19007,11829, 19007,19007,11830,19007,11831,19007,11832,19007,11833,11834, 11835,12583, 2525,11020,19007,19007,19007,19007,11021,19007, 19007,11022,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11023,19007,19007,19007,19007,19007,19007, 11024,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11025,19007,11026,19007,11027,19007, 19007,11028,19007,19007,19007,19007,11029,19007,19007,11030, 19007,11031,19007,11032,19007,11033,11034,11841, 2525, 3071, 19007,19007,19007,19007, 1712,19007,19007, 3072,19007,19007, 15296,19007, 8903,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3073, 19007, 3648,19007,19007,19007,19007, 3074,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 3075,19007, 3076,19007, 3078,19007,19007, 3079,19007,19007, 19007,19007, 3081,19007,19007, 3082,19007, 3083,19007, 3084, 19007, 3085, 3086, 3087, 2525, 3071,14103,19007,19007,19007, 1712,19007,19007, 3072,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 3073,19007,19007,19007,19007, 19007,19007, 3074,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 3075,19007, 3076,19007, 3078,19007,19007, 3079,19007,19007,19007,19007, 3081,19007, 19007, 3082,19007, 3083,19007, 3084,19007, 3085, 3086, 3087, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007,19007,19007, 19007,10292, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,15309,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,15310,19007,19007,19007,19007,15309,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119,15314,15314,15314,15314, 15314,15314,15314,15314,15314,14135,19007,19007,19007,19007, 19007,19007,15314,15314,15314,15314,15314,15315,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15314,15314, 15314,15314,15314,15314,15317,15317,15317,15317,15317,15317, 15317,15317,15317,15318,19007,19007,19007,19007,19007,19007, 15317,15317,15317,15317,15317,15319,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15317,15317,15317,15317, 15317,15317, 7135,19007,19007,19007,19007,19007,19007,19007, 19007,15320,15320,15320,15320,15320,15320,15320,15320,15320, 19007,19007,19007,19007,19007,19007,19007,15320,15320,15320, 15320,15320,15321,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15320,15320,15320,15320,15320,15320,15323, 15323,15323,15323,15323,15323,15323,15323,15323,14721,19007, 19007,19007,19007,19007,19007,15323,15323,15323,15323,15323, 15324,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15323,15323,15323,15323,15323,15323,15325,15325,15325, 15325,15325,15325,15325,15325,15325,19007,19007,19007,19007, 19007,19007,19007,15325,15325,15325,15325,15325,15326,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15325, 15325,15325,15325,15325,15325,15330,15330,15330,15330,15330, 15330,15330,15330,15330,14730,19007,19007,19007,19007,19007, 19007,15330,15330,15330,15330,15330,15331,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15330,15330,15330, 15330,15330,15330,15332,15332,15332,15332,15332,15332,15332, 15332,15332,19007,19007,19007,19007,19007,19007,19007,15332, 15332,15332,15332,15332,15333,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,15332,15332,15332,15332,15332, 15332,15336,15336,15336,15336,15336,15336,15336,15336,15336, 14739,19007,19007,19007,19007,19007,19007,15336,15336,15336, 15336,15336,15337,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15336,15336,15336,15336,15336,15336,15338, 15338,15338,15338,15338,15338,15338,15338,15338,19007,19007, 19007,19007,19007,19007,19007,15338,15338,15338,15338,15338, 15339,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15338,15338,15338,15338,15338,15338,12011,19007,13436, 13436,13436,13436,13436,13436,13436,13436,13436,13437,19007, 19007,19007,19007,19007,19007,13436,13436,13436,13436,13436, 13438,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,13436,13436,13436,13436,13436,13436,15345,15345,15345, 15345,15345,15345,15345,15345,15345,14752,19007,19007,19007, 19007,19007,19007,15345,15345,15345,15345,15345,15346,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15345, 15345,15345,15345,15345,15345,15347,15347,15347,15347,15347, 15347,15347,15347,15347,19007,19007,19007,19007,19007,19007, 19007,15347,15347,15347,15347,15347,15348,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15347,15347,15347, 15347,15347,15347,13448,13448,13448,13448,13448,13448,13448, 13448,13448,13449,19007,19007,19007,19007,19007,19007,13448, 13448,13448,13448,13448,13450,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,13448,13448,13448,13448,13448, 13448,13445,13445,13445,13445,13445,13445,13445,13445,13445, 11975,19007,19007,19007,19007,19007,19007,13445,13445,13445, 13445,13445,13446,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,13445,13445,13445,13445,13445,13445,15354, 15354,15354,15354,15354,15354,15354,15354,15354,14766,19007, 19007,19007,19007,19007,19007,15354,15354,15354,15354,15354, 15355,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15354,15354,15354,15354,15354,15354,15356,15356,15356, 15356,15356,15356,15356,15356,15356,19007,19007,19007,19007, 19007,19007,19007,15356,15356,15356,15356,15356,15357,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15356, 15356,15356,15356,15356,15356,13464,13464,13464,13464,13464, 13464,13464,13464,13464,13465,19007,19007,19007,19007,19007, 19007,13464,13464,13464,13464,13464,13466,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,13464,13464,13464, 13464,13464,13464,13461,13461,13461,13461,13461,13461,13461, 13461,13461,11989,19007,19007,19007,19007,19007,19007,13461, 13461,13461,13461,13461,13462,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,13461,13461,13461,13461,13461, 13461,15363,15363,15363,15363,15363,15363,15363,15363,15363, 14184,19007,19007,19007,19007,19007,19007,15363,15363,15363, 15363,15363,15364,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15363,15363,15363,15363,15363,15363,15366, 15366,15366,15366,15366,15366,15366,15366,15366,15367,19007, 19007,19007,19007,19007,19007,15366,15366,15366,15366,15366, 15368,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15366,15366,15366,15366,15366,15366,15372,15373,15374, 15375,15375,15375,15375,15375,15375,19007,19007,19007,19007, 19007,19007,19007,13480,13480,13480,13480,13480,13484,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,13480, 13480,13480,13480,13480,13480,15376,15376,15376,15376,15376, 15376,15376,15376,15376,12730,19007,19007,19007,19007,19007, 19007,13478,13478,13478,13478,13478,13479,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,13478,13478,13478, 13478,13478,13478, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,15382,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,15383,19007,19007,19007,19007,15382, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,15387,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 15388,19007,19007,19007,19007,15387,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,15392,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,15393,19007,19007,19007, 19007,15392,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,15397,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,15398,19007,19007,19007,19007,15397,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 15402,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,15403,19007, 19007,19007,19007,15402,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,15407,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,15408,19007,19007,19007,19007,15407, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,15411,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15412,19007,19007,19007,19007,19007, 8419, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15412, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,15414,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,15415,19007,19007,19007,19007,15414,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 15417,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,15418,19007, 19007,19007,19007,15417,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,15423,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,15424,19007,19007,19007,19007,15423, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,15428,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 15429,19007,19007,19007,19007,15428,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,15432,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15433, 19007,19007,19007,19007,19007, 8419, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15433, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 15435,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,15436,19007, 19007,19007,19007,15435,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,15439,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15440,19007,19007,19007,19007,15439, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 14840,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,15444,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,15446,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15447,19007,19007, 19007,19007, 119, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,15447, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15448,19007,19007,19007,19007,15444,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12808, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119,14840, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,15452,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119,14840,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,15453, 19007,19007,19007,19007,15452,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,15456,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15457,19007,19007,19007,19007, 15456,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,15459,15460,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119,19007,19007,19007,19007,19007,19007,19007, 15460, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,15462,15462,15462,15462,15462,15462, 15462,15462, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,15463,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,15463,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 15465,15466,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 19007,19007,19007,19007,19007,19007,19007,15466, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119,12806, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,15469,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119,12806,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,15470, 19007,19007,19007,19007,15469,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,15474,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15475,19007,19007,19007,19007, 15474,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,15479,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15480,19007,19007,19007,19007,15479,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,15484, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 12806,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15485,19007,19007, 19007,19007,15484,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,15488,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15489,19007,19007,19007, 19007,19007,12808, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15489, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,15491,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15492,19007,19007,19007,19007, 15491,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,15494,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15495,19007,19007,19007,19007,15494,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,15500, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 12806,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15501,19007,19007, 19007,19007,15500,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,15505,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15506,19007,19007,19007,19007,15505,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12808, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119,12806, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,15509,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,15510,19007,19007,19007,19007,19007,12808, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15510, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,15512,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15513,19007,19007,19007,19007,15512,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14249, 19007,19007,19007,19007,19007,19007,19007,15514,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119, 12806,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,15516,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 15517,19007,19007,19007,19007,15516,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,15521,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12808, 119, 119, 119, 119, 19007,10415, 119, 119, 119, 119, 119,19007, 119,12806, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15522,19007,19007,19007, 19007,15521,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119, 19007, 119,12806,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,15526,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15527,19007,19007,19007,19007,15526,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 10415, 119, 119, 119, 119, 119,19007, 119,12806,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 15531,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,15532,19007, 19007,19007,19007,15531,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,15536,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15537,19007,19007,19007,19007,15536, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119, 12806,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,15540,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15541,19007,19007,19007,19007,19007,12808, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15541, 119, 119,19007,10415, 119, 119, 119, 119, 119, 19007, 119,12806,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,15543,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15544,19007,19007,19007,19007,15543,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 10415, 119, 119, 119, 119, 119,19007, 119,12806,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 15546,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,15547,19007, 19007,19007,19007,15546,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,15551,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15552,19007,19007,19007,19007,15551, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119, 12806,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,15555,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15556,19007,19007,19007,19007,19007,12808, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15556, 119, 119,19007,10415, 119, 119, 119, 119, 119, 19007, 119,12806,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,15558,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15559,19007,19007,19007,19007,15558,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 10415, 119, 119, 119, 119, 119,19007, 119,10400,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 15561,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,15562,19007, 19007,19007,19007,15561,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119,15565,15565,15565,15565,15565,15565,15565, 15565,15565,14935,19007,19007,19007,19007,19007,19007,15565, 15565,15565,15565,15565,15566,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,15565,15565,15565,15565,15565, 15565,14937,14937,14937,14937,14937,14937,14937,14937,14937, 15567,19007,19007,19007,19007,19007,19007,14937,14937,14937, 14937,14937,14938,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,14937,14937,14937,14937,14937,14937, 6527, 19007,19007,19007,19007,19007,19007,19007,19007,15569,15569, 15569,15569,15569,15569,15569,15569,15569,19007,19007,19007, 19007,19007,19007,19007,15569,15569,15569,15569,15569,15570, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15569,15569,15569,15569,15569,15569,15572,15572,15572,15572, 15572,15572,15572,15572,15572,14332,19007,19007,19007,19007, 19007,19007,15572,15572,15572,15572,15572,15573,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15572,15572, 15572,15572,15572,15572,15575,15575,15575,15575,15575,15575, 15575,15575,15575,19007,19007,19007,19007,19007,19007,19007, 15575,15575,15575,15575,15575,15576,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15575,15575,15575,15575, 15575,15575,15579,15579,15579,15579,15579,15579,15579,15579, 15579,14341,19007,19007,19007,19007,19007,19007,15579,15579, 15579,15579,15579,15580,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,15579,15579,15579,15579,15579,15579, 15582,15582,15582,15582,15582,15582,15582,15582,15582,19007, 19007,19007,19007,19007,19007,19007,15582,15582,15582,15582, 15582,15583,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,15582,15582,15582,15582,15582,15582,15585,15586, 15587,15588,15588,15588,15588,15588,15588,19007,19007,19007, 19007,19007,19007,19007,13685,13685,13685,13685,13685,13686, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 13685,13685,13685,13685,13685,13685,15589,15589,15589,15589, 15589,15589,15589,15589,15589,14350,19007,19007,19007,19007, 19007,19007,15589,15589,15589,15589,15589,15590,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15589,15589, 15589,15589,15589,15589,15592,15592,15592,15592,15592,15592, 15592,15592,15592,19007,19007,19007,19007,19007,19007,19007, 15592,15592,15592,15592,15592,15593,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15592,15592,15592,15592, 15592,15592,15595,15596,15597,15598,15598,15598,15598,15598, 15598,19007,19007,19007,19007,19007,19007,19007,13692,13692, 13692,13692,13692,13693,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,13692,13692,13692,13692,13692,13692, 11375,19007,15599,15599,15599,15599,15599,15599,15599,15599, 15599,12897,19007,19007,19007,19007,19007,19007,13690,13690, 13690,13690,13690,13691,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,13690,13690,13690,13690,13690,13690, 15600,15600,15600,15600,15600,15600,15600,15600,15600,14363, 19007,19007,19007,19007,19007,19007,15600,15600,15600,15600, 15600,15601,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,15600,15600,15600,15600,15600,15600,15603,15603, 15603,15603,15603,15603,15603,15603,15603,19007,19007,19007, 19007,19007,19007,19007,15603,15603,15603,15603,15603,15604, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15603,15603,15603,15603,15603,15603,15606,15607,15608,15609, 15609,15609,15609,15609,15609,19007,19007,19007,19007,19007, 19007,19007,13700,13700,13700,13700,13700,13701,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,13700,13700, 13700,13700,13700,13700,15610,15610,15610,15610,15610,15610, 15610,15610,15610,12909,19007,19007,19007,19007,19007,19007, 13698,13698,13698,13698,13698,13699,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,13698,13698,13698,13698, 13698,13698,15611,15611,15611,15611,15611,15611,15611,15611, 15611,14377,19007,19007,19007,19007,19007,19007,15611,15611, 15611,15611,15611,15612,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,15611,15611,15611,15611,15611,15611, 15614,15614,15614,15614,15614,15614,15614,15614,15614,19007, 19007,19007,19007,19007,19007,19007,15614,15614,15614,15614, 15614,15615,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,15614,15614,15614,15614,15614,15614,15617,15618, 15619,15620,15620,15620,15620,15620,15620,19007,19007,19007, 19007,19007,19007,19007,13711,13711,13711,13711,13711,13712, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 13711,13711,13711,13711,13711,13711,15621,15621,15621,15621, 15621,15621,15621,15621,15621,12925,19007,19007,19007,19007, 19007,19007,13709,13709,13709,13709,13709,13710,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,13709,13709, 13709,13709,13709,13709,15622,15622,15622,15622,15622,15622, 15622,15622,15622,14984,19007,19007,19007,19007,19007,19007, 15622,15622,15622,15622,15622,15623,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15622,15622,15622,15622, 15622,15622,15624,15624,15624,15624,15624,15624,15624,15624, 15624,19007,19007,19007,19007,19007,19007,19007,15624,15624, 15624,15624,15624,15625,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,15624,15624,15624,15624,15624,15624, 13724,13724,13724,13724,13724,13724,13724,13724,13724,13725, 19007,19007,19007,19007,19007,19007,13724,13724,13724,13724, 13724,13726,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,13724,13724,13724,13724,13724,13724,13721,13721, 13721,13721,13721,13721,13721,13721,13721,12185,19007,19007, 19007,19007,19007,19007,13721,13721,13721,13721,13721,13722, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 13721,13721,13721,13721,13721,13721, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,14999, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 9811,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15000,19007,19007, 19007,19007,14999,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,15633,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15634,19007,19007,19007,19007,15633,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,15638,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,15639, 19007,19007,19007,19007,15638,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,15643,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,15644,19007,19007,19007,19007, 15643,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 1265,19007,19007,19007,14462,19007,14462,19007,19007,15074, 15074,15074,15074,15074,15074,15074,15074,15074,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1266,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,14464,19007,19007,14465, 1004, 1004,19007, 2805, 1004, 1004, 1004, 1004, 1004,19007, 1004, 1004,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 1004, 1004, 1004, 1004, 1004, 1004, 1004,19007,19007, 19007,19007,19007,13811,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 1004, 1004,14471, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,15672,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,15673, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,15674,19007, 19007,19007,19007,15672,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,15673, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 15684,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945, 19007,19007,19007,15685, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,15686,19007,19007,19007,19007,15684,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 15685, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007, 19007,19007,19007,19007,15695,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8592, 5945, 5945,19007,19007,19007,15696, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,15697,19007,19007,19007, 19007,15695,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,15696, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,15705,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007, 19007,15706, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 15707,19007,19007,19007,19007,15705,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8592, 5945, 5945,19007,19007,19007,15706, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007, 19007,19007,15714,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,15715, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,15716,19007,19007,19007,19007,15714, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007, 19007,19007,15715, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,15722,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,15723, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,15724,19007, 19007,19007,19007,15722,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,15723, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 15728,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15729,19007,19007,19007,19007,19007, 8592, 5945, 5945, 19007,19007,19007,15730,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15729, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007, 19007,19007,15732,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,15733, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,15734,19007,19007,19007,19007,15732, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007, 19007,19007,15733, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,15739,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 5945, 5945, 5945,19007,19007,19007,15740, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,15741,19007, 19007,19007,19007,15739,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007,15740, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 15750,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945, 19007,19007,19007,15751, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,15752,19007,19007,19007,19007,15750,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 15751, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007, 19007,19007,19007,19007,15758,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8592, 5945, 5945,19007,19007,19007,15759, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,15760,19007,19007,19007, 19007,15758,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,15759, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,15764,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15765, 19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007, 19007,15766,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15765, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 15768,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945, 19007,19007,19007,15769, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,15770,19007,19007,19007,19007,15768,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 15769,15779,19007,19007,19007,19007,19007,19007,19007,19007, 15167,15167,15167,15167,15167,15167,15167,15167,15167,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 6644,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 6645, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,13816,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007, 19007,13817,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15781, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5947, 5945, 5945,15783, 5945, 5945, 5945,19007,19007,19007,19007, 19007, 5948,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007, 5949,11610,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11611,19007,19007,19007, 19007,19007,19007,19007,19007,15784, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,15801, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,15802,19007, 19007,19007,19007,15801,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119,15805,15805,15805,15805,15805,15805, 15805,15805,15805,19007,19007,19007,19007,19007,19007,19007, 15805,15805,15805,15805,15805,15806,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15805,15805,15805,15805, 15805,15805, 2525,15852,19007,19007,19007,19007,10239,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10240,19007,19007,19007,19007,19007,19007, 10241,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10242,19007,10243,19007,10244,19007, 19007,10245,19007,19007,19007,19007,10246,19007,19007,10247, 19007,10248,19007,10249,19007,10250,10251,10252, 2525,10238, 19007,19007,19007,19007,10239,19007,19007,19007,15853,15853, 15853,15853,15853,15853,15853,15853,15853,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10240, 19007,19007,19007,19007,19007,19007,10241,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10242,19007,10243,19007,10244,19007,19007,10245,19007,19007, 19007,19007,10246,19007,19007,10247,19007,10248,19007,10249, 19007,10250,10251,10252,10987,15854,19007,19007,19007,19007, 19007,10988,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10989,19007,10990,19007,10991, 19007,19007,10992,19007,19007,19007,19007,10993,19007,19007, 10994,19007,10995,19007,10996,19007,10997,10998,10999,10987, 19007,19007,19007,19007,19007,19007,10988,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10989,19007,10990,19007,10991,19007,19007,10992,19007,19007, 19007,19007,15855,19007,19007,10994,19007,10995,19007,10996, 19007,10997,10998,10999,10987,19007,19007,19007,19007,19007, 19007,10988,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10989,15856,10990,19007,10991, 19007,19007,10992,19007,19007,19007,19007,10993,19007,19007, 10994,19007,10995,19007,10996,19007,10997,10998,10999,10987, 19007,19007,19007,19007,19007,19007,10988,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10989,19007,10990,19007,10991,19007,19007,10992,19007,19007, 19007,19007,10993,15857,19007,10994,19007,10995,19007,10996, 19007,10997,10998,10999,10987,19007,19007,19007,19007,19007, 19007,10988,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10989,19007,10990,19007,10991, 19007,19007,10992,15858,19007,19007,19007,10993,19007,19007, 10994,19007,10995,19007,10996,19007,10997,10998,10999,10987, 19007,19007,19007,19007,19007,19007,10988,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10989,19007,10990,19007,10991,19007,19007,10992,19007,19007, 19007,19007,10993,15859,19007,10994,19007,10995,19007,10996, 19007,10997,10998,10999,10987,19007,19007,19007,19007,19007, 19007,10988,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10989,19007,10990,19007,10991, 19007,19007,10992,19007,19007,19007,19007,10993,19007,19007, 10994,19007,10995,19007,10996,15860,10997,10998,10999,10237, 10237,10237,10237,10237,10237,10237,10237,10237,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11006,19007,19007,19007,19007,19007,19007,19007,15862, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11007, 2525, 2526,19007,19007, 19007,19007, 1380,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 2527,19007,19007, 19007,19007,19007,19007, 2528,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 2529,19007, 2530,19007, 2532,19007,19007, 2533,19007,19007,19007,19007, 2535,19007,19007, 2536,19007, 2537,19007, 2538,19007, 2539, 2540, 2541,15257,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,15258,19007,19007,19007,19007,19007, 19007,15259,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,15260,19007,15261,19007,15262, 19007,19007,15263,19007,19007,19007,19007,15264,19007,19007, 15265,19007,15266,19007,15267,19007,15268,15269,15270,15257, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15258,19007,19007,19007,19007,19007,19007,15259,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,15260,19007,15261,19007,15262,19007,19007,15263, 19007,19007,19007,19007,15264,19007,19007,15265,19007,15266, 19007,15267,19007,15268,15865,15270,15257,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15866,19007,19007,19007,19007,15258,19007, 19007,19007,19007,19007,19007,15259,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15260, 19007,15261,19007,15262,19007,19007,15263,19007,19007,19007, 19007,15264,19007,19007,15265,19007,15266,19007,15267,19007, 15268,15269,15270,15257,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,15258,19007,19007,19007,19007, 19007,19007,15259,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15260,19007,15261,19007, 15262,19007,19007,15263,19007,19007,19007,19007,15264,19007, 19007,15265,19007,15266,19007,15267,19007,15268,15269,15270, 15867,15257,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15258,19007,19007,19007,19007,19007,19007, 15259,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,15260,19007,15261,15868,15262,19007, 19007,15263,19007,19007,19007,19007,15264,19007,19007,15265, 19007,15266,19007,15267,19007,15268,15269,15270,15257,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15258,19007,19007,19007,19007,19007,19007,15259,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15260,19007,15261,19007,15262,19007,15869,15263,19007, 19007,19007,19007,15264,19007,19007,15265,19007,15266,19007, 15267,19007,15268,15269,15270,15257,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15258,19007,19007, 19007,19007,19007,19007,15259,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15260,19007, 15261,19007,15262,19007,19007,15263,19007,19007,19007,19007, 15264,19007,19007,15265,19007,15266,19007,15267,19007,15268, 15269,15870,15257,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,15258,19007,19007,19007,19007,19007, 19007,15259,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,15260,19007,15261,19007,15262, 19007,19007,15263,19007,19007,19007,19007,15264,19007,15871, 15265,19007,15266,19007,15267,19007,15268,15269,15270,15257, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15258,19007,19007,19007,19007,19007,19007,15259,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,15872,19007,15261,19007,15262,19007,19007,15263, 19007,19007,19007,19007,15264,19007,19007,15265,19007,15266, 19007,15267,19007,15268,15269,15270,15873,15257,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15258, 19007,19007,19007,19007,19007,19007,15259,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15260,19007,15261,19007,15262,19007,19007,15874,19007,19007, 19007,19007,15875,19007,19007,15265,19007,15266,19007,15267, 19007,15268,15269,15270,15257,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15258,19007,19007,19007, 19007,19007,19007,15259,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15260,19007,15261, 19007,15262,19007,19007,15263,19007,19007,19007,19007,15264, 19007,15876,15265,19007,15266,19007,15267,19007,15268,15269, 15270,15257,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15258,19007,19007,19007,19007,19007,19007, 15259,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,15260,19007,15261,19007,15262,19007, 19007,15263,19007,19007,19007,19007,15264,19007,19007,15265, 19007,15266,19007,15267,19007,15268,15269,15270,15877,15878, 19007,15257,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15258,19007,19007,19007,19007,19007,19007, 15259,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,15260,19007,15261,19007,15262,19007, 19007,15263,19007,19007,19007,19007,15264,19007,19007,15265, 19007,15266,19007,15267,19007,15268,15269,15270,15257,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15258,19007,19007,19007,19007,19007,19007,15259,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15260,19007,15261,19007,15879,19007,19007,15263,19007, 19007,19007,19007,15264,19007,19007,15880,19007,15266,19007, 15267,19007,15268,15269,15270,15257,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15258,19007,19007, 19007,19007,19007,19007,15259,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15881,19007, 15261,19007,15262,19007,19007,15263,19007,19007,19007,19007, 15264,19007,19007,15265,19007,15266,19007,15267,19007,15268, 15269,15270, 2525,11020,15882,19007,19007,19007,11021,19007, 15883,11022,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11023,19007,19007,19007,19007,19007,19007, 11024,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11025,19007,11026,19007,11027,19007, 19007,11028,19007,19007,19007,19007,11029,19007,19007,11030, 19007,11031,19007,11032,19007,11033,11034,11035,11822,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11823,19007,19007,19007,19007,19007,19007,11824,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11825,19007,11826,19007,11827,19007,15884,11828,19007, 19007,19007,19007,11829,19007,19007,11830,19007,11831,19007, 11832,19007,11833,11834,11835,11822,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11823,19007,19007, 19007,19007,19007,19007,11824,19007,15885,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11825,19007, 11826,19007,11827,19007,19007,11828,19007,19007,19007,19007, 11829,19007,19007,11830,19007,11831,19007,11832,19007,11833, 11834,11835,11822,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11823,19007,19007,19007,19007,19007, 19007,11824,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11825,19007,11826,19007,11827, 19007,19007,11828,19007,19007,19007,19007,11829,15886,19007, 11830,19007,11831,19007,11832,19007,11833,11834,11835,11822, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11823,19007,19007,19007,19007,19007,19007,11824,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11825,19007,11826,19007,11827,19007,19007,11828, 19007,19007,19007,19007,11829,15887,19007,11830,19007,11831, 19007,11832,19007,11833,11834,11835,11822,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11823,19007, 19007,19007,19007,19007,19007,11824,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11825, 19007,11826,19007,11827,19007,19007,11828,19007,19007,19007, 19007,11829,19007,19007,11830,19007,11831,19007,11832,19007, 11833,12575,11835,11822,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11823,19007,19007,19007,19007, 19007,19007,11824,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11825,19007,11826,19007, 11827,19007,19007,11828,19007,19007,19007,19007,11829,14077, 19007,11830,19007,11831,19007,11832,19007,11833,11834,11835, 11822,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11823,19007,19007,19007,19007,19007,19007,11824, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11825,19007,11826,15888,11827,19007,19007, 11828,19007,19007,19007,19007,11829,19007,19007,11830,19007, 11831,19007,11832,19007,11833,11834,11835,11822,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11823, 19007,19007,19007,19007,19007,19007,11824,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11825,19007,11826,19007,11827,19007,12579,11828,19007,19007, 19007,19007,11829,19007,19007,11830,19007,11831,19007,11832, 15889,11833,11834,11835, 2525,11020,19007,19007,19007,19007, 11021,19007,19007,11022,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11023,19007,19007,19007,19007, 19007,19007,11024,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11025,19007,11026,19007, 11027,19007,19007,11028,15895,19007,19007,19007,11029,19007, 19007,11030,19007,11031,19007,11032,19007,11033,11034,11035, 2525, 3071,19007,19007,19007,19007, 1712,19007,19007, 3072, 15903,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 3073,19007,19007,19007,19007,19007,19007, 3074,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3075,19007, 3076,19007, 3078,19007,19007, 3079, 19007,19007,19007,19007, 3081,19007,19007, 3082,19007, 3083, 19007, 3084,19007, 3085, 3086, 3087, 2525, 3071,15904,19007, 19007,19007, 1712,19007,19007, 3072,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 3073,19007, 3648, 19007,19007,19007,19007, 3074,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3075,19007, 3076,19007, 3078,19007,19007, 3079,19007,19007,19007,19007, 3081,19007,19007, 3082,19007, 3083,19007, 3084,19007, 3085, 3086, 3087, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10292, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,15309,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 8417,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10292, 119, 119, 119, 119, 119, 119,15310,19007,19007,19007,19007,15309,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119,15913,15913, 15913,15913,15913,15913,15913,15913,15913,15318,19007,19007, 19007,19007,19007,19007,15913,15913,15913,15913,15913,15914, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15913,15913,15913,15913,15913,15913,15320,15320,15320,15320, 15320,15320,15320,15320,15320,15915,19007,19007,19007,19007, 19007,19007,15320,15320,15320,15320,15320,15321,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15320,15320, 15320,15320,15320,15320, 7135,19007,19007,19007,19007,19007, 19007,19007,19007,15917,15917,15917,15917,15917,15917,15917, 15917,15917,19007,19007,19007,19007,19007,19007,19007,15917, 15917,15917,15917,15917,15918,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,15917,15917,15917,15917,15917, 15917,15920,15920,15920,15920,15920,15920,15920,15920,15920, 14721,19007,19007,19007,19007,19007,19007,15920,15920,15920, 15920,15920,15921,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15920,15920,15920,15920,15920,15920,15923, 15923,15923,15923,15923,15923,15923,15923,15923,19007,19007, 19007,19007,19007,19007,19007,15923,15923,15923,15923,15923, 15924,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15923,15923,15923,15923,15923,15923,15927,15927,15927, 15927,15927,15927,15927,15927,15927,14730,19007,19007,19007, 19007,19007,19007,15927,15927,15927,15927,15927,15928,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15927, 15927,15927,15927,15927,15927,15930,15930,15930,15930,15930, 15930,15930,15930,15930,19007,19007,19007,19007,19007,19007, 19007,15930,15930,15930,15930,15930,15931,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15930,15930,15930, 15930,15930,15930,15933,15934,15935,15936,15936,15936,15936, 15936,15936,19007,19007,19007,19007,19007,19007,19007,14144, 14144,14144,14144,14144,14145,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,14144,14144,14144,14144,14144, 14144,15937,15937,15937,15937,15937,15937,15937,15937,15937, 14739,19007,19007,19007,19007,19007,19007,15937,15937,15937, 15937,15937,15938,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15937,15937,15937,15937,15937,15937,15940, 15940,15940,15940,15940,15940,15940,15940,15940,19007,19007, 19007,19007,19007,19007,19007,15940,15940,15940,15940,15940, 15941,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15940,15940,15940,15940,15940,15940,15943,15944,15945, 15946,15946,15946,15946,15946,15946,19007,19007,19007,19007, 19007,19007,19007,14151,14151,14151,14151,14151,14152,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,14151, 14151,14151,14151,14151,14151,12011,19007,15947,15947,15947, 15947,15947,15947,15947,15947,15947,13437,19007,19007,19007, 19007,19007,19007,14149,14149,14149,14149,14149,14150,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,14149, 14149,14149,14149,14149,14149,15948,15948,15948,15948,15948, 15948,15948,15948,15948,14752,19007,19007,19007,19007,19007, 19007,15948,15948,15948,15948,15948,15949,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15948,15948,15948, 15948,15948,15948,15951,15951,15951,15951,15951,15951,15951, 15951,15951,19007,19007,19007,19007,19007,19007,19007,15951, 15951,15951,15951,15951,15952,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,15951,15951,15951,15951,15951, 15951,15954,15955,15956,15957,15957,15957,15957,15957,15957, 19007,19007,19007,19007,19007,19007,19007,14159,14159,14159, 14159,14159,14160,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,14159,14159,14159,14159,14159,14159,15958, 15958,15958,15958,15958,15958,15958,15958,15958,13449,19007, 19007,19007,19007,19007,19007,14157,14157,14157,14157,14157, 14158,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,14157,14157,14157,14157,14157,14157,15959,15959,15959, 15959,15959,15959,15959,15959,15959,14766,19007,19007,19007, 19007,19007,19007,15959,15959,15959,15959,15959,15960,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15959, 15959,15959,15959,15959,15959,15962,15962,15962,15962,15962, 15962,15962,15962,15962,19007,19007,19007,19007,19007,19007, 19007,15962,15962,15962,15962,15962,15963,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15962,15962,15962, 15962,15962,15962,15965,15966,15967,15968,15968,15968,15968, 15968,15968,19007,19007,19007,19007,19007,19007,19007,14170, 14170,14170,14170,14170,14171,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,14170,14170,14170,14170,14170, 14170,15969,15969,15969,15969,15969,15969,15969,15969,15969, 13465,19007,19007,19007,19007,19007,19007,14168,14168,14168, 14168,14168,14169,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,14168,14168,14168,14168,14168,14168,15970, 15970,15970,15970,15970,15970,15970,15970,15970,15367,19007, 19007,19007,19007,19007,19007,15970,15970,15970,15970,15970, 15971,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15970,15970,15970,15970,15970,15970,15972,15972,15972, 15972,15972,15972,15972,15972,15972,19007,19007,19007,19007, 19007,19007,19007,15972,15972,15972,15972,15972,15973,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15972, 15972,15972,15972,15972,15972,14183,14183,14183,14183,14183, 14183,14183,14183,14183,14184,19007,19007,19007,19007,19007, 19007,14183,14183,14183,14183,14183,14185,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,14183,14183,14183, 14183,14183,14183,14180,14180,14180,14180,14180,14180,14180, 14180,14180,12730,19007,19007,19007,19007,19007,19007,14180, 14180,14180,14180,14180,14181,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,14180,14180,14180,14180,14180, 14180, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119,10400,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,15382,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,15383,19007,19007,19007,19007,15382,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 15981,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,15982,19007, 19007,19007,19007,15981,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,15986,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,15987,19007,19007,19007,19007,15986, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,15991,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 15992,19007,19007,19007,19007,15991,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,15998,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 12806,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,16000,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 16001,19007,19007,19007,19007,16000,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16005,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12808, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119,14840, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16006,19007,19007,19007, 19007,16005,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,16008,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16009,19007,19007,19007,19007,16008,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 16011,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,16012,19007,19007,19007,19007, 119, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,16012, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,16016,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16017,19007,19007,19007,19007,16016,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16021, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 14840,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16022,19007,19007, 19007,19007,16021,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,16025,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16026,19007,19007,19007,19007,16025,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12808, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119,14840, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,16028,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,16029,19007,19007,12808, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,16029, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16031,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,16032,16032, 16032,16032,16032,16032,16032,16032,16032, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16031, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119,14259, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 14840,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,16035,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 16036,19007,19007,19007,19007,16035,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16038,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,16039,19007,19007,12808, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,16039, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,16041,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16042,19007,19007,19007,19007,16041,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16046, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16047,19007,19007, 19007,19007,16046,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3098, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,14836,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16053,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12808, 119, 119, 119, 119, 19007,10415, 119, 119, 119, 119, 119,19007, 119,12806, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16054,19007,19007,19007, 19007,16053,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119, 19007, 119,12806,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,16058,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16059,19007,19007,19007,19007,16058,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 10415, 119, 119, 119, 119, 119,19007, 119,10400,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 15561,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,10400,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7157, 119, 119, 119, 119, 119, 119,15562,19007, 19007,19007,19007,15561,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119,16063,16063,16063,16063,16063,16063,16063, 16063,16063,14935,19007,19007,19007,19007,19007,19007,16063, 16063,16063,16063,16063,16064,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,16063,16063,16063,16063,16063, 16063, 6527,19007,19007,19007,19007,19007,19007,19007,19007, 16066,16066,16066,16066,16066,16066,16066,16066,16066,19007, 19007,19007,19007,19007,19007,19007,16066,16066,16066,16066, 16066,16067,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,16066,16066,16066,16066,16066,16066,16069,16069, 16069,16069,16069,16069,16069,16069,16069,19007,19007,19007, 19007,19007,19007,19007,16069,16069,16069,16069,16069,16070, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 16069,16069,16069,16069,16069,16069,16072,16073,16074,16075, 16075,16075,16075,16075,16075,14328,19007,19007,19007,19007, 19007,19007,14327,14327,14327,14327,14327,14329,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,14327,14327, 14327,14327,14327,14327,16076,16076,16076,16076,16076,16076, 16076,16076,16076,19007,19007,19007,19007,19007,19007,19007, 16076,16076,16076,16076,16076,16077,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,16076,16076,16076,16076, 16076,16076,11375,19007,14340,14340,14340,14340,14340,14340, 14340,14340,14340,14341,19007,19007,19007,19007,19007,19007, 14340,14340,14340,14340,14340,14342,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,14340,14340,14340,14340, 14340,14340,16082,16082,16082,16082,16082,16082,16082,16082, 16082,19007,19007,19007,19007,19007,19007,19007,16082,16082, 16082,16082,16082,16083,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,16082,16082,16082,16082,16082,16082, 14349,14349,14349,14349,14349,14349,14349,14349,14349,14350, 19007,19007,19007,19007,19007,19007,14349,14349,14349,14349, 14349,14351,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,14349,14349,14349,14349,14349,14349,14346,14346, 14346,14346,14346,14346,14346,14346,14346,12897,19007,19007, 19007,19007,19007,19007,14346,14346,14346,14346,14346,14347, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 14346,14346,14346,14346,14346,14346,16088,16088,16088,16088, 16088,16088,16088,16088,16088,19007,19007,19007,19007,19007, 19007,19007,16088,16088,16088,16088,16088,16089,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,16088,16088, 16088,16088,16088,16088,14362,14362,14362,14362,14362,14362, 14362,14362,14362,14363,19007,19007,19007,19007,19007,19007, 14362,14362,14362,14362,14362,14364,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,14362,14362,14362,14362, 14362,14362,14359,14359,14359,14359,14359,14359,14359,14359, 14359,12909,19007,19007,19007,19007,19007,19007,14359,14359, 14359,14359,14359,14360,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,14359,14359,14359,14359,14359,14359, 16094,16094,16094,16094,16094,16094,16094,16094,16094,19007, 19007,19007,19007,19007,19007,19007,16094,16094,16094,16094, 16094,16095,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,16094,16094,16094,16094,16094,16094,14376,14376, 14376,14376,14376,14376,14376,14376,14376,14377,19007,19007, 19007,19007,19007,19007,14376,14376,14376,14376,14376,14378, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 14376,14376,14376,14376,14376,14376,14373,14373,14373,14373, 14373,14373,14373,14373,14373,12925,19007,19007,19007,19007, 19007,19007,14373,14373,14373,14373,14373,14374,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,14373,14373, 14373,14373,14373,14373,16100,16100,16100,16100,16100,16100, 16100,16100,16100,14984,19007,19007,19007,19007,19007,19007, 16100,16100,16100,16100,16100,16101,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,16100,16100,16100,16100, 16100,16100,16103,16103,16103,16103,16103,16103,16103,16103, 16103,19007,19007,19007,19007,19007,19007,19007,16103,16103, 16103,16103,16103,16104,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,16103,16103,16103,16103,16103,16103, 16106,16107,16108,16109,16109,16109,16109,16109,16109,19007, 19007,19007,19007,19007,19007,19007,14389,14389,14389,14389, 14389,14390,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,14389,14389,14389,14389,14389,14389,16110,16110, 16110,16110,16110,16110,16110,16110,16110,13725,19007,19007, 19007,19007,19007,19007,14387,14387,14387,14387,14387,14388, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 14387,14387,14387,14387,14387,14387, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16112, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16113,19007,19007, 19007,19007,16112,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 19007,19007,19007,19007,19007,15672,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8592, 5945, 5945,19007,19007,19007,15673, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 10685,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,15674,19007,19007, 19007,19007,15672,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,15673, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,16139, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007, 19007,19007,16140, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,16141,19007,19007,19007,19007,16139,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,16140, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007, 19007,19007,19007,16151,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,16152, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,16153,19007,19007,19007,19007, 16151,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945, 19007,19007,19007,16152, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,16161,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007, 16162, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,16163, 19007,19007,19007,19007,16161,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5945, 5945, 5945,19007,19007,19007,16162, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945, 5945, 5945, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007, 19007,16175,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945,19007,19007,16176, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,13816,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007, 19007,13817,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,16178,11610,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11611, 16180, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,16195,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16196,19007,19007,19007,19007,16195,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119,16199, 16199,16199,16199,16199,16199,16199,16199,16199,19007,19007, 19007,19007,19007,19007,19007,16199,16199,16199,16199,16199, 16200,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,16199,16199,16199,16199,16199,16199, 2525,10984,19007, 19007,19007,19007,10985,19007,19007,19007,16241,16241,16241, 16241,16241,16241,16241,16241,16241, 2525,10238,19007,19007, 19007,19007,10239,19007,19007,19007,19007,19007,19007,19007, 16242,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10240,19007,10986, 19007,19007,19007,19007,10241,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10242,19007, 10243,19007,10244,19007,19007,10245,19007,19007,19007,19007, 10246,19007,19007,10247,19007,10248,19007,10249,19007,10250, 10251,10252, 2525,10238,15236,19007,19007,19007,10239,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10240,19007,19007,19007,19007,19007,19007, 10241,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10242,19007,10243,19007,10244,19007, 19007,10245,19007,19007,19007,19007,10246,19007,19007,10247, 19007,10248,19007,10249,19007,10250,10251,10252,10987,19007, 19007,16243,19007,19007,19007,10988,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10989, 19007,10990,19007,10991,19007,19007,10992,19007,19007,19007, 19007,10993,19007,19007,10994,19007,10995,19007,10996,19007, 10997,10998,10999,10987,19007,19007,19007,19007,19007,19007, 10988,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11791,19007,10990,19007,10991,19007, 19007,10992,16244,19007,19007,19007,10993,19007,19007,10994, 19007,10995,19007,10996,19007,10997,10998,10999,11792,10987, 19007,19007,19007,19007,19007,19007,10988,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10989,19007,10990,19007,14044,19007,19007,10992,19007,19007, 19007,19007,10993,19007,19007,10994,19007,10995,19007,10996, 19007,10997,10998,10999,16245,14641,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10987,19007,19007, 19007,19007,19007,19007,10988,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10989,19007, 10990,19007,10991,19007,19007,10992,19007,19007,19007,19007, 10993,19007,19007,10994,19007,10995,19007,10996,19007,10997, 10998,10999,10987,19007,19007,19007,19007,19007,19007,10988, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10989,19007,10990,19007,10991,19007,15859, 10992,19007,19007,19007,19007,10993,19007,19007,10994,19007, 10995,19007,10996,19007,10997,10998,10999,16245,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10987,19007,19007,19007,19007,19007,19007,10988,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,10989,19007,10990,19007,10991,19007,19007,10992,19007, 19007,19007,19007,10993,19007,19007,10994,19007,10995,19007, 10996,19007,10997,10998,10999,10987,19007,19007,19007,19007, 19007,19007,10988,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10989,19007,10990,19007, 10991,19007,19007,10992,19007,19007,19007,19007,10993,19007, 19007,16246,19007,10995,19007,10996,19007,10997,10998,10999, 15257,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,15258,19007,19007,19007,19007,19007,19007,15259, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15260,19007,15261,19007,15879,19007,19007, 15263,19007,19007,19007,19007,15264,19007,19007,16250,19007, 15266,19007,15267,19007,15268,15269,15270,15257,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15258, 19007,19007,16251,19007,19007,19007,15259,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15260,19007,15261,19007,15262,19007,19007,15263,19007,19007, 19007,19007,15264,19007,19007,15265,19007,15266,19007,15267, 19007,15268,15269,15270,15257,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,16252,19007,19007,19007,19007,15258,19007,19007,19007, 19007,19007,19007,15259,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,16253,19007,15261, 19007,15262,19007,19007,15263,19007,19007,19007,19007,15264, 19007,19007,15265,19007,15266,19007,15267,19007,15268,15269, 15270,15257,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15258,19007,19007,19007,19007,19007,19007, 15259,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,15260,19007,15261,19007,15262,19007, 19007,15263,19007,19007,19007,19007,16254,19007,19007,15265, 19007,15266,19007,15267,19007,15268,15269,15270,15257,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15258,19007,19007,19007,19007,19007,19007,15259,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15260,19007,15261,19007,15262,19007,19007,15263,16255, 19007,19007,19007,15264,19007,19007,15265,19007,15266,19007, 15267,19007,15268,15269,15270,15257,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15258,19007,19007, 19007,19007,19007,19007,15259,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15881,19007, 15261,19007,15262,19007,19007,15263,19007,19007,19007,19007, 15264,19007,19007,15265,19007,15266,19007,16256,19007,15268, 15269,15270,15257,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,15258,19007,19007,19007,19007,19007, 19007,15259,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,15260,19007,15261,19007,15262, 19007,19007,15263,19007,19007,19007,19007,15264,19007,19007, 15265,19007,16257,19007,15267,19007,15268,15269,15270,15257, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15258,19007,19007,19007,19007,19007,19007,15259,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,15260,19007,15261,15868,15262,19007,19007,15263, 16258,19007,19007,19007,15264,19007,19007,15265,19007,15266, 19007,15267,19007,15268,15269,15270, 2525,16267,19007,19007, 19007,19007,11021,19007,19007,11022,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11023,19007,19007, 19007,19007,19007,19007,11024,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11025,19007, 11026,19007,11027,19007,19007,11028,19007,19007,19007,19007, 11029,19007,19007,11030,19007,11031,19007,11032,19007,11033, 11034,11035, 2525,11020,19007,19007,19007,19007,11021,19007, 19007,11022,16268,16268,16268,16268,16268,16268,16268,16268, 16268,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11023,19007,19007,19007,19007,19007,19007, 11024,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11025,19007,11026,19007,11027,19007, 19007,11028,19007,19007,19007,19007,11029,19007,19007,11030, 19007,11031,19007,11032,19007,11033,11034,11035,11822,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11823,19007,19007,19007,19007,19007,19007,11824,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11825,19007,11826,19007,11827,19007,19007,11828,16269, 19007,19007,19007,11829,19007,19007,11830,19007,11831,19007, 11832,19007,11833,11834,11835,11822,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11823,16270,19007, 19007,19007,19007,19007,11824,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11825,19007, 11826,19007,11827,19007,19007,11828,19007,19007,19007,19007, 11829,19007,19007,11830,19007,11831,19007,11832,19007,11833, 11834,11835,11822,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11823,19007,19007,19007,19007,19007, 19007,11824,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11825,19007,11826,19007,11827, 19007,19007,11828,19007,19007,19007,19007,16271,19007,19007, 11830,19007,11831,19007,11832,19007,11833,11834,11835,11822, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11823,19007,19007,19007,19007,19007,19007,11824,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11825,16272,11826,19007,11827,19007,19007,11828, 19007,19007,19007,19007,11829,19007,19007,11830,19007,11831, 19007,11832,19007,11833,11834,11835,11822,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11823,19007, 19007,19007,19007,19007,19007,11824,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11825, 19007,11826,19007,11827,19007,19007,11828,19007,19007,19007, 19007,11829,16273,19007,11830,19007,11831,19007,11832,19007, 11833,11834,11835,11822,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11823,19007,19007,19007,19007, 19007,19007,11824,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11825,19007,11826,19007, 11827,19007,19007,11828,16274,19007,19007,19007,11829,19007, 19007,11830,19007,11831,19007,11832,19007,11833,11834,11835, 11822,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11823,19007,19007,19007,19007,19007,19007,11824, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11825,19007,11826,19007,11827,19007,19007, 11828,19007,19007,19007,19007,11829,16275,19007,11830,19007, 11831,19007,11832,19007,11833,11834,11835,11822,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11823, 19007,19007,19007,19007,19007,19007,11824,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11825,19007,11826,19007,11827,19007,19007,11828,19007,19007, 19007,19007,11829,19007,19007,11830,19007,11831,19007,11832, 16276,11833,11834,11835,11019,11019,11019,11019,11019,11019, 11019,11019,11019,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11843,19007,19007,19007, 19007,19007,19007,19007,16279,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11844, 2525, 3071,19007,19007,19007,19007, 1712,19007,19007, 3072,16282,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 3073,19007,19007,19007,19007,19007,19007, 3074, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 3075,19007, 3076,19007, 3078,19007,19007, 3079,19007,19007,19007,19007, 3081,19007,19007, 3082,19007, 3083,19007, 3084,19007, 3085, 3086, 3087, 2525, 3071,19007, 19007,19007,19007, 1712,19007,19007, 3072,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 3073,19007, 19007,19007,19007,19007,19007, 3074,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 3075, 19007, 3076,19007, 3078,19007,19007, 3079,19007,19007,19007, 19007, 3081,19007,19007, 3082,19007, 3083,19007, 3084,19007, 3085, 3086, 3087,16292,16292,16292,16292,16292,16292,16292, 16292,16292,15318,19007,19007,19007,19007,19007,19007,16292, 16292,16292,16292,16292,16293,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,16292,16292,16292,16292,16292, 16292, 7135,19007,19007,19007,19007,19007,19007,19007,19007, 16295,16295,16295,16295,16295,16295,16295,16295,16295,19007, 19007,19007,19007,19007,19007,19007,16295,16295,16295,16295, 16295,16296,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,16295,16295,16295,16295,16295,16295,16298,16298, 16298,16298,16298,16298,16298,16298,16298,19007,19007,19007, 19007,19007,19007,19007,16298,16298,16298,16298,16298,16299, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 16298,16298,16298,16298,16298,16298,16301,16302,16303,16304, 16304,16304,16304,16304,16304,14717,19007,19007,19007,19007, 19007,19007,14716,14716,14716,14716,14716,14718,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,14716,14716, 14716,14716,14716,14716,16305,16305,16305,16305,16305,16305, 16305,16305,16305,19007,19007,19007,19007,19007,19007,19007, 16305,16305,16305,16305,16305,16306,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,16305,16305,16305,16305, 16305,16305,12011,19007,14729,14729,14729,14729,14729,14729, 14729,14729,14729,14730,19007,19007,19007,19007,19007,19007, 14729,14729,14729,14729,14729,14731,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,14729,14729,14729,14729, 14729,14729,16311,16311,16311,16311,16311,16311,16311,16311, 16311,19007,19007,19007,19007,19007,19007,19007,16311,16311, 16311,16311,16311,16312,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,16311,16311,16311,16311,16311,16311, 14738,14738,14738,14738,14738,14738,14738,14738,14738,14739, 19007,19007,19007,19007,19007,19007,14738,14738,14738,14738, 14738,14740,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,14738,14738,14738,14738,14738,14738,14735,14735, 14735,14735,14735,14735,14735,14735,14735,13437,19007,19007, 19007,19007,19007,19007,14735,14735,14735,14735,14735,14736, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 14735,14735,14735,14735,14735,14735,16317,16317,16317,16317, 16317,16317,16317,16317,16317,19007,19007,19007,19007,19007, 19007,19007,16317,16317,16317,16317,16317,16318,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,16317,16317, 16317,16317,16317,16317,14751,14751,14751,14751,14751,14751, 14751,14751,14751,14752,19007,19007,19007,19007,19007,19007, 14751,14751,14751,14751,14751,14753,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,14751,14751,14751,14751, 14751,14751,14748,14748,14748,14748,14748,14748,14748,14748, 14748,13449,19007,19007,19007,19007,19007,19007,14748,14748, 14748,14748,14748,14749,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,14748,14748,14748,14748,14748,14748, 16323,16323,16323,16323,16323,16323,16323,16323,16323,19007, 19007,19007,19007,19007,19007,19007,16323,16323,16323,16323, 16323,16324,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,16323,16323,16323,16323,16323,16323,14765,14765, 14765,14765,14765,14765,14765,14765,14765,14766,19007,19007, 19007,19007,19007,19007,14765,14765,14765,14765,14765,14767, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 14765,14765,14765,14765,14765,14765,14762,14762,14762,14762, 14762,14762,14762,14762,14762,13465,19007,19007,19007,19007, 19007,19007,14762,14762,14762,14762,14762,14763,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,14762,14762, 14762,14762,14762,14762,16329,16329,16329,16329,16329,16329, 16329,16329,16329,15367,19007,19007,19007,19007,19007,19007, 16329,16329,16329,16329,16329,16330,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,16329,16329,16329,16329, 16329,16329,16332,16332,16332,16332,16332,16332,16332,16332, 16332,19007,19007,19007,19007,19007,19007,19007,16332,16332, 16332,16332,16332,16333,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,16332,16332,16332,16332,16332,16332, 16335,16336,16337,16338,16338,16338,16338,16338,16338,19007, 19007,19007,19007,19007,19007,19007,14778,14778,14778,14778, 14778,14779,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,14778,14778,14778,14778,14778,14778,16339,16339, 16339,16339,16339,16339,16339,16339,16339,14184,19007,19007, 19007,19007,19007,19007,14776,14776,14776,14776,14776,14777, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 14776,14776,14776,14776,14776,14776, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16341, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,16342,19007,19007, 19007,19007,16341,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 7157,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 120,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8419,19007, 9697, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16346,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16347,19007,19007,19007,19007,16346, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 12806,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,16349,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 16350,19007,19007,19007,19007,16349,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16354,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12808, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119,14840, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16355,19007,19007,19007, 19007,16354,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,16358,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16359,19007,19007,19007,19007,16358,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 16362,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,16363,19007, 19007,19007,19007,16362,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16365,19007,16366,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,16367,16368,16368,19007,19007,19007,19007, 19007,19007,19007,19007,16369, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16372,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12808, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119,14840, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16373,19007,19007,19007, 19007,16372,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119,14840,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,16377,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16378,19007,19007,19007,19007,16377,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 16382,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,16383,19007, 19007,19007,19007,16382,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16386,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16387,19007,19007,19007,19007,16386, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,16388, 119, 14840,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16388,19007,19007, 19007,19007,16390,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119,16388,16388, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16392,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16393,19007,19007,19007,19007, 16392,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,16397,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16398,19007,19007,19007,19007,16397,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16401, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 14840,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16402,19007,19007, 19007,19007,16401,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,16403, 119,14840,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 16403,19007,19007,19007,19007,16405,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12808, 119, 119,16403,16403,12806,14258,14258, 14258,14258,14258,14258,14258,14258,14258,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 120, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808,19007,14259, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119, 12806,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,16407,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 16408,19007,19007,19007,19007,16407,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12808, 119, 119, 6527,19007,19007,19007,19007, 19007,19007,19007,19007,16411,16411,16411,16411,16411,16411, 16411,16411,16411,19007,19007,19007,19007,19007,19007,19007, 16411,16411,16411,16411,16411,16412,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,16411,16411,16411,16411, 16411,16411,16414,16414,16414,16414,16414,16414,16414,16414, 16414,19007,19007,19007,19007,19007,19007,19007,16414,16414, 16414,16414,16414,16415,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,16414,16414,16414,16414,16414,16414, 11375,19007,14934,14934,14934,14934,14934,14934,14934,14934, 14934,14935,19007,19007,19007,19007,19007,19007,14934,14934, 14934,14934,14934,14936,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,14934,14934,14934,14934,14934,14934, 16420,16420,16420,16420,16420,16420,16420,16420,16420,19007, 19007,19007,19007,19007,19007,19007,16420,16420,16420,16420, 16420,16421,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,16420,16420,16420,16420,16420,16420,11375,19007, 16423,16423,16423,16423,16423,16423,16423,16423,16423,14341, 19007,19007,19007,19007,19007,19007,14947,14947,14947,14947, 14947,14948,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,14947,14947,14947,14947,14947,14947,16424,16424, 16424,16424,16424,16424,16424,16424,16424,19007,19007,19007, 19007,19007,19007,19007,16424,16424,16424,16424,16424,16425, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 16424,16424,16424,16424,16424,16424,16427,16427,16427,16427, 16427,16427,16427,16427,16427,14350,19007,19007,19007,19007, 19007,19007,14953,14953,14953,14953,14953,14954,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,14953,14953, 14953,14953,14953,14953,16428,16428,16428,16428,16428,16428, 16428,16428,16428,19007,19007,19007,19007,19007,19007,19007, 16428,16428,16428,16428,16428,16429,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,16428,16428,16428,16428, 16428,16428,16431,16431,16431,16431,16431,16431,16431,16431, 16431,14363,19007,19007,19007,19007,19007,19007,14962,14962, 14962,14962,14962,14963,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,14962,14962,14962,14962,14962,14962, 16432,16432,16432,16432,16432,16432,16432,16432,16432,19007, 19007,19007,19007,19007,19007,19007,16432,16432,16432,16432, 16432,16433,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,16432,16432,16432,16432,16432,16432,16435,16435, 16435,16435,16435,16435,16435,16435,16435,14377,19007,19007, 19007,19007,19007,19007,14971,14971,14971,14971,14971,14972, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 14971,14971,14971,14971,14971,14971,16436,16436,16436,16436, 16436,16436,16436,16436,16436,19007,19007,19007,19007,19007, 19007,19007,16436,16436,16436,16436,16436,16437,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,16436,16436, 16436,16436,16436,16436,14983,14983,14983,14983,14983,14983, 14983,14983,14983,14984,19007,19007,19007,19007,19007,19007, 14983,14983,14983,14983,14983,14985,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,14983,14983,14983,14983, 14983,14983,14980,14980,14980,14980,14980,14980,14980,14980, 14980,13725,19007,19007,19007,19007,19007,19007,14980,14980, 14980,14980,14980,14981,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,14980,14980,14980,14980,14980,14980, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,16443,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16444,19007,19007,19007,19007,16443,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 7812, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,16469, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007, 19007,19007,16470, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,16471,19007,19007,19007,19007,16469,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,16470, 9966, 9966, 9966, 9966, 9966, 9966, 9966, 9966, 9966, 8590, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 6644,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8592,19007, 9967,19007,19007,19007, 6645, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,15672,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007, 19007,15673,19007,16482, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,16484,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007, 16485, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,16486, 19007,19007,19007,19007,16484,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5945, 5945, 5945,19007,19007,19007,16485, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 8589, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945,15783, 5945, 5945, 5945,19007,19007,19007,19007, 19007,13816,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,13817,11610,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11611,19007,19007,16490, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,16504,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16505,19007,19007,19007,19007,16504,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 2525,10238, 19007,19007,19007,19007,10239,19007,19007,19007,16546,16546, 16546,16546,16546,16546,16546,16546,16546,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10240, 19007,19007,19007,19007,19007,19007,10241,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10242,19007,10243,19007,10244,19007,19007,10245,19007,19007, 19007,19007,10246,19007,19007,10247,19007,10248,19007,10249, 19007,10250,10251,10252,10987,19007,19007,19007,19007,19007, 19007,10988,16547,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10989,19007,10990,19007,10991, 19007,19007,10992,19007,19007,19007,19007,10993,19007,19007, 10994,19007,10995,19007,10996,19007,10997,10998,10999,10987, 19007,19007,19007,19007,19007,19007,10988,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10989,19007,10990,19007,10991,19007,19007,10992,19007,19007, 19007,19007,10993,16548,19007,10994,19007,10995,19007,10996, 19007,10997,10998,10999,10987,19007,19007,19007,19007,19007, 19007,10988,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10989,19007,10990,19007,10991, 19007,19007,10992,19007,19007,19007,19007,10993,19007,19007, 16549,19007,10995,19007,10996,19007,10997,10998,10999,16245, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10987,19007,19007,19007,19007,19007,19007,10988, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10989,19007,10990,19007,10991,19007,19007, 11793,19007,19007,19007,19007,11794,19007,19007,10994,19007, 10995,19007,10996,19007,10997,10998,10999, 2525,10238,19007, 19007,19007,19007,10239,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,16550,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10240,19007, 19007,19007,19007,19007,19007,10241,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10242, 19007,10243,19007,10244,19007,19007,10245,19007,19007,19007, 19007,10246,19007,19007,10247,19007,10248,19007,10249,19007, 10250,10251,10252,16552,19007,15257,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15258,19007,19007, 19007,19007,19007,19007,15259,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15260,19007, 15261,19007,15262,19007,19007,15874,19007,19007,19007,19007, 15875,19007,19007,15265,19007,15266,19007,15267,19007,15268, 15269,15270,15257,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,15258,19007,19007,19007,19007,19007, 16553,15259,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,15260,19007,15261,19007,15262, 19007,19007,15263,19007,19007,19007,19007,15264,19007,19007, 15265,19007,15266,19007,15267,19007,15268,15269,15270,15257, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15258,19007,19007,19007,19007,19007,19007,15259,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,15260,19007,15261,16554,15262,19007,19007,15263, 19007,19007,19007,19007,15264,19007,19007,15265,19007,15266, 19007,15267,19007,15268,15269,15270,15257,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15258,19007, 19007,19007,19007,19007,19007,15259,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15260, 19007,15261,16555,15262,19007,19007,15263,19007,19007,19007, 19007,15264,19007,19007,15265,19007,15266,19007,15267,19007, 15268,15269,15270,15257,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,15258,19007,19007,19007,19007, 19007,19007,15259,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15872,19007,15261,19007, 15262,19007,19007,15263,16556,19007,19007,19007,15264,19007, 19007,15265,19007,15266,19007,15267,19007,15268,15269,15270, 15873, 2525,16562,19007,19007,19007,19007,15256,19007,19007, 16563,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,16564,19007,19007,19007,19007,19007,19007,16565, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,16566,19007,16567,16568,16569,19007,19007, 16570,16571,19007,19007,19007,16572,19007,19007,16573,19007, 16574,19007,16575,19007,16576,16577,16578, 2525,11020,19007, 19007,19007,19007,11021,19007,19007,11022,19007,19007,19007, 19007,16587,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11023,19007, 11821,19007,19007,19007,19007,11024,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11025, 19007,11026,19007,11027,19007,19007,11028,19007,19007,19007, 19007,11029,19007,19007,11030,19007,11031,19007,11032,19007, 11033,11034,11035, 2525,11020,15882,19007,19007,19007,11021, 19007,19007,11022,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11023,19007,19007,19007,19007,19007, 19007,11024,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11025,19007,11026,19007,11027, 19007,19007,11028,19007,19007,19007,19007,11029,19007,19007, 11030,19007,11031,19007,11032,19007,11033,11034,11035,11822, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11823,19007,19007,19007,19007,19007,19007,11824,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11825,19007,11826,19007,11827,19007,19007,11828, 19007,19007,19007,19007,11829,16588,19007,11830,19007,11831, 19007,11832,19007,11833,11834,11835,11822,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11823,19007, 19007,16589,19007,19007,19007,11824,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11825, 19007,11826,19007,11827,19007,19007,11828,19007,19007,19007, 19007,11829,19007,19007,11830,19007,11831,19007,11832,19007, 11833,11834,11835,11822,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11823,19007,19007,19007,19007, 19007,19007,11824,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12582,19007,11826,19007, 11827,19007,19007,11828,16590,19007,19007,19007,11829,19007, 19007,11830,19007,11831,19007,11832,19007,11833,11834,11835, 12583, 2525,16562,19007,19007,19007,19007,15256,19007,19007, 16563,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,16564,19007,19007,19007,19007,19007,19007,16565, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,16566,19007,16567,19007,16569,19007,19007, 16570,19007,19007,19007,19007,16572,19007,19007,16573,19007, 16574,19007,16575,19007,16576,16577,16578, 7135,19007,19007, 19007,19007,19007,19007,19007,19007,16605,16605,16605,16605, 16605,16605,16605,16605,16605,19007,19007,19007,19007,19007, 19007,19007,16605,16605,16605,16605,16605,16606,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,16605,16605, 16605,16605,16605,16605,16608,16608,16608,16608,16608,16608, 16608,16608,16608,19007,19007,19007,19007,19007,19007,19007, 16608,16608,16608,16608,16608,16609,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,16608,16608,16608,16608, 16608,16608,12011,19007,15317,15317,15317,15317,15317,15317, 15317,15317,15317,15318,19007,19007,19007,19007,19007,19007, 15317,15317,15317,15317,15317,15319,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15317,15317,15317,15317, 15317,15317,16614,16614,16614,16614,16614,16614,16614,16614, 16614,19007,19007,19007,19007,19007,19007,19007,16614,16614, 16614,16614,16614,16615,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,16614,16614,16614,16614,16614,16614, 12011,19007,16617,16617,16617,16617,16617,16617,16617,16617, 16617,14730,19007,19007,19007,19007,19007,19007,15330,15330, 15330,15330,15330,15331,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,15330,15330,15330,15330,15330,15330, 16618,16618,16618,16618,16618,16618,16618,16618,16618,19007, 19007,19007,19007,19007,19007,19007,16618,16618,16618,16618, 16618,16619,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,16618,16618,16618,16618,16618,16618,16621,16621, 16621,16621,16621,16621,16621,16621,16621,14739,19007,19007, 19007,19007,19007,19007,15336,15336,15336,15336,15336,15337, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15336,15336,15336,15336,15336,15336,16622,16622,16622,16622, 16622,16622,16622,16622,16622,19007,19007,19007,19007,19007, 19007,19007,16622,16622,16622,16622,16622,16623,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,16622,16622, 16622,16622,16622,16622,16625,16625,16625,16625,16625,16625, 16625,16625,16625,14752,19007,19007,19007,19007,19007,19007, 15345,15345,15345,15345,15345,15346,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15345,15345,15345,15345, 15345,15345,16626,16626,16626,16626,16626,16626,16626,16626, 16626,19007,19007,19007,19007,19007,19007,19007,16626,16626, 16626,16626,16626,16627,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,16626,16626,16626,16626,16626,16626, 16629,16629,16629,16629,16629,16629,16629,16629,16629,14766, 19007,19007,19007,19007,19007,19007,15354,15354,15354,15354, 15354,15355,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,15354,15354,15354,15354,15354,15354,16630,16630, 16630,16630,16630,16630,16630,16630,16630,19007,19007,19007, 19007,19007,19007,19007,16630,16630,16630,16630,16630,16631, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 16630,16630,16630,16630,16630,16630,15366,15366,15366,15366, 15366,15366,15366,15366,15366,15367,19007,19007,19007,19007, 19007,19007,15366,15366,15366,15366,15366,15368,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15366,15366, 15366,15366,15366,15366,15363,15363,15363,15363,15363,15363, 15363,15363,15363,14184,19007,19007,19007,19007,19007,19007, 15363,15363,15363,15363,15363,15364,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15363,15363,15363,15363, 15363,15363, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,16637,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,16638,19007,19007,19007,19007,16637,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007,16641, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,16346,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007,16641, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,16347, 19007,19007,19007,19007,16346,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16644,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,12806,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16645,19007,19007,19007,19007, 16644,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,16649,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16650,19007,19007,19007,19007,16649,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16654, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16655,19007,19007, 19007,19007,16654,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,16659,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16660,19007,19007,19007,19007,16659,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12808, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,16663,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,16664, 19007,19007,19007,19007,16663,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16666,16667,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12808, 119, 119,19007,19007,19007, 19007,19007,19007,19007,16667, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,16669,16669, 16669,16669,16669,16669,16669,16669, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16670,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,16670,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,16672,16673,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808, 119, 119,19007,19007,19007,19007,19007,19007, 19007,16673, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,16675,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16676,19007,19007,19007,19007,16675,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12808, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119,14840, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,16680,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119,14840,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,16681, 19007,19007,19007,19007,16680,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16685,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16686,19007,19007,19007,19007, 16685,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,16690,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16691,19007,19007,19007,19007,16690,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16694, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 16695,19007,19007,19007,19007,19007,12808, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,16695, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119,14840, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,16697,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119,14840,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,16698, 19007,19007,19007,19007,16697,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16700,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16701,19007,19007,19007,19007, 16700,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,16706,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16707,19007,19007,19007,19007,16706,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16711, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 14840,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16712,19007,19007, 19007,19007,16711,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,16715,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,16716,19007,19007,19007, 19007,19007,12808, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,16716, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16718,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16719,19007,19007,19007,19007, 16718,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,16721,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119,19007, 119,12806,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16722,19007,19007,19007,19007,16721,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119,11375,19007,16725,16725, 16725,16725,16725,16725,16725,16725,16725,14935,19007,19007, 19007,19007,19007,19007,15565,15565,15565,15565,15565,15566, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15565,15565,15565,15565,15565,15565, 6527,19007,19007,19007, 19007,19007,19007,19007,19007,15579,15579,15579,15579,15579, 15579,15579,15579,15579,14341,19007,19007,19007,19007,19007, 19007,15579,15579,15579,15579,15579,15580,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15579,15579,15579, 15579,15579,15579,15589,15589,15589,15589,15589,15589,15589, 15589,15589,14350,19007,19007,19007,19007,19007,19007,15589, 15589,15589,15589,15589,15590,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,15589,15589,15589,15589,15589, 15589,15600,15600,15600,15600,15600,15600,15600,15600,15600, 14363,19007,19007,19007,19007,19007,19007,15600,15600,15600, 15600,15600,15601,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15600,15600,15600,15600,15600,15600,15611, 15611,15611,15611,15611,15611,15611,15611,15611,14377,19007, 19007,19007,19007,19007,19007,15611,15611,15611,15611,15611, 15612,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15611,15611,15611,15611,15611,15611, 6527,19007,19007, 19007,19007,19007,19007,19007,19007,16726,16726,16726,16726, 16726,16726,16726,16726,16726,19007,19007,19007,19007,19007, 19007,19007,16726,16726,16726,16726,16726,16727,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,16726,16726, 16726,16726,16726,16726,16729,16729,16729,16729,16729,16729, 16729,16729,16729,14984,19007,19007,19007,19007,19007,19007, 15622,15622,15622,15622,15622,15623,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15622,15622,15622,15622, 15622,15622, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,16443,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 7812, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16444,19007,19007,19007,19007,16443,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 7812, 5161,19007, 19007,19007,16123,19007,16123,19007,19007,16456,16456,16456, 16456,16456,16456,16456,16456,16456,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 4527,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,16125,19007,19007,16126, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007, 19007,16748,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,16749, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,16750,19007,19007,19007,19007,16748,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007, 19007,16749, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 19007,19007,19007,19007,19007,15672,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8592, 5945, 5945,19007,19007,19007,15673,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,16762, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007,16763, 5945,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,16484,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007, 19007,16485, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007,16763, 5945,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945, 16486,19007,19007,19007,19007,16484,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5945, 5945, 5945,19007,19007,19007,16485, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007, 19007,19007,16766,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 7305,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007, 7304,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 7305,11610,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11611,19007,19007,19007,19007,19007,19007, 19007,16768, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,16784,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16785,19007,19007,19007,19007,16784, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 16788,16788,16788,16788,16788,16788,16788,16788,16788,19007, 19007,19007,19007,19007,19007,19007,16788,16788,16788,16788, 16788,16789,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,16788,16788,16788,16788,16788,16788, 2525,10984, 19007,19007,19007,19007,10985,19007,19007,19007,16822,16822, 16822,16822,16822,16822,16822,16822,16822, 2525,10238,19007, 19007,19007,19007,10239,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10240,19007, 19007,19007,19007,19007,19007,10241,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10242, 19007,10243,19007,10244,19007,19007,10245,19007,19007,19007, 19007,10246,19007,19007,10247,19007,10248,19007,10249,19007, 10250,10251,10252,16823,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10987,19007,19007,19007,19007, 19007,19007,10988,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10989,19007,10990,19007, 10991,19007,19007,10992,19007,19007,19007,19007,10993,19007, 19007,10994,19007,10995,19007,10996,19007,10997,10998,10999, 2525,10238,19007,19007,19007,19007,10239,19007,19007,14057, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,10240,19007,19007,19007,19007,19007,19007,10241,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10242,19007,10243,19007,10244,19007,19007,10245, 19007,19007,19007,19007,10246,19007,19007,10247,19007,10248, 19007,10249,19007,10250,10251,10252,10987,19007,19007,19007, 19007,19007,19007,10988,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10989,19007,10990, 19007,10991,19007,19007,16824,19007,19007,19007,19007,11794, 19007,19007,10994,19007,10995,19007,10996,19007,10997,10998, 10999,15257,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15258,19007,19007,19007,19007,19007,19007, 15259,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,16582,19007,16583,19007,15262,19007, 19007,15263,19007,19007,19007,16827,15264,19007,19007,15265, 19007,15266,16585,15267,19007,15268,15269,15270,16828,19007, 19007,19007,19007,19007,19007,19007,15257,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15258,19007, 19007,19007,19007,19007,19007,15259,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15260, 19007,15261,19007,15262,19007,19007,15263,19007,19007,19007, 19007,15264,19007,19007,15265,19007,15266,19007,15267,19007, 15268,15269,15270,15257,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,15258,19007,19007,19007,19007, 19007,19007,15259,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15260,19007,15261,19007, 15262,19007,19007,15263,19007,19007,19007,19007,16829,19007, 19007,15265,19007,15266,19007,15267,19007,15268,15269,15270, 15257,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,15258,19007,19007,19007,19007,19007,19007,15259, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15260,19007,15261,19007,15262,19007,19007, 15263,19007,19007,19007,19007,16830,19007,19007,15265,19007, 15266,19007,15267,19007,15268,15269,15270,15257,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15258, 19007,19007,19007,19007,19007,19007,15259,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15260,19007,15261,19007,15262,19007,19007,15263,19007,19007, 19007,19007,15264,16831,19007,15265,19007,15266,19007,15267, 19007,15268,15269,15270,15257,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15258,19007,19007,19007, 19007,19007,19007,15259,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15260,16832,15261, 19007,15262,19007,19007,15263,19007,19007,19007,19007,15264, 19007,19007,15265,19007,15266,19007,15267,19007,15268,15269, 15270,15257,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15258,19007,19007,19007,19007,19007,19007, 15259,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,15260,19007,15261,19007,16833,19007, 19007,15263,19007,19007,19007,19007,15264,19007,19007,15265, 19007,15266,19007,15267,19007,15268,15269,15270, 2525,16562, 19007,19007,19007,19007,15256,19007,19007,16563,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,16564, 19007,19007,19007,19007,19007,19007,16565,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 16566,19007,16567,19007,16569,19007,19007,16570,19007,19007, 19007,19007,16572,19007,19007,16573,19007,16574,19007,16575, 19007,16576,16577,16578,15257,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15258,19007,19007,19007, 19007,19007,19007,15259,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15260,19007,15261, 19007,15262,19007,19007,15263,19007,19007,19007,16834,15264, 19007,19007,15265,19007,15266,19007,15267,19007,15268,15269, 15270, 2525,16562,19007,19007,19007,19007,15256,19007,19007, 16563,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,16564,19007,19007,19007,19007,19007,19007,16565, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,16566,19007,16567,19007,16569,19007,19007, 16570,19007,19007,19007,19007,16572,19007,19007,16573,19007, 16574,19007,16575,19007,16576,16577,16578,15257,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15258, 19007,19007,19007,19007,19007,19007,15259,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15260,19007,15261,16854,15262,19007,19007,15263,19007,19007, 19007,19007,15264,19007,19007,15265,19007,15266,19007,15267, 19007,15268,15269,15270,15257,19007,19007,19007,16855,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15258,19007,19007,19007, 19007,19007,19007,15259,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15260,19007,15261, 19007,15262,19007,19007,15263,19007,19007,19007,19007,15264, 19007,19007,15265,19007,15266,19007,15267,19007,15268,15269, 15270,15257,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15258,19007,19007,19007,19007,19007,19007, 15259,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,16856,19007,15261,19007,15262,19007, 19007,15263,19007,19007,19007,19007,15264,19007,19007,15265, 19007,15266,19007,15267,19007,15268,15269,15270,15873,15257, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15258,19007,19007,19007,19007,19007,19007,15259,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,15260,19007,15261,16857,15262,19007,19007,15263, 19007,19007,19007,19007,15264,19007,19007,15265,19007,15266, 19007,15267,19007,15268,15269,15270,15257,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15258,19007, 19007,19007,19007,19007,19007,15259,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15260, 19007,15261,19007,15262,19007,15869,15263,19007,19007,19007, 19007,15264,19007,16858,15265,19007,15266,19007,15267,19007, 15268,15269,15270, 2525,11020,19007,19007,19007,19007,11021, 19007,19007,11022,16862,16862,16862,16862,16862,16862,16862, 16862,16862,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11023,19007,19007,19007,19007,19007, 19007,11024,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11025,19007,11026,19007,11027, 19007,19007,11028,19007,19007,19007,19007,11029,19007,19007, 11030,19007,11031,19007,11032,19007,11033,11034,11035,16863, 19007,19007,19007,19007,19007,19007,16864,11822,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11823, 19007,19007,19007,19007,19007,19007,11824,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11825,19007,11826,19007,11827,19007,19007,11828,19007,19007, 19007,19007,11829,19007,19007,11830,19007,11831,19007,11832, 19007,11833,11834,11835,11822,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11823,19007,19007,19007, 19007,19007,19007,11824,16865,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11825,19007,11826, 19007,11827,19007,19007,11828,19007,19007,19007,19007,11829, 19007,19007,11830,19007,11831,19007,11832,19007,11833,11834, 11835,11822,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11823,19007,19007,19007,19007,19007,19007, 11824,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11825,19007,11826,19007,11827,19007, 19007,11828,19007,19007,19007,19007,11829,16866,19007,11830, 19007,11831,19007,11832,19007,11833,11834,11835,11822,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11823,19007,19007,19007,19007,19007,19007,11824,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11825,19007,11826,19007,11827,19007,19007,11828,19007, 19007,19007,19007,11829,19007,19007,16867,19007,11831,19007, 11832,19007,11833,11834,11835,16591,11822,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11823,19007, 19007,19007,19007,19007,19007,11824,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11825, 19007,11826,19007,11827,19007,19007,12584,19007,19007,19007, 19007,12585,19007,19007,11830,19007,11831,19007,11832,19007, 11833,11834,11835, 2525,11020,19007,19007,19007,19007,11021, 19007,19007,11022,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11023,19007,16868,19007,19007,19007, 19007,11024,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11025,19007,11026,19007,11027, 19007,19007,11028,19007,19007,19007,19007,11029,19007,19007, 11030,19007,11031,19007,11032,19007,11033,11034,11035,12011, 19007,16880,16880,16880,16880,16880,16880,16880,16880,16880, 15318,19007,19007,19007,19007,19007,19007,15913,15913,15913, 15913,15913,15914,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15913,15913,15913,15913,15913,15913, 7135, 19007,19007,19007,19007,19007,19007,19007,19007,15927,15927, 15927,15927,15927,15927,15927,15927,15927,14730,19007,19007, 19007,19007,19007,19007,15927,15927,15927,15927,15927,15928, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15927,15927,15927,15927,15927,15927,15937,15937,15937,15937, 15937,15937,15937,15937,15937,14739,19007,19007,19007,19007, 19007,19007,15937,15937,15937,15937,15937,15938,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15937,15937, 15937,15937,15937,15937,15948,15948,15948,15948,15948,15948, 15948,15948,15948,14752,19007,19007,19007,19007,19007,19007, 15948,15948,15948,15948,15948,15949,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15948,15948,15948,15948, 15948,15948,15959,15959,15959,15959,15959,15959,15959,15959, 15959,14766,19007,19007,19007,19007,19007,19007,15959,15959, 15959,15959,15959,15960,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,15959,15959,15959,15959,15959,15959, 7135,19007,19007,19007,19007,19007,19007,19007,19007,16881, 16881,16881,16881,16881,16881,16881,16881,16881,19007,19007, 19007,19007,19007,19007,19007,16881,16881,16881,16881,16881, 16882,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,16881,16881,16881,16881,16881,16881,16884,16884,16884, 16884,16884,16884,16884,16884,16884,15367,19007,19007,19007, 19007,19007,19007,15970,15970,15970,15970,15970,15971,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15970, 15970,15970,15970,15970,15970, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16637,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 7157, 119, 119, 119, 119, 119, 119,16638,19007,19007,19007, 19007,16637,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8419, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,16886,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007,16641, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16346,19007, 19007,19007,19007,19007,16887,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119,12806, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,16644,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119,12806,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,16645, 19007,19007,19007,19007,16644,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16889,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16890,19007,19007,19007,19007, 16889,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,16894,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16895,19007,19007,19007,19007,16894,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16899, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16900,19007,19007, 19007,19007,16899,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,16904,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16905,19007,19007,19007,19007,16904,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12808, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,16908,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,16909, 19007,19007,19007,19007,16908,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16911,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,16912,19007,19007,12808, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,16912, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,16914,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,16915,16915,16915,16915,16915,16915, 16915,16915,16915, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,16914,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119,14259, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16918,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12808, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16919,19007,19007,19007, 19007,16918,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,16921,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,16922,19007, 19007,12808, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,16922, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16924, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 14840,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16925,19007,19007, 19007,19007,16924,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,16929,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16930,19007,19007,19007,19007,16929,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 19007,10415, 119, 119, 119, 119, 119,19007, 119,12806, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,16721,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007,10415, 119, 119, 119, 119, 119, 19007, 119,12806,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,16722, 19007,19007,19007,19007,16721,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808, 119, 119,11375,19007,16063,16063,16063,16063, 16063,16063,16063,16063,16063,14935,19007,19007,19007,19007, 19007,19007,16063,16063,16063,16063,16063,16064,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,16063,16063, 16063,16063,16063,16063, 6527,19007,19007,19007,19007,19007, 19007,11375,19007,16100,16100,16100,16100,16100,16100,16100, 16100,16100,14984,19007,19007,19007,19007,19007,19007,16100, 16100,16100,16100,16100,16101,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,16100,16100,16100,16100,16100, 16100, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007, 19007,19007,19007,19007,16748,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8592, 5945, 5945,19007,19007,19007,16749, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,16750,19007,19007,19007, 19007,16748,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,16749, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945,10685,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,15672,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007, 19007,15673,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,16947, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945, 5945, 5945, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007, 19007,16949,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945,19007,19007,16950, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007,16763, 5945,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,16484,19007, 19007,19007,19007,19007,16951,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007, 19007,16485, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007,16763, 5945,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945, 19007,19007,19007,19007,19007,16484,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5945, 5945, 5945,19007,19007,19007,16485,19007, 16952, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945, 7948, 19007,19007,19007,19007, 7943,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5945, 5945, 5945,19007,19007,19007, 7944,11610,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,16954,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11611, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,16967,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,16968,19007,19007,19007,19007,16967,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119,16971,16971, 16971,16971,16971,16971,16971,16971,16971,19007,19007,19007, 19007,19007,19007,19007,16971,16971,16971,16971,16971,16972, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 16971,16971,16971,16971,16971,16971,17006,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10987,19007,19007,19007, 19007,19007,19007,10988,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10989,19007,10990, 19007,10991,19007,19007,10992,19007,19007,19007,19007,10993, 19007,19007,10994,19007,10995,19007,10996,19007,10997,10998, 10999,10987,19007,19007,19007,19007,19007,19007,10988,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10989,19007,10990,19007,10991,19007,19007,10992, 19007,19007,19007,19007,10993,19007,11790,17007,19007,10995, 19007,10996,19007,10997,10998,10999, 2525,10238,19007,19007, 19007,19007,10239,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,17008,19007,19007,10240,19007,10986, 19007,19007,19007,19007,10241,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10242,19007, 10243,19007,10244,19007,19007,10245,19007,19007,19007,19007, 10246,19007,19007,10247,19007,10248,19007,10249,19007,10250, 10251,10252, 2525,10238,19007,19007,19007,19007,10239,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10240,19007,19007,19007,19007,19007,19007, 10241,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10242,19007,10243,19007,10244,19007, 19007,11008,19007,19007,19007,19007,11009,19007,19007,10247, 19007,10248,19007,10249,19007,10250,10251,10252,15257,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15258,19007,19007,19007,19007,19007,19007,15259,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15260,19007,15261,19007,15262,19007,19007,15263,19007, 19007,19007,19007,15264,19007,17009,15265,19007,15266,19007, 15267,19007,15268,15269,15270,15257,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15258,19007,19007, 19007,19007,19007,17010,15259,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15260,19007, 15261,19007,15262,19007,19007,15263,19007,19007,19007,19007, 15264,19007,19007,15265,19007,15266,19007,15267,19007,15268, 15269,15270,15257,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,15258,19007,19007,19007,19007,19007, 19007,15259,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,15872,19007,15261,19007,15262, 19007,19007,15263,17011,19007,19007,19007,15264,19007,19007, 15265,19007,15266,19007,15267,19007,15268,15269,15270,15873, 2525,16562,19007,19007,19007,19007,15256,19007,19007,16563, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,16564,19007,19007,19007,19007,19007,19007,16565,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,16566,19007,16567,19007,16569,19007,19007,16570, 19007,19007,19007,19007,16572,19007,19007,16573,19007,16574, 19007,16575,19007,16576,16577,16841, 2525,16562,19007,19007, 19007,19007,15256,19007,19007,16563,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,16564,19007,19007, 19007,19007,19007,19007,16565,19007,19007,19007,19007,19007, 17016,19007,19007,19007,19007,19007,19007,19007,16566,19007, 16567,19007,16569,19007,19007,16570,19007,19007,19007,19007, 16572,19007,19007,16573,19007,16574,19007,16575,19007,16576, 16577,16578, 2525,11020,19007,19007,19007,19007,11021,19007, 19007,11022,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11023,19007,19007,19007,19007,19007,19007, 11024,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11025,19007,11026,19007,11027,19007, 19007,11028,19007,19007,19007,19007,11029,19007,19007,11030, 19007,11031,19007,11032,19007,11033,11034,11035,11822,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11823,19007,17039,19007,19007,19007,19007,11824,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11825,19007,11826,19007,11827,19007,19007,11828,19007, 19007,19007,19007,11829,19007,19007,11830,19007,11831,19007, 11832,19007,11833,11834,11835,11822,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11823,19007,19007, 19007,19007,19007,19007,11824,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11825,19007, 11826,19007,11827,19007,19007,11828,19007,19007,19007,19007, 11829,19007,19007,17040,19007,11831,19007,11832,19007,11833, 11834,11835,11822,19007,19007,19007,19007,19007,19007,19007, 19007,19007,17041,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11823,19007,19007,19007,19007,19007, 19007,11824,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11825,19007,11826,19007,11827, 19007,19007,11828,19007,19007,19007,19007,11829,19007,19007, 11830,19007,11831,19007,11832,19007,11833,11834,11835, 2525, 11020,19007,19007,19007,19007,11021,19007,19007,14683,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11023,19007,19007,19007,19007,19007,19007,11024,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11025,19007,11026,19007,11027,19007,19007,11028,19007, 19007,19007,19007,11029,19007,19007,11030,19007,11031,19007, 11032,19007,11033,11034,11035,11822,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11823,19007,19007, 19007,19007,19007,19007,11824,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11825,19007, 11826,19007,11827,19007,19007,17042,19007,19007,19007,19007, 12585,19007,19007,11830,19007,11831,19007,11832,19007,11833, 11834,11835,12011,19007,16292,16292,16292,16292,16292,16292, 16292,16292,16292,15318,19007,19007,19007,19007,19007,19007, 16292,16292,16292,16292,16292,16293,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,16292,16292,16292,16292, 16292,16292, 7135,19007,19007,19007,19007,19007,19007,19007, 19007,16329,16329,16329,16329,16329,16329,16329,16329,16329, 15367,19007,19007,19007,19007,19007,19007,16329,16329,16329, 16329,16329,16330,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,16329,16329,16329,16329,16329,16329, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,17054,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 17055,19007,19007,19007,19007,17054,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119,19007, 857, 119, 119, 119, 119, 119,19007,16641, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,16346,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119,14840, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,17057,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119,14840,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,17058, 19007,19007,19007,19007,17057,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,17062,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17063,19007,19007,19007,19007, 17062,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,17067,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17068,19007,19007,19007,19007,17067,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,17072, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17073,19007,19007, 19007,19007,17072,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,17077,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17078,19007,19007,19007,19007,17077,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12808, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,17081,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,17082, 19007,19007,19007,19007,17081,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,17083, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17083,19007,19007,19007,19007,17085,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12808, 119, 119,17083,17083, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,17087,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 17088,19007,19007,19007,19007,17087,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,17092,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12808, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17093,19007,19007,19007, 19007,17092,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,17096,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17097,19007,19007,19007,19007,17096,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,17098, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17098,19007,19007,19007,19007, 17100,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 17098,17098, 119,14840, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 120,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12808,19007,19007,19007, 119, 119, 119, 119, 119, 119, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945, 19007,19007,19007,19007,19007,16748,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8592, 5945, 5945,19007,19007,19007,16749,19007, 17112, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945,10685,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 8590, 5945, 5945,15783, 5945, 5945, 5945,19007, 19007,19007,19007,19007,15672,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 8592, 5945, 5945,19007,19007,19007,15673, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007, 19007,17114,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007,17115, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,17116,19007,19007,19007,19007,17114,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007, 19007,17115, 5945, 5945,19007, 8613, 5945, 5945, 5945, 5945, 5945,19007,16763, 5945,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945, 19007,19007,19007,19007,19007,16484,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5945, 5945, 5945,19007,19007,19007,16485, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007,16763, 5945,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007, 19007,19007,16484,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007,16485,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,17118,11610,17120,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11611, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,17133,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 19007, 119, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17134,19007,19007,19007,19007,17133,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119,17165,19007,19007, 10987,19007,19007,19007,19007,19007,19007,10988,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,10989,19007,10990,19007,10991,19007,19007,10992,19007, 19007,19007,19007,10993,19007,19007,10994,19007,10995,19007, 10996,19007,10997,10998,10999, 2525,10238,19007,19007,19007, 19007,10239,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10240,19007,19007,19007, 19007,19007,19007,10241,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10242,19007,10243, 19007,10244,19007,19007,11008,19007,19007,19007,19007,11009, 19007,19007,10247,19007,10248,19007,10249,19007,10250,10251, 10252, 2525,10238,19007,19007,19007,19007,10239,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10240,19007,19007,19007,19007,19007,19007,10241, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10242,19007,10243,19007,10244,19007,19007, 10245,19007,19007,19007,17166,10246,19007,19007,10247,19007, 10248,19007,10249,19007,10250,10251,10252,15257,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15258, 19007,19007,19007,19007,19007,19007,15259,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15260,19007,15261,19007,15262,19007,17167,15263,19007,19007, 19007,19007,15264,19007,19007,15265,19007,15266,19007,15267, 19007,15268,15269,15270,15257,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15258,19007,19007,19007, 19007,19007,19007,15259,19007,17168,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15260,19007,15261, 19007,15262,19007,19007,15263,19007,19007,19007,19007,15264, 19007,19007,15265,19007,15266,19007,15267,19007,15268,15269, 15270,15257,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15258,19007,19007,19007,19007,19007,19007, 15259,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,15260,19007,15261,19007,15262,19007, 19007,15263,19007,19007,19007,19007,15264,17169,19007,15265, 19007,15266,19007,15267,19007,15268,15269,15270,15257,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15258,19007,19007,19007,19007,19007,19007,15259,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15260,19007,15261,19007,15262,19007,19007,15263,19007, 19007,19007,19007,15264,17170,19007,15265,19007,15266,19007, 15267,19007,15268,15269,15270,15257,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15258,19007,19007, 19007,19007,19007,19007,15259,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15260,19007, 15261,19007,15262,19007,19007,15263,19007,19007,19007,19007, 15264,19007,19007,15265,19007,15266,19007,15267,19007,15268, 15865,15270,15257,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,15258,19007,19007,19007,19007,19007, 19007,15259,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,15260,19007,15261,19007,15262, 19007,19007,15263,19007,19007,19007,19007,15264,16559,19007, 15265,19007,15266,19007,15267,19007,15268,15269,15270,15257, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15258,19007,19007,19007,19007,19007,19007,15259,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,15260,19007,15261,17171,15262,19007,19007,15263, 19007,19007,19007,19007,15264,19007,19007,15265,19007,15266, 19007,15267,19007,15268,15269,15270, 2525,16562,19007,19007, 19007,19007,15256,19007,19007,16563,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,16564,19007,19007, 19007,19007,19007,19007,16565,19007,19007,19007,19007,19007, 17172,19007,19007,19007,19007,19007,19007,19007,16566,19007, 16567,19007,16569,19007,19007,16570,19007,19007,19007,19007, 16572,19007,19007,16573,19007,16574,19007,16575,19007,16576, 16577,16578, 2525,16562,19007,19007,19007,19007,15256,17173, 19007,16563,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,16564,19007,19007,19007,19007,19007,19007, 16565,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,16566,19007,16567,19007,16569,19007, 19007,16846,19007,19007,19007,19007,16847,19007,19007,16573, 19007,16574,19007,16575,19007,16576,16577,16578,15257,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15258,19007,19007,19007,19007,19007,19007,15259,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15260,19007,15261,19007,15262,19007,15869,15263,19007, 19007,19007,19007,15264,19007,19007,15265,19007,15266,19007, 15267,17189,15268,15269,15270,11822,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11823,19007,19007, 19007,19007,19007,19007,11824,19007,19007,19007,19007,19007, 17195,19007,19007,19007,19007,19007,19007,19007,11825,19007, 11826,19007,11827,19007,19007,11828,19007,19007,19007,19007, 11829,19007,19007,11830,19007,11831,19007,11832,19007,11833, 11834,11835,11822,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11823,19007,19007,19007,19007,19007, 19007,11824,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11825,19007,11826,19007,11827, 19007,19007,17196,19007,19007,19007,19007,12585,19007,19007, 11830,19007,11831,19007,11832,19007,11833,11834,11835,17197, 19007,19007,19007,19007,19007,19007,19007,11822,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11823, 19007,19007,19007,19007,19007,19007,11824,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11825,19007,11826,19007,11827,19007,19007,11828,19007,19007, 19007,19007,11829,19007,19007,11830,19007,11831,19007,11832, 19007,11833,11834,11835,11822,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11823,19007,19007,19007, 19007,19007,19007,11824,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11825,19007,11826, 19007,11827,19007,19007,11828,19007,19007,19007,19007,11829, 19007,12581,17198,19007,11831,19007,11832,19007,11833,11834, 11835, 2525,11020,19007,19007,19007,19007,11021,19007,19007, 11022,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11023,19007,19007,19007,19007,19007,19007,11024, 19007,19007,19007,19007,19007,17199,19007,19007,19007,19007, 19007,19007,19007,11025,19007,11026,19007,11027,19007,19007, 11028,19007,19007,19007,19007,11029,19007,19007,11030,19007, 11031,19007,11032,19007,11033,11034,11035, 2525,11020,19007, 19007,19007,19007,11021,19007,19007,11022,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11023,19007, 19007,19007,19007,19007,19007,11024,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11025, 19007,11026,19007,11027,19007,19007,11028,19007,19007,19007, 19007,11029,19007,11842,17200,19007,11031,19007,11032,19007, 11033,11034,11035, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,17054,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119,17208, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17055,19007,19007,19007,19007,17054, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119,17208, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 14840,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,17211,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 17212,19007,19007,19007,19007,17211,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,17216,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12808, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17217,19007,19007,19007, 19007,17216,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,17221,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17222,19007,19007,19007,19007,17221,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 17226,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,17227,19007, 19007,19007,19007,17226,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,17231,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17232,19007,19007,19007,19007,17231, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,17236,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 17237,19007,19007,19007,19007,17236,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,17240,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,17241, 19007,19007,19007,19007,19007,12808, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,17241, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 17243,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,17244,19007, 19007,19007,19007,17243,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,17246,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17247,19007,19007,19007,19007,17246, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,17252,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 17253,19007,19007,19007,19007,17252,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,17257,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12808, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17258,19007,19007,19007, 19007,17257,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,17261,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,17262,19007,19007,19007,19007, 19007,12808, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,17262, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,17264,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17265,19007,19007,19007,19007,17264, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007, 19007,19007,16748,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007,16749,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,17277, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945, 19007,19007,19007,19007,19007,17114,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5945, 5945,17278,19007,19007,19007,17115, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,17116,19007,19007, 19007,19007,17114,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945,17278,19007,19007,19007,17115, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007,16763, 5945,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,16484, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007, 19007,19007,16485,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,17281, 11610,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007,17282,19007, 19007,11611, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,17298,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17299,19007,19007,19007,19007,17298, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 17302,17302,17302,17302,17302,17302,17302,17302,17302,19007, 19007,19007,19007,19007,19007,19007,17302,17302,17302,17302, 17302,17303,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,17302,17302,17302,17302,17302,17302,10987,19007, 19007,19007,19007,19007,19007,10988,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10989, 19007,10990,19007,10991,19007,19007,10992,19007,19007,19007, 17331,10993,19007,19007,10994,19007,10995,19007,10996,19007, 10997,10998,10999, 2525,10238,19007,19007,19007,19007,10239, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10240,19007,19007,19007,19007,19007, 19007,10241,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10242,19007,10243,19007,10244, 19007,19007,10245,17332,19007,19007,19007,10246,19007,19007, 10247,19007,10248,19007,10249,19007,10250,10251,10252,15257, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15258,19007,19007,19007,19007,19007,19007,15259,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,15260,19007,15261,19007,15262,19007,19007,15263, 17333,19007,19007,19007,15264,19007,19007,15265,19007,15266, 19007,15267,19007,15268,15269,15270,15257,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15258,17334, 19007,19007,19007,19007,19007,15259,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15260, 19007,15261,19007,15262,19007,19007,15263,19007,19007,19007, 19007,15264,19007,19007,15265,19007,15266,19007,15267,19007, 15268,15269,15270, 2525,16562,19007,19007,19007,19007,15256, 19007,19007,16563,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,16564,19007,19007,19007,19007,19007, 19007,16565,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,16566,19007,16567,19007,16569, 19007,19007,16570,19007,19007,19007,19007,16572,19007,19007, 16573,19007,16574,19007,16575,19007,16576,16577,16578, 2525, 16562,19007,19007,19007,19007,15256,19007,19007,17335,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 16564,19007,19007,19007,19007,19007,19007,16565,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,16566,19007,16567,19007,16569,19007,19007,16570,19007, 19007,19007,19007,16572,19007,19007,16573,19007,16574,19007, 16575,19007,16576,16577,16578,15257,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15258,19007,19007, 19007,19007,19007,19007,15259,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15260,19007, 15261,19007,15262,19007,19007,15263,19007,19007,19007,19007, 17336,19007,19007,15265,19007,15266,19007,15267,19007,15268, 15269,15270,15257,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,15258,19007,19007,19007,19007,19007, 19007,15259,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,15260,17353,15261,19007,15262, 19007,19007,15263,19007,19007,19007,19007,15264,19007,19007, 15265,19007,15266,19007,15267,19007,15268,15269,15270,15257, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15258,19007,19007,19007,19007,19007,19007,15259,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,15260,19007,15261,19007,15262,19007,19007,15263, 19007,19007,19007,19007,15264,17354,19007,15265,19007,15266, 19007,15267,19007,15268,15269,15270,15257,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15258,19007, 19007,19007,19007,19007,19007,15259,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15260, 19007,15261,19007,15262,19007,19007,15263,17355,19007,19007, 19007,15264,19007,19007,15265,19007,15266,19007,15267,19007, 15268,15269,15270,15257,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,15258,19007,19007,19007,19007, 19007,19007,15259,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15260,19007,15261,19007, 15262,19007,19007,15263,19007,19007,19007,19007,15264,17356, 19007,15265,19007,15266,19007,15267,19007,15268,15269,15270, 15257,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,15258,19007,19007,19007,19007,19007,19007,15259, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15260,19007,15261,19007,15262,19007,19007, 15263,19007,19007,19007,19007,15264,19007,19007,15265,19007, 15266,19007,15267,17357,15268,15269,15270,11822,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11823, 19007,19007,19007,19007,19007,19007,11824,19007,19007,19007, 19007,19007,17358,19007,19007,19007,19007,19007,19007,19007, 11825,19007,11826,19007,11827,19007,19007,11828,19007,19007, 19007,19007,11829,19007,19007,11830,19007,11831,19007,11832, 19007,11833,11834,11835,11822,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11823,19007,19007,19007, 19007,19007,19007,11824,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11825,19007,11826, 19007,11827,19007,19007,11828,19007,19007,19007,19007,11829, 19007,12581,17359,19007,11831,19007,11832,19007,11833,11834, 11835,11822,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 17360,19007,19007,11823,19007,19007,19007,19007,19007,19007, 11824,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11825,19007,11826,19007,11827,19007, 19007,11828,19007,19007,19007,19007,11829,19007,19007,11830, 19007,11831,19007,11832,19007,11833,11834,11835, 2525,11020, 19007,19007,19007,19007,11021,19007,19007,11022,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11023, 19007,19007,19007,19007,19007,19007,11024,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11025,19007,11026,19007,11027,19007,19007,11845,19007,19007, 19007,19007,11846,19007,19007,11030,19007,11031,19007,11032, 19007,11033,11034,11035, 2525,11020,19007,19007,19007,19007, 11021,19007,19007,11022,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11023,19007,19007,19007,19007, 19007,19007,11024,19007,19007,17361,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11025,19007,11026,19007, 11027,19007,19007,11028,19007,19007,19007,19007,11029,19007, 19007,11030,19007,11031,19007,11032,19007,11033,11034,11035, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,17054,19007,19007,19007,19007,19007,17368, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119,17208, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,17211,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119,14840,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17212,19007,19007,19007,19007,17211, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007, 19007,19007,17370,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 17371,19007,19007,19007,19007,17370,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,17375,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12808, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17376,19007,19007,19007, 19007,17375,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,17380,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17381,19007,19007,19007,19007,17380,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 8590, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 16748,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 8592, 5945, 5945, 19007,19007,19007,16749,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,17394, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007, 19007,19007,19007,17114,19007,19007,19007,19007,19007,17395, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945,17278,19007,19007,19007,17115, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 17114,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5945, 5945,17278, 19007,19007,19007,17115,19007,17396, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007,16763, 5945,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,16484, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,17397, 19007,19007,16485,11610,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11611,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,17398, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 17411,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,17412, 19007,19007,19007,19007,17411,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119,17415,17415,17415,17415,17415, 17415,17415,17415,17415,19007,19007,19007,19007,19007,19007, 19007,17415,17415,17415,17415,17415,17416,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,17415,17415,17415, 17415,17415,17415,10987,19007,19007,19007,19007,19007,19007, 10988,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10989,19007,10990,19007,10991,19007, 19007,10992,17442,19007,19007,19007,10993,19007,19007,10994, 19007,10995,19007,10996,19007,10997,10998,10999, 2525,10238, 19007,19007,19007,19007,10239,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10240, 19007,19007,19007,19007,19007,19007,10241,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 10242,19007,10243,19007,17443,19007,19007,10245,19007,19007, 19007,19007,10246,19007,19007,10247,19007,10248,19007,10249, 19007,10250,10251,10252,15257,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15258,19007,19007,19007, 19007,19007,19007,15259,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15260,19007,15261, 19007,15262,19007,19007,15263,19007,19007,19007,19007,15264, 17444,19007,15265,19007,15266,19007,15267,19007,15268,15269, 15270,15257,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15258,19007,19007,17445,19007,19007,19007, 15259,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,15260,19007,15261,19007,15262,19007, 19007,15263,19007,19007,19007,19007,15264,19007,19007,15265, 19007,15266,19007,15267,19007,15268,15269,15270, 2525,16562, 19007,19007,19007,19007,15256,19007,19007,16563,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,16564, 19007,19007,19007,19007,19007,19007,16565,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 16566,19007,16567,19007,16569,19007,19007,16570,19007,19007, 19007,19007,16572,19007,19007,16573,19007,16574,19007,16575, 19007,16576,16836,16578,15257,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15258,19007,19007,19007, 19007,19007,19007,15259,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15872,19007,15261, 19007,15262,19007,19007,15263,17446,19007,19007,19007,15264, 19007,19007,15265,19007,15266,19007,15267,19007,15268,15269, 15270,15873, 2525,16562,19007,19007,19007,19007,15256,19007, 19007,17447,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,16564,19007,19007,19007,19007,19007,19007, 16565,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,16566,19007,16567,19007,16569,19007, 19007,16570,19007,19007,19007,19007,16572,19007,19007,16573, 19007,16574,19007,16575,19007,16576,16577,16578,11822,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11823,19007,19007,19007,19007,19007,19007,11824,19007,19007, 17462,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11825,19007,11826,19007,11827,19007,19007,11828,19007, 19007,19007,19007,11829,19007,19007,11830,19007,11831,19007, 11832,19007,11833,11834,11835, 2525,16593,19007,19007,19007, 19007,11021,19007,19007,11022,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11023,19007,19007,19007, 19007,19007,19007,11024,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11025,19007,11026, 19007,11027,19007,19007,11845,19007,19007,19007,19007,11846, 19007,19007,11030,19007,11031,19007,11032,19007,11033,11034, 11035,11822,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11823,19007,19007,19007,19007,19007,19007, 11824,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11825,19007,11826,19007,11827,19007, 19007,11828,19007,19007,19007,17463,11829,19007,19007,11830, 19007,11831,19007,11832,19007,11833,11834,11835, 2525,11020, 19007,19007,19007,19007,11021,19007,19007,17464,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11023, 19007,19007,19007,19007,19007,19007,11024,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11025,19007,11026,19007,11027,19007,19007,11028,19007,19007, 19007,19007,11029,19007,19007,11030,19007,11031,19007,11032, 19007,11033,11034,11035, 119, 119,19007, 857, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,17054,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119,17208, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 17472,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,17473,19007, 19007,19007,19007,17472,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119,14258,14258,14258,14258,14258,14258,14258, 14258,14258,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 120,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,12808,19007,14259, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 8590, 5945, 5945,15783, 5945, 5945, 5945,19007,19007,19007,19007,19007,16748,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 8592, 5945, 5945,19007,19007,19007, 16749, 5945, 5945,19007, 8613, 5945, 5945, 5945, 5945, 5945, 19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007, 19007,19007,19007,19007,17114,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5945, 5945,17278,19007,19007,19007,17115, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007, 19007,17114,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 17278,19007,19007,19007,17115,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,17485, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007,16763, 5945,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,16484, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007, 17486,19007,16485,11610,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11611,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,17487, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,17500,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119, 119, 119,19007, 119, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17501,19007,19007,19007, 19007,17500,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119,10987,19007,19007,19007,19007,19007,19007,10988, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10989,19007,10990,19007,17528,19007,19007, 10992,19007,19007,19007,19007,10993,19007,19007,10994,19007, 10995,19007,10996,19007,10997,10998,10999, 2525,10238,19007, 19007,19007,19007,10239,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10240,19007, 19007,19007,19007,19007,19007,10241,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10242, 19007,10243,19007,10244,19007,19007,10245,19007,19007,19007, 19007,10246,17529,19007,10247,19007,10248,19007,10249,19007, 10250,10251,11004,17530,19007,19007,19007,19007,19007,19007, 17531,15257,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15258,19007,19007,19007,19007,19007,19007, 15259,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,15260,19007,15261,19007,15262,19007, 19007,15263,19007,19007,19007,19007,15264,19007,19007,15265, 19007,15266,19007,15267,19007,15268,15269,15270,15257,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15258,19007,19007,19007,19007,19007,19007,15259,17532,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15260,19007,15261,19007,15262,19007,19007,15263,19007, 19007,19007,19007,15264,19007,19007,15265,19007,15266,19007, 15267,19007,15268,15269,15270,15257,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15258,19007,19007, 19007,19007,19007,19007,15259,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15260,19007, 15261,19007,15262,19007,19007,15263,19007,19007,19007,19007, 15264,17533,19007,15265,19007,15266,19007,15267,19007,15268, 15269,15270, 2525,16562,19007,19007,19007,19007,15256,19007, 19007,16563,17534,17534,17534,17534,17534,17534,17534,17534, 17534,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,16564,19007,19007,19007,19007,19007,19007, 16565,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,16566,19007,16567,19007,16569,19007, 19007,16570,19007,19007,19007,19007,16572,19007,19007,16573, 19007,16574,19007,16575,19007,16576,16836,16578, 2525,16562, 19007,19007,19007,19007,15256,19007,19007,16563,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,16564, 19007,19007,19007,19007,19007,19007,16565,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 16566,19007,16567,19007,16569,19007,17535,16570,19007,19007, 19007,19007,16572,19007,19007,16573,19007,16574,19007,16575, 19007,16576,16577,16578,15257,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15258,19007,19007,19007, 19007,19007,19007,15259,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15260,19007,15261, 19007,15262,19007,19007,15263,19007,19007,19007,19007,15264, 19007,19007,17546,19007,15266,19007,15267,19007,15268,15269, 15270,17460,15257,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,15258,19007,19007,19007,19007,19007, 19007,15259,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,15260,19007,15261,19007,15262, 19007,19007,15874,19007,19007,19007,19007,15875,19007,19007, 15265,19007,15266,19007,15267,19007,15268,15269,15270,17547, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11823,19007,19007,19007,19007,19007,19007,11824,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11825,19007,11826,19007,11827,19007,19007,11828, 19007,19007,19007,19007,11829,19007,19007,11830,19007,11831, 19007,11832,19007,11833,11834,11835,11822,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11823,19007, 19007,19007,19007,19007,19007,11824,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11825, 19007,11826,19007,11827,19007,19007,11828,17548,19007,19007, 19007,11829,19007,19007,11830,19007,11831,19007,11832,19007, 11833,11834,11835, 2525,11020,19007,19007,19007,19007,11021, 19007,19007,11022,17549,17549,17549,17549,17549,17549,17549, 17549,17549,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11023,19007,19007,19007,19007,19007, 19007,11024,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11025,19007,11026,19007,11027, 19007,19007,11028,19007,19007,19007,19007,11029,19007,19007, 11030,19007,11031,19007,11032,19007,11033,11836,11035, 2525, 11020,19007,19007,19007,19007,11021,19007,19007,11022,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11023,19007,19007,19007,19007,19007,19007,11024,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11025,19007,11026,19007,17550,19007,19007,11028,19007, 19007,19007,19007,11029,19007,19007,11030,19007,11031,19007, 11032,19007,11033,11034,11035, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,17557,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,12808, 119, 119, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17558,19007,19007,19007, 19007,17557,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119,17566, 119, 119, 119, 19007, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,17568,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,17114,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5945, 5945,17278,19007,19007, 19007,17115,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,17570, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007,16763, 5945,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007, 19007,19007,16484,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007,16485,17571,11610,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11611,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,17572, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,17585,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119, 119, 119,19007, 119, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17586,19007,19007,19007, 19007,17585,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119,17589,17589,17589,17589,17589,17589,17589,17589, 17589,19007,19007,19007,19007,19007,19007,19007,17589,17589, 17589,17589,17589,17590,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,17589,17589,17589,17589,17589,17589, 10987,19007,19007,19007,19007,19007,19007,10988,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,10989,19007,10990,19007,10991,19007,19007,10992,19007, 19007,19007,19007,10993,17612,19007,10994,19007,10995,19007, 10996,19007,10997,10998,11789, 2525,10238,19007,19007,19007, 19007,10239,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10240,19007,19007,19007, 19007,19007,19007,10241,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,10242,19007,10243, 19007,10244,19007,19007,10245,19007,19007,19007,19007,10246, 19007,19007,10247,19007,10248,19007,17613,19007,10250,10251, 10252,15257,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15258,19007,17614,19007,19007,19007,19007, 15259,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,15260,19007,15261,19007,15262,19007, 19007,15263,19007,19007,19007,19007,15264,19007,19007,15265, 19007,15266,19007,15267,19007,15268,15269,15270,15257,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15258,19007,19007,19007,19007,19007,19007,15259,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15260,19007,15261,19007,15262,19007,19007,15263,19007, 19007,19007,19007,15264,19007,19007,17615,19007,15266,19007, 15267,19007,15268,15269,15270,15257,19007,19007,19007,19007, 19007,19007,19007,19007,19007,17616,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15258,19007,19007, 19007,19007,19007,19007,15259,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15260,19007, 15261,19007,15262,19007,19007,15263,19007,19007,19007,19007, 15264,19007,19007,15265,19007,15266,19007,15267,19007,15268, 15269,15270, 2525,16562,19007,19007,19007,19007,15256,19007, 19007,17335,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,16564,19007,19007,19007,19007,19007,19007, 16565,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,16566,19007,16567,19007,16569,19007, 19007,16570,19007,19007,19007,19007,16572,19007,19007,16573, 19007,16574,19007,16575,19007,16576,16577,16578, 2525,16562, 17617,19007,19007,19007,15256,19007,17618,16563,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,16564, 19007,19007,19007,19007,19007,19007,16565,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 16566,19007,16567,19007,16569,19007,19007,16570,19007,19007, 19007,19007,16572,19007,19007,16573,19007,16574,19007,16575, 19007,16576,16577,16578,15257,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15258,19007,19007,19007, 19007,19007,19007,15259,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15260,19007,15261, 19007,15262,19007,19007,17627,19007,19007,19007,19007,15875, 19007,19007,15265,19007,15266,19007,15267,19007,15268,15269, 15270,11822,17628,17628,17628,17628,17628,17628,17628,17628, 17628,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11823,19007,19007,19007,19007,19007,19007, 11824,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11825,19007,11826,19007,11827,19007, 19007,11828,19007,19007,19007,19007,11829,19007,19007,11830, 19007,11831,19007,11832,19007,11833,12575,11835,11822,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11823,19007,19007,19007,19007,19007,19007,11824,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11825,19007,11826,19007,17629,19007,19007,11828,19007, 19007,19007,19007,11829,19007,19007,11830,19007,11831,19007, 11832,19007,11833,11834,11835, 2525,11020,17630,19007,19007, 19007,11021,19007,17631,11022,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11023,19007,19007,19007, 19007,19007,19007,11024,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11025,19007,11026, 19007,11027,19007,19007,11028,19007,19007,19007,19007,11029, 19007,19007,11030,19007,11031,19007,11032,19007,11033,11034, 11035, 2525,11020,19007,19007,19007,19007,11021,19007,19007, 11022,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11023,19007,19007,19007,19007,19007,19007,11024, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11025,19007,11026,19007,11027,19007,19007, 11028,19007,19007,19007,19007,11029,17632,19007,11030,19007, 11031,19007,11032,19007,11033,11034,11841, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 17557,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,12808, 119, 119, 119, 119,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,17558,19007, 19007,19007,19007,17557,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 12808, 119, 119, 119, 119,19007,17646, 119, 119, 119, 119, 119,19007,17647, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,17568,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 17646, 119, 119, 119, 119, 119,19007,17647, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17648,19007,19007,19007,19007, 17568,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007, 19007,19007,19007,19007,17114,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5945, 5945,17278,17650,19007,19007,17115, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007,16763, 5945, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007, 19007,16484,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007,16485,17651,11610,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11611,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,17652, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,17665,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17666,19007,19007,19007,19007,17665, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 17669,17669,17669,17669,17669,17669,17669,17669,17669,19007, 19007,19007,19007,19007,19007,19007,17669,17669,17669,17669, 17669,17670,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,17669,17669,17669,17669,17669,17669,10987,19007, 19007,19007,19007,19007,19007,10988,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10989, 19007,10990,19007,10991,19007,19007,10992,19007,19007,19007, 19007,10993,19007,19007,10994,19007,10995,19007,17691,19007, 10997,10998,10999, 2525,17692,19007,19007,19007,19007,10239, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,10240,19007,19007,19007,19007,19007, 19007,10241,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10242,19007,10243,19007,10244, 19007,19007,10245,19007,19007,19007,19007,10246,19007,19007, 10247,19007,10248,19007,10249,19007,10250,10251,10252,11011, 15257,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,15258,19007,19007,19007,19007,19007,19007,15259, 19007,19007,19007,19007,19007,17693,19007,19007,19007,19007, 19007,19007,19007,15260,19007,15261,19007,15262,19007,19007, 15263,19007,19007,19007,19007,15264,19007,19007,15265,19007, 15266,19007,15267,19007,15268,15269,15270,15257,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15258, 19007,19007,19007,19007,19007,19007,15259,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15260,19007,15261,19007,15262,19007,19007,17694,19007,19007, 19007,19007,15875,19007,19007,15265,19007,15266,19007,15267, 19007,15268,15269,15270,17695,19007,19007,19007,19007,19007, 19007,19007,15257,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,15258,19007,19007,19007,19007,19007, 19007,15259,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,15260,19007,15261,19007,15262, 19007,19007,15263,19007,19007,19007,19007,15264,19007,19007, 15265,19007,15266,19007,15267,19007,15268,15269,15270, 2525, 17696,19007,19007,19007,19007,15256,19007,19007,16563,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 16564,19007,19007,19007,19007,19007,19007,16565,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,16566,19007,16567,19007,16569,19007,19007,16570,19007, 19007,19007,19007,16572,19007,19007,16573,19007,16574,19007, 16575,19007,16576,16577,16578, 2525,16562,19007,19007,19007, 19007,15256,19007,19007,16563,17697,17697,17697,17697,17697, 17697,17697,17697,17697,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,16564,19007,19007,19007, 19007,19007,19007,16565,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,16566,19007,16567, 19007,16569,19007,19007,16570,19007,19007,19007,19007,16572, 19007,19007,16573,19007,16574,19007,16575,19007,16576,16577, 16578,16561,16561,16561,16561,16561,16561,16561,16561,16561, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,16844,19007,19007,19007,19007,19007,19007, 19007,17700,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,16845,15257,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15258,19007,19007,19007,19007,19007,19007,15259,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15260,19007,15261,19007,15262,19007,19007,15263,19007, 19007,19007,19007,15264,19007,15871,17703,19007,15266,19007, 15267,19007,15268,15269,15270,17704,19007,19007,19007,19007, 19007,17705,11822,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11823,19007,19007,19007,19007,19007, 19007,11824,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11825,19007,11826,19007,11827, 19007,19007,11828,19007,19007,19007,19007,11829,19007,19007, 11830,19007,11831,19007,11832,19007,11833,11834,11835,11822, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11823,19007,19007,19007,19007,19007,19007,11824,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11825,19007,11826,19007,11827,19007,19007,11828, 19007,19007,19007,19007,11829,17706,19007,11830,19007,11831, 19007,11832,19007,11833,11834,12580, 2525,17707,19007,19007, 19007,19007,11021,19007,19007,11022,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11023,19007,19007, 19007,19007,19007,19007,11024,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11025,19007, 11026,19007,11027,19007,19007,11028,19007,19007,19007,19007, 11029,19007,19007,11030,19007,11031,19007,11032,19007,11033, 11034,11035, 2525,11020,19007,19007,19007,19007,11021,19007, 19007,11022,17708,17708,17708,17708,17708,17708,17708,17708, 17708,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11023,19007,19007,19007,19007,19007,19007, 11024,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11025,19007,11026,19007,11027,19007, 19007,11028,19007,19007,19007,19007,11029,19007,19007,11030, 19007,11031,19007,11032,19007,11033,11034,11035, 119, 119, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,17568,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007,17646, 119, 119, 119, 119, 119,19007,17647, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,17568,19007,19007,17718,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,17114, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5945, 5945,17278,19007, 17720,19007,17115, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007,16763, 5945,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,16484,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 5945, 5945, 5945,19007,19007,19007,16485, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,17721,11610,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11611,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,17722, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 17736,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,17737, 19007,19007,19007,19007,17736,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119,17760,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,10987,19007,19007,19007,19007, 19007,19007,10988,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,10989,19007,10990,19007, 10991,19007,19007,10992,19007,19007,19007,19007,10993,19007, 19007,10994,19007,10995,19007,10996,19007,10997,10998,10999, 11796, 2525,10238,17761,19007,19007,19007,10239,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10240,19007,10986,19007,19007,19007,19007,10241, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10242,19007,10243,19007,10244,19007,19007, 10245,19007,19007,19007,19007,10246,19007,19007,10247,19007, 10248,19007,10249,19007,10250,10251,10252,15257,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15258, 19007,19007,19007,19007,19007,19007,15259,19007,19007,19007, 19007,19007,17762,19007,19007,19007,19007,19007,19007,19007, 15260,19007,15261,19007,15262,19007,19007,15263,19007,19007, 19007,19007,15264,19007,19007,15265,19007,15266,19007,15267, 19007,15268,15269,15270,15257,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15258,19007,19007,19007, 19007,19007,19007,15259,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15260,19007,15261, 19007,15262,19007,19007,15263,19007,19007,19007,19007,15264, 19007,15871,17763,19007,15266,19007,15267,19007,15268,15269, 15270,15257,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 17764,19007,19007,15258,19007,19007,19007,19007,19007,19007, 15259,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,15260,19007,15261,19007,15262,19007, 19007,15263,19007,19007,19007,19007,15264,19007,19007,15265, 19007,15266,19007,15267,19007,15268,15269,15270, 2525,16562, 19007,19007,19007,19007,15256,19007,19007,16563,19007,19007, 19007,19007,17765,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,16564, 19007,16835,19007,19007,19007,19007,16565,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 16566,19007,16567,19007,16569,19007,19007,16570,19007,19007, 19007,19007,16572,19007,19007,16573,19007,16574,19007,16575, 19007,16576,16577,16578, 2525,16562,17617,19007,19007,19007, 15256,19007,19007,16563,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,16564,19007,19007,19007,19007, 19007,19007,16565,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,16566,19007,16567,19007, 16569,19007,19007,16570,19007,19007,19007,19007,16572,19007, 19007,16573,19007,16574,19007,16575,19007,16576,16577,16578, 17771,19007,19007,19007,19007,19007,19007,19007,11822,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11823,19007,19007,19007,19007,19007,19007,11824,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11825,19007,11826,19007,11827,19007,19007,11828,19007, 19007,19007,19007,11829,19007,19007,11830,19007,11831,19007, 11832,19007,11833,11834,11835,11822,17772,17772,17772,17772, 17772,17772,17772,17772,17772,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11823,19007,19007, 19007,19007,19007,19007,11824,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11825,19007, 11826,19007,11827,19007,19007,11828,19007,19007,19007,19007, 11829,19007,19007,11830,19007,11831,19007,11832,19007,11833, 11834,11835, 2525,11020,19007,19007,19007,19007,11021,19007, 19007,11022,19007,19007,17774,19007,16587,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11023,19007,11821,19007,19007,19007,19007, 11024,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11025,19007,11026,19007,11027,19007, 19007,11028,19007,19007,19007,19007,11029,19007,19007,11030, 19007,11031,19007,11032,19007,11033,11034,11035, 2525,11020, 17630,19007,19007,19007,11021,19007,19007,11022,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11023, 19007,19007,19007,19007,19007,19007,11024,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11025,19007,11026,19007,11027,19007,19007,11028,19007,19007, 19007,19007,11029,19007,19007,11030,19007,11031,19007,11032, 19007,11033,11034,11035, 119, 119,19007,17646, 119, 119, 119, 119, 119,19007,17647, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,17568,19007,19007, 19007,19007,19007,17782,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 5945, 5945, 19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007, 19007,17114,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 17278,19007,19007,19007,17115,17784, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007,16763, 5945,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,16484, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007, 19007,19007,16485,19007,17785,11610,17786,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11611, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 17798,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,17799, 19007,19007,19007,19007,17798,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119,17802,17802,17802,17802,17802, 17802,17802,17802,17802,19007,19007,19007,19007,19007,19007, 19007,17802,17802,17802,17802,17802,17803,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,17802,17802,17802, 17802,17802,17802,17821,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10987,19007,19007,19007,19007,19007,19007,10988, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,10989,19007,10990,19007,10991,19007,19007, 10992,19007,19007,19007,19007,10993,19007,19007,10994,19007, 10995,19007,10996,19007,10997,10998,10999, 2525,10238,19007, 19007,19007,19007,10239,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,10240,19007, 19007,19007,19007,19007,19007,10241,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,10242, 19007,10243,19007,10244,19007,19007,10245,19007,19007,19007, 19007,10246,19007,19007,10247,19007,10248,19007,10249,19007, 10250,10251,10252,15257,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,15258,19007,19007,19007,19007, 19007,19007,15259,19007,19007,17822,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15260,19007,15261,19007, 15262,19007,19007,15263,19007,19007,19007,19007,15264,19007, 19007,15265,19007,15266,19007,15267,19007,15268,15269,15270, 2525,17766,19007,19007,19007,19007,15256,19007,19007,16563, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,16564,19007,19007,19007,19007,19007,19007,16565,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,16566,19007,16567,19007,16569,19007,19007,16846, 19007,19007,19007,19007,16847,19007,19007,16573,19007,16574, 19007,16575,19007,16576,16577,16578,15257,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15258,19007, 19007,19007,19007,19007,19007,15259,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15260, 19007,15261,19007,15262,19007,19007,15263,19007,19007,19007, 17823,15264,19007,19007,15265,19007,15266,19007,15267,19007, 15268,15269,15270, 2525,16562,19007,19007,19007,19007,15256, 19007,19007,16563,17824,17824,17824,17824,17824,17824,17824, 17824,17824,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,16564,19007,19007,19007,19007,19007, 19007,16565,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,16566,19007,16567,19007,16569, 19007,19007,16570,19007,19007,19007,19007,16572,19007,19007, 16573,19007,16574,19007,16575,19007,16576,16577,16578,11822, 19007,19007,17829,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11823,19007,19007,19007,19007,19007,19007,11824,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11825,19007,11826,19007,11827,19007,19007,11828, 19007,19007,19007,19007,11829,19007,19007,11830,19007,11831, 19007,11832,19007,11833,11834,11835,17704,19007,19007,19007, 19007,19007,19007,11822,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11823,19007,19007,19007,19007, 19007,19007,11824,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,11825,19007,11826,19007, 11827,19007,19007,11828,19007,19007,19007,19007,11829,19007, 19007,11830,19007,11831,19007,11832,19007,11833,11834,11835, 17830,19007,19007,19007,19007,19007,19007,19007,11822,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11823,19007,19007,19007,19007,19007,19007,11824,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11825,19007,11826,19007,11827,19007,19007,11828,19007, 19007,19007,19007,11829,19007,19007,11830,19007,11831,19007, 11832,19007,11833,11834,11835,12587, 2525,11020,19007,19007, 19007,19007,11021,19007,19007,11022,17831,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,11023,19007,19007, 19007,19007,19007,19007,11024,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11025,19007, 11026,19007,11027,19007,19007,11028,19007,19007,19007,19007, 11029,19007,19007,11030,19007,11031,19007,11032,19007,11033, 11034,11035, 2525,11020,17832,19007,19007,19007,11021,19007, 19007,11022,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11023,19007,11821,19007,19007,19007,19007, 11024,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11025,19007,11026,19007,11027,19007, 19007,11028,19007,19007,19007,19007,11029,19007,19007,11030, 19007,11031,19007,11032,19007,11033,11034,11035, 119, 119, 19007,17838, 119, 119, 119, 119, 119,19007,17647, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007, 19007,17568,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945, 19007,19007,19007,19007,19007,17114,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5945, 5945,17278,19007,19007,19007,17115,17840, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 16763, 5945,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007, 19007,19007,19007,16484,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007,16485,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,17841,11610,19007,17842,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11611, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,17853,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17854,19007,19007, 19007,19007,17853,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119,17857,17857,17857,17857,17857,17857,17857, 17857,17857,19007,19007,19007,19007,19007,19007,19007,17857, 17857,17857,17857,17857,17858,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,17857,17857,17857,17857,17857, 17857,10987,19007,19007,19007,19007,19007,19007,10988,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,10989,19007,10990,19007,10991,19007,19007,10992, 19007,19007,19007,19007,10993,19007,19007,10994,19007,10995, 19007,10996,19007,10997,10998,10999,17880,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15258,19007, 19007,19007,19007,19007,19007,15259,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15260, 19007,15261,19007,15262,19007,19007,15263,19007,19007,19007, 19007,15264,19007,19007,15265,19007,15266,19007,15267,19007, 15268,15269,15270,15257,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,15258,19007,19007,19007,19007, 19007,19007,15259,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15260,19007,15261,19007, 15262,19007,19007,15263,17881,19007,19007,19007,15264,19007, 19007,15265,19007,15266,19007,15267,19007,15268,15269,15270, 2525,16562,19007,19007,19007,19007,15256,19007,19007,16563, 17882,17882,17882,17882,17882,17882,17882,17882,17882,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,16564,19007,19007,19007,19007,19007,19007,16565,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,16566,19007,16567,19007,16569,19007,19007,16570, 19007,19007,19007,19007,16572,19007,19007,16573,19007,16574, 19007,16575,19007,16576,16577,16578, 2525,16562,19007,19007, 19007,19007,15256,19007,19007,16563,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,16564,19007,19007, 19007,19007,19007,19007,16565,19007,19007,19007,19007,19007, 17883,19007,19007,19007,19007,19007,19007,19007,16566,19007, 16567,19007,16569,19007,19007,16570,19007,19007,19007,19007, 16572,19007,19007,16573,19007,16574,19007,16575,19007,16576, 16577,16578,11822,17887,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11823,19007,19007,19007,19007,19007, 19007,11824,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11825,19007,11826,19007,11827, 19007,19007,11828,19007,19007,19007,19007,11829,19007,19007, 11830,19007,11831,19007,11832,19007,11833,11834,11835,17888, 19007,19007,19007,19007,19007,19007,11822,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,11823,19007, 19007,19007,19007,19007,19007,11824,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11825, 19007,11826,19007,11827,19007,19007,11828,19007,19007,19007, 19007,11829,19007,19007,11830,19007,11831,19007,11832,19007, 11833,11834,11835, 2525,11020,19007,19007,19007,19007,11021, 19007,19007,11022,17889,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,11023,19007,19007,19007,19007,19007, 19007,11024,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,11025,19007,11026,19007,11027, 19007,19007,11028,19007,19007,19007,19007,11029,19007,19007, 11030,19007,11031,19007,11032,19007,11033,11034,11035, 2525, 11020,19007,19007,19007,19007,11021,19007,19007,11022,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11023,19007,19007,19007,19007,19007,19007,11024,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,11025,19007,11026,19007,11027,19007,19007,11028,19007, 19007,19007,19007,11029,19007,19007,11030,19007,11031,19007, 11032,19007,11033,11034,11035, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007,17114,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 5945, 5945,17278,19007,19007, 19007,17115,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,17895, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007,16763, 5945,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007,19007,19007, 16484,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 19007,19007,19007,16485,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,17896, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,19007,19007, 19007,19007,19007,17907,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,17908,19007,19007,19007,19007,17907,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119,15257,17931, 17931,17931,17931,17931,17931,17931,17931,17931,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15258,19007,19007,19007,19007,19007,19007,15259,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15260,19007,15261,19007,15262,19007,19007,15263,19007, 19007,19007,19007,15264,19007,19007,15265,19007,15266,19007, 15267,19007,15268,15865,15270,15257,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15258,19007,19007, 19007,19007,19007,19007,15259,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15260,19007, 15261,19007,17932,19007,19007,15263,19007,19007,19007,19007, 15264,19007,19007,15265,19007,15266,19007,15267,19007,15268, 15269,15270, 2525,17934,19007,19007,19007,19007,17935,19007, 19007,17936,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,17937,19007,19007,19007,19007,19007,19007, 17938,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,17939,19007,17940,19007,17941,19007, 19007,17942,19007,19007,19007,19007,17943,19007,19007,17944, 19007,17945,19007,17946,19007,17947,17948,17949, 2525,16562, 19007,19007,19007,19007,15256,19007,19007,16563,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,16564, 19007,19007,19007,19007,19007,19007,16565,19007,19007,19007, 19007,19007,17950,19007,19007,19007,19007,19007,19007,19007, 16566,19007,16567,19007,16569,19007,19007,16570,19007,19007, 19007,19007,16572,19007,19007,16573,19007,16574,19007,16575, 19007,16576,16577,16578, 2525,16562,19007,19007,19007,19007, 15256,19007,19007,16563,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,16564,19007,19007,19007,19007, 19007,19007,16565,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,16566,19007,16567,19007, 16569,19007,19007,16570,19007,19007,19007,19007,16572,19007, 16842,17951,19007,16574,19007,16575,19007,16576,16577,16578, 11822,17953,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,11823,19007,19007,19007,19007,19007,19007,11824, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,11825,19007,11826,19007,11827,19007,19007, 11828,19007,19007,19007,19007,11829,19007,19007,11830,19007, 11831,19007,11832,19007,11833,11834,11835,11822,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,11823, 19007,19007,19007,19007,19007,19007,11824,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 11825,19007,11826,19007,11827,19007,19007,11828,19007,19007, 19007,19007,11829,19007,19007,11830,19007,11831,19007,11832, 19007,11833,11834,11835, 2525,17934,19007,19007,19007,19007, 17935,19007,19007,17936,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,17937,19007,19007,19007,19007, 19007,19007,17938,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,17939,19007,17940,19007, 17941,19007,19007,17942,19007,19007,19007,19007,17943,19007, 19007,17944,19007,17945,19007,17946,19007,17947,17948,17949, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007, 19007,19007,19007,17114,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945,17278,19007,19007,19007,17115,19007,17958, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007,16763, 5945,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,15783, 5945, 5945, 5945,19007,19007,19007, 19007,19007,16484,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,19007,19007,19007,16485, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,17971, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119, 119,17972,19007, 19007,19007,19007,17971,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119,17975,17975,17975,17975,17975,17975, 17975,17975,17975,19007,19007,19007,19007,19007,19007,19007, 17975,17975,17975,17975,17975,17976,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,17975,17975,17975,17975, 17975,17975,17994,19007,19007,19007,19007,19007,17995,15257, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15258,19007,19007,19007,19007,19007,19007,15259,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,15260,19007,15261,19007,15262,19007,19007,15263, 19007,19007,19007,19007,15264,19007,19007,15265,19007,15266, 19007,15267,19007,15268,15269,15270,15257,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15258,19007, 19007,19007,19007,19007,19007,15259,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15260, 19007,15261,19007,15262,19007,19007,15263,19007,19007,19007, 19007,15264,17996,19007,15265,19007,15266,19007,15267,19007, 15268,15269,15870, 2525,17934,19007,19007,19007,19007,17935, 19007,19007,17936,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,17937,19007,19007,19007,19007,19007, 19007,17938,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,17939,19007,17940,19007,17941, 19007,19007,17942,19007,19007,19007,19007,17943,19007,19007, 17944,19007,17945,19007,17946,19007,17947,17948,17949, 2525, 17934,19007,19007,19007,19007,17935,19007,19007,17936,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 17937,19007,17997,19007,19007,19007,19007,17938,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,17939,19007,17940,19007,17941,19007,19007,17942,19007, 19007,19007,19007,17943,19007,19007,17944,19007,17945,19007, 17946,19007,17947,17948,17949,17998,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,17999,19007,19007, 19007,19007,19007,19007,18000,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,18001,19007, 18002,19007,18003,19007,19007,18004,19007,19007,19007,19007, 18005,19007,19007,18006,19007,18007,19007,18008,19007,18009, 18010,18011, 2525,16562,19007,19007,19007,19007,15256,19007, 19007,16563,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,16564,19007,19007,19007,19007,19007,19007, 16565,19007,19007,18029,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,16566,19007,16567,19007,16569,19007, 19007,16570,19007,19007,19007,19007,16572,19007,19007,16573, 19007,16574,19007,16575,19007,16576,16577,16578, 2525,17766, 19007,19007,19007,19007,15256,19007,19007,16563,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,16564, 19007,19007,19007,19007,19007,19007,16565,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 16566,19007,16567,19007,16569,19007,19007,16846,19007,19007, 19007,19007,16847,19007,19007,16573,19007,16574,19007,16575, 19007,16576,16577,16578,17998,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,17999,19007,19007,19007, 19007,19007,19007,18000,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,18001,19007,18002, 19007,18003,19007,19007,18004,19007,19007,19007,19007,18005, 19007,19007,18006,19007,18007,19007,18008,19007,18009,18010, 18011, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945, 19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007, 19007,19007,19007,19007,17114,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 5945, 5945,17278,19007,19007,19007,17115,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,18035, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,18046,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119, 119, 119,19007, 119, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,18047,19007,19007,19007, 19007,18046,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119,18050,18050,18050,18050,18050,18050,18050,18050, 18050,19007,19007,19007,19007,19007,19007,19007,18050,18050, 18050,18050,18050,18051,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,18050,18050,18050,18050,18050,18050, 18070,19007,19007,19007,19007,19007,19007,19007,15257,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 15258,19007,19007,19007,19007,19007,19007,15259,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15260,19007,15261,19007,15262,19007,19007,15263,19007, 19007,19007,19007,15264,19007,19007,15265,19007,15266,19007, 15267,19007,15268,15269,15270,15257,18071,18071,18071,18071, 18071,18071,18071,18071,18071,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15258,19007,19007, 19007,19007,19007,19007,15259,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15260,19007, 15261,19007,15262,19007,19007,15263,19007,19007,19007,19007, 15264,19007,19007,15265,19007,15266,19007,15267,19007,15268, 15269,15270, 2525,17934,19007,19007,19007,19007,17935,19007, 19007,17936,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,17937,19007,19007,19007,19007,19007,19007, 17938,19007,19007,19007,19007,19007,18073,19007,19007,19007, 19007,19007,19007,19007,17939,19007,17940,19007,17941,19007, 19007,17942,19007,19007,19007,19007,17943,19007,19007,17944, 19007,17945,19007,17946,19007,17947,17948,17949,17998,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 17999,19007,19007,19007,19007,19007,19007,18000,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,18001,19007,18002,19007,18003,19007,19007,18004,19007, 19007,19007,19007,18005,19007,19007,18006,19007,18007,19007, 18008,19007,18009,18074,18011,17998,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,18075,19007,19007,19007,19007,17999,19007,19007, 19007,19007,19007,19007,18000,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,18001,19007, 18002,19007,18003,19007,19007,18004,19007,19007,19007,19007, 18005,19007,19007,18006,19007,18007,19007,18008,19007,18009, 18010,18011,17998,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,17999,19007,19007,19007,19007,19007, 19007,18000,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,18001,19007,18002,19007,18003, 19007,19007,18004,19007,19007,19007,19007,18005,19007,19007, 18006,19007,18007,19007,18008,19007,18009,18010,18011,18076, 17998,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,17999,19007,19007,19007,19007,19007,19007,18000, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,18001,19007,18002,18077,18003,19007,19007, 18004,19007,19007,19007,19007,18005,19007,19007,18006,19007, 18007,19007,18008,19007,18009,18010,18011,17998,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,17999, 19007,19007,19007,19007,19007,19007,18000,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 18001,19007,18002,19007,18003,19007,18078,18004,19007,19007, 19007,19007,18005,19007,19007,18006,19007,18007,19007,18008, 19007,18009,18010,18011,17998,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,17999,19007,19007,19007, 19007,19007,19007,18000,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,18001,19007,18002, 19007,18003,19007,19007,18004,19007,19007,19007,19007,18005, 19007,19007,18006,19007,18007,19007,18008,19007,18009,18010, 18079,17998,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,17999,19007,19007,19007,19007,19007,19007, 18000,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,18001,19007,18002,19007,18003,19007, 19007,18004,19007,19007,19007,19007,18005,19007,18080,18006, 19007,18007,19007,18008,19007,18009,18010,18011,17998,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 17999,19007,19007,19007,19007,19007,19007,18000,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,18081,19007,18002,19007,18003,19007,19007,18004,19007, 19007,19007,19007,18005,19007,19007,18006,19007,18007,19007, 18008,19007,18009,18010,18011,18082,17998,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,17999,19007, 19007,19007,19007,19007,19007,18000,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,18001, 19007,18002,19007,18003,19007,19007,18083,19007,19007,19007, 19007,18084,19007,19007,18006,19007,18007,19007,18008,19007, 18009,18010,18011,17998,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,17999,19007,19007,19007,19007, 19007,19007,18000,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,18001,19007,18002,19007, 18003,19007,19007,18004,19007,19007,19007,19007,18005,19007, 18085,18006,19007,18007,19007,18008,19007,18009,18010,18011, 17998,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,17999,19007,19007,19007,19007,19007,19007,18000, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,18001,19007,18002,19007,18003,19007,19007, 18004,19007,19007,19007,19007,18005,19007,19007,18006,19007, 18007,19007,18008,19007,18009,18010,18011,18086,18087,19007, 17998,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,17999,19007,19007,19007,19007,19007,19007,18000, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,18001,19007,18002,19007,18003,19007,19007, 18004,19007,19007,19007,19007,18005,19007,19007,18006,19007, 18007,19007,18008,19007,18009,18010,18011,17998,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,17999, 19007,19007,19007,19007,19007,19007,18000,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 18001,19007,18002,19007,18088,19007,19007,18004,19007,19007, 19007,19007,18005,19007,19007,18089,19007,18007,19007,18008, 19007,18009,18010,18011,17998,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,17999,19007,19007,19007, 19007,19007,19007,18000,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,18090,19007,18002, 19007,18003,19007,19007,18004,19007,19007,19007,19007,18005, 19007,19007,18006,19007,18007,19007,18008,19007,18009,18010, 18011, 2525,17934,19007,19007,19007,19007,17935,19007,19007, 17936,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,17937,19007,19007,19007,19007,19007,19007,17938, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,17939,19007,17940,19007,18026,19007,19007, 17942,19007,19007,19007,19007,17943,19007,19007,18091,19007, 17945,19007,17946,19007,17947,17948,17949, 2525,16562,19007, 19007,19007,19007,15256,19007,19007,18108,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,16564,19007, 19007,19007,19007,19007,19007,16565,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,16566, 19007,16567,19007,16569,19007,19007,16570,19007,19007,19007, 19007,16572,19007,19007,16573,19007,16574,19007,16575,19007, 16576,16577,16578, 2525,16562,19007,19007,19007,19007,15256, 19007,19007,16563,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,16564,19007,19007,19007,19007,19007, 19007,16565,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,16566,19007,16567,19007,16569, 19007,19007,16570,18109,19007,19007,19007,16572,19007,19007, 16573,19007,16574,19007,16575,19007,16576,16577,16578, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945, 5945, 5945, 5945, 5945,19007,19007,19007, 19007,19007,17114,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945,17278,19007,19007,19007,17115,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,18114, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119, 119, 19007,19007,19007,19007,19007,18124,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,18125,19007,19007,19007,19007,18124, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 15257,19007,19007,18146,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,15258,19007,19007,19007,19007,19007,19007,15259, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15260,19007,15261,19007,15262,19007,19007, 15263,19007,19007,19007,19007,15264,19007,19007,15265,19007, 15266,19007,15267,19007,15268,15269,15270,17994,19007,19007, 19007,19007,19007,19007,15257,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15258,19007,19007,19007, 19007,19007,19007,15259,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15260,19007,15261, 19007,15262,19007,19007,15263,19007,19007,19007,19007,15264, 19007,19007,15265,19007,15266,19007,15267,19007,15268,15269, 15270,18147,19007,19007,19007,19007,19007,19007,19007,15257, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15258,19007,19007,19007,19007,19007,19007,15259,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,15260,19007,15261,19007,15262,19007,19007,15263, 19007,19007,19007,19007,15264,19007,19007,15265,19007,15266, 19007,15267,19007,15268,15269,15270,15877, 2525,17934,19007, 19007,19007,19007,17935,19007,19007,17936,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,17937,19007, 19007,19007,19007,19007,19007,17938,19007,19007,19007,19007, 19007,18148,19007,19007,19007,19007,19007,19007,19007,17939, 19007,17940,19007,17941,19007,19007,17942,19007,19007,19007, 19007,17943,19007,19007,17944,19007,17945,19007,17946,19007, 17947,17948,17949,17998,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,17999,19007,19007,19007,19007, 19007,19007,18000,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,18001,19007,18002,19007, 18088,19007,19007,18004,19007,19007,19007,19007,18005,19007, 19007,18149,19007,18007,19007,18008,19007,18009,18010,18011, 17998,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,17999,19007,19007,18150,19007,19007,19007,18000, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,18001,19007,18002,19007,18003,19007,19007, 18004,19007,19007,19007,19007,18005,19007,19007,18006,19007, 18007,19007,18008,19007,18009,18010,18011,17998,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,18151,19007,19007,19007,19007,17999, 19007,19007,19007,19007,19007,19007,18000,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 18152,19007,18002,19007,18003,19007,19007,18004,19007,19007, 19007,19007,18005,19007,19007,18006,19007,18007,19007,18008, 19007,18009,18010,18011,17998,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,17999,19007,19007,19007, 19007,19007,19007,18000,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,18001,19007,18002, 19007,18003,19007,19007,18004,19007,19007,19007,19007,18153, 19007,19007,18006,19007,18007,19007,18008,19007,18009,18010, 18011,17998,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,17999,19007,19007,19007,19007,19007,19007, 18000,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,18001,19007,18002,19007,18003,19007, 19007,18004,18154,19007,19007,19007,18005,19007,19007,18006, 19007,18007,19007,18008,19007,18009,18010,18011,17998,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 17999,19007,19007,19007,19007,19007,19007,18000,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,18090,19007,18002,19007,18003,19007,19007,18004,19007, 19007,19007,19007,18005,19007,19007,18006,19007,18007,19007, 18155,19007,18009,18010,18011,17998,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,17999,19007,19007, 19007,19007,19007,19007,18000,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,18001,19007, 18002,19007,18003,19007,19007,18004,19007,19007,19007,19007, 18005,19007,19007,18006,19007,18156,19007,18008,19007,18009, 18010,18011,17998,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,17999,19007,19007,19007,19007,19007, 19007,18000,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,18001,19007,18002,18077,18003, 19007,19007,18004,18157,19007,19007,19007,18005,19007,19007, 18006,19007,18007,19007,18008,19007,18009,18010,18011, 2525, 17934,19007,19007,19007,19007,17935,18166,19007,17936,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 17937,19007,19007,19007,19007,19007,19007,17938,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,17939,19007,17940,19007,17941,19007,19007,18021,19007, 19007,19007,19007,18022,19007,19007,17944,19007,17945,19007, 17946,19007,17947,17948,17949, 2525,16562,19007,19007,19007, 19007,15256,19007,19007,16563,18183,18183,18183,18183,18183, 18183,18183,18183,18183,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,16564,19007,19007,19007, 19007,19007,19007,16565,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,16566,19007,16567, 19007,16569,19007,19007,16570,19007,19007,19007,19007,16572, 19007,19007,16573,19007,16574,19007,16575,19007,16576,16836, 16578, 2525,16562,19007,19007,19007,19007,15256,19007,19007, 16563,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,16564,19007,19007,19007,19007,19007,19007,16565, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,16566,19007,16567,19007,18184,19007,19007, 16570,19007,19007,19007,19007,16572,19007,19007,16573,19007, 16574,19007,16575,19007,16576,16577,16578, 5945, 5945,19007, 5945, 5945, 5945, 5945, 5945, 5945,19007, 5945, 5945,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 5945, 5945, 5945,15783, 5945, 5945, 5945,19007,19007,19007,19007,19007, 17114,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 5945, 5945,17278, 19007,19007,19007,17115, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,18198,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 19007, 119, 119, 119, 119,19007, 119, 119, 119,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,18199,19007,19007,19007, 19007,18198,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119,18202,18202,18202,18202,18202,18202,18202,18202, 18202,19007,19007,19007,19007,19007,19007,19007,18202,18202, 18202,18202,18202,18203,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,18202,18202,18202,18202,18202,18202, 15257,18220,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,15258,19007,19007,19007,19007,19007,19007,15259, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,15260,19007,15261,19007,15262,19007,19007, 15263,19007,19007,19007,19007,15264,19007,19007,15265,19007, 15266,19007,15267,19007,15268,15269,15270,18221,19007,19007, 19007,19007,19007,19007,15257,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,15258,19007,19007,19007, 19007,19007,19007,15259,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,15260,19007,15261, 19007,15262,19007,19007,15263,19007,19007,19007,19007,15264, 19007,19007,15265,19007,15266,19007,15267,19007,15268,15269, 15270, 2525,17934,19007,19007,19007,19007,17935,19007,19007, 17936,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,17937,19007,19007,19007,19007,19007,19007,17938, 19007,19007,18222,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,17939,19007,17940,19007,17941,19007,19007, 17942,19007,19007,19007,19007,17943,19007,19007,17944,19007, 17945,19007,17946,19007,17947,17948,17949,18223,19007,17998, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,17999,19007,19007,19007,19007,19007,19007,18000,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,18001,19007,18002,19007,18003,19007,19007,18083, 19007,19007,19007,19007,18084,19007,19007,18006,19007,18007, 19007,18008,19007,18009,18010,18011,17998,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,17999,19007, 19007,19007,19007,19007,18224,18000,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,18001, 19007,18002,19007,18003,19007,19007,18004,19007,19007,19007, 19007,18005,19007,19007,18006,19007,18007,19007,18008,19007, 18009,18010,18011,17998,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,17999,19007,19007,19007,19007, 19007,19007,18000,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,18001,19007,18002,18225, 18003,19007,19007,18004,19007,19007,19007,19007,18005,19007, 19007,18006,19007,18007,19007,18008,19007,18009,18010,18011, 17998,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,17999,19007,19007,19007,19007,19007,19007,18000, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,18001,19007,18002,18226,18003,19007,19007, 18004,19007,19007,19007,19007,18005,19007,19007,18006,19007, 18007,19007,18008,19007,18009,18010,18011,17998,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,17999, 19007,19007,19007,19007,19007,19007,18000,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 18081,19007,18002,19007,18003,19007,19007,18004,18227,19007, 19007,19007,18005,19007,19007,18006,19007,18007,19007,18008, 19007,18009,18010,18011,18082, 2525,17934,19007,19007,19007, 19007,17935,19007,19007,17936,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,17937,19007,19007,19007, 19007,19007,19007,17938,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,17939,19007,17940, 18015,17941,19007,19007,17942,18099,19007,19007,19007,17943, 19007,19007,17944,19007,17945,19007,17946,19007,17947,17948, 17949, 2525,16562,18256,19007,19007,19007,15256,19007,18257, 16563,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,16564,19007,19007,19007,19007,19007,19007,16565, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,16566,19007,16567,19007,16569,19007,19007, 16570,19007,19007,19007,19007,16572,19007,19007,16573,19007, 16574,19007,16575,19007,16576,16577,16578, 2525,16562,19007, 19007,19007,19007,15256,19007,19007,16563,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,16564,19007, 19007,19007,19007,19007,19007,16565,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,16566, 19007,16567,19007,16569,19007,19007,16570,19007,19007,19007, 19007,16572,18258,19007,16573,19007,16574,19007,16575,19007, 16576,16577,16841, 119, 119,19007, 119, 119, 119, 119, 19007, 119, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,18269,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,18270,19007,19007,19007,19007, 18269,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119,18273,18273,18273,18273,18273,18273,18273,18273,18273, 19007,19007,19007,19007,19007,19007,19007,18273,18273,18273, 18273,18273,18274,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,18273,18273,18273,18273,18273,18273,15257, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,15258,19007,19007,19007,19007,19007,19007,15259,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,15260,19007,15261,19007,15262,19007,19007,15263, 19007,19007,19007,19007,15264,19007,19007,15265,19007,15266, 19007,15267,19007,15268,15269,15270,15257,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,15258,19007, 19007,19007,19007,19007,19007,15259,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,15260, 19007,15261,19007,15262,19007,19007,15263,19007,19007,19007, 19007,15264,19007,19007,15265,19007,15266,19007,15267,19007, 15268,15269,15270, 2525,17934,19007,19007,19007,19007,17935, 19007,19007,18291,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,17937,19007,19007,19007,19007,19007, 19007,17938,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,17939,19007,17940,19007,17941, 19007,19007,17942,19007,19007,19007,19007,17943,19007,19007, 17944,19007,17945,19007,17946,19007,17947,17948,17949,17998, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,17999,19007,19007,19007,19007,19007,19007,18000,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,18235,19007,18236,19007,18003,19007,19007,18004, 19007,19007,19007,18292,18005,19007,19007,18006,19007,18007, 18238,18008,19007,18009,18010,18011,18293,19007,19007,19007, 19007,19007,19007,19007,17998,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,17999,19007,19007,19007, 19007,19007,19007,18000,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,18001,19007,18002, 19007,18003,19007,19007,18004,19007,19007,19007,19007,18005, 19007,19007,18006,19007,18007,19007,18008,19007,18009,18010, 18011,17998,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,17999,19007,19007,19007,19007,19007,19007, 18000,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,18001,19007,18002,19007,18003,19007, 19007,18004,19007,19007,19007,19007,18294,19007,19007,18006, 19007,18007,19007,18008,19007,18009,18010,18011,17998,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 17999,19007,19007,19007,19007,19007,19007,18000,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,18001,19007,18002,19007,18003,19007,19007,18004,19007, 19007,19007,19007,18295,19007,19007,18006,19007,18007,19007, 18008,19007,18009,18010,18011,17998,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,17999,19007,19007, 19007,19007,19007,19007,18000,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,18001,19007, 18002,19007,18003,19007,19007,18004,19007,19007,19007,19007, 18005,18296,19007,18006,19007,18007,19007,18008,19007,18009, 18010,18011,17998,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,17999,19007,19007,19007,19007,19007, 19007,18000,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,18001,18297,18002,19007,18003, 19007,19007,18004,19007,19007,19007,19007,18005,19007,19007, 18006,19007,18007,19007,18008,19007,18009,18010,18011,17998, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,17999,19007,19007,19007,19007,19007,19007,18000,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,18001,19007,18002,19007,18298,19007,19007,18004, 19007,19007,19007,19007,18005,19007,19007,18006,19007,18007, 19007,18008,19007,18009,18010,18011, 2525,17934,19007,19007, 19007,19007,17935,19007,19007,17936,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,17937,19007,19007, 19007,19007,19007,19007,17938,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,17939,19007, 17940,19007,17941,19007,19007,17942,19007,19007,19007,19007, 17943,19007,19007,17944,19007,17945,19007,17946,19007,17947, 17948,17949,17998,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,17999,19007,19007,19007,19007,19007, 19007,18000,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,18001,19007,18002,19007,18003, 19007,19007,18004,19007,19007,19007,18299,18005,19007,19007, 18006,19007,18007,19007,18008,19007,18009,18010,18011,17998, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,17999,19007,19007,19007,19007,19007,19007,18000,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,18001,19007,18002,18300,18003,19007,19007,18004, 19007,19007,19007,19007,18005,19007,19007,18006,19007,18007, 19007,18008,19007,18009,18010,18011,17998,19007,19007,19007, 18301,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,17999,19007, 19007,19007,19007,19007,19007,18000,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,18001, 19007,18002,19007,18003,19007,19007,18004,19007,19007,19007, 19007,18005,19007,19007,18006,19007,18007,19007,18008,19007, 18009,18010,18011,17998,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,17999,19007,19007,19007,19007, 19007,19007,18000,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,18302,19007,18002,19007, 18003,19007,19007,18004,19007,19007,19007,19007,18005,19007, 19007,18006,19007,18007,19007,18008,19007,18009,18010,18011, 18082,17998,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,17999,19007,19007,19007,19007,19007,19007, 18000,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,18001,19007,18002,18303,18003,19007, 19007,18004,19007,19007,19007,19007,18005,19007,19007,18006, 19007,18007,19007,18008,19007,18009,18010,18011,17998,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 17999,19007,19007,19007,19007,19007,19007,18000,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,18001,19007,18002,19007,18003,19007,18078,18004,19007, 19007,19007,19007,18005,19007,18304,18006,19007,18007,19007, 18008,19007,18009,18010,18011, 2525,18321,19007,19007,19007, 19007,15256,19007,19007,16563,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,16564,19007,19007,19007, 19007,19007,19007,16565,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,16566,19007,16567, 19007,16569,19007,19007,16570,19007,19007,19007,19007,16572, 19007,19007,16573,19007,16574,19007,16575,19007,16576,16577, 16578, 2525,16562,19007,19007,19007,19007,15256,19007,19007, 16563,18322,18322,18322,18322,18322,18322,18322,18322,18322, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,16564,19007,19007,19007,19007,19007,19007,16565, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,16566,19007,16567,19007,16569,19007,19007, 16570,19007,19007,19007,19007,16572,19007,19007,16573,19007, 16574,19007,16575,19007,16576,16577,16578, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 18334,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,18335, 19007,19007,19007,19007,18334,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 2525,17934,19007,19007,19007, 19007,17935,19007,19007,17936,18359,18359,18359,18359,18359, 18359,18359,18359,18359,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,17937,19007,19007,19007, 19007,19007,19007,17938,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,17939,19007,17940, 19007,17941,19007,19007,17942,19007,19007,19007,19007,17943, 19007,19007,17944,19007,17945,19007,17946,19007,17947,18012, 17949,17998,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,17999,19007,19007,19007,19007,19007,19007, 18000,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,18001,19007,18002,19007,18003,19007, 19007,18004,19007,19007,19007,19007,18005,19007,18360,18006, 19007,18007,19007,18008,19007,18009,18010,18011,17998,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 17999,19007,19007,19007,19007,19007,18361,18000,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,18001,19007,18002,19007,18003,19007,19007,18004,19007, 19007,19007,19007,18005,19007,19007,18006,19007,18007,19007, 18008,19007,18009,18010,18011,17998,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,17999,19007,19007, 19007,19007,19007,19007,18000,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,18081,19007, 18002,19007,18003,19007,19007,18004,18362,19007,19007,19007, 18005,19007,19007,18006,19007,18007,19007,18008,19007,18009, 18010,18011,18082, 2525,17934,19007,19007,19007,19007,17935, 19007,19007,17936,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,17937,19007,19007,19007,19007,19007, 19007,17938,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,17939,19007,17940,19007,17941, 19007,19007,17942,19007,19007,19007,19007,17943,19007,19007, 17944,19007,17945,19007,17946,19007,17947,17948,18017, 2525, 16562,19007,19007,19007,19007,15256,19007,19007,16563,19007, 19007,18384,19007,17765,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 16564,19007,16835,19007,19007,19007,19007,16565,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,16566,19007,16567,19007,16569,19007,19007,16570,19007, 19007,19007,19007,16572,19007,19007,16573,19007,16574,19007, 16575,19007,16576,16577,16578, 2525,16562,18256,19007,19007, 19007,15256,19007,19007,16563,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,16564,19007,19007,19007, 19007,19007,19007,16565,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,16566,19007,16567, 19007,16569,19007,19007,16570,19007,19007,19007,19007,16572, 19007,19007,16573,19007,16574,19007,16575,19007,16576,16577, 16578, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,18395,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,18396,19007,19007,19007,19007,18395,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119,18399, 18399,18399,18399,18399,18399,18399,18399,18399,19007,19007, 19007,19007,19007,19007,19007,18399,18399,18399,18399,18399, 18400,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,18399,18399,18399,18399,18399,18399, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 18452,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,18453, 19007,19007,19007,19007,18452,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119,18456,18456,18456,18456,18456, 18456,18456,18456,18456,19007,19007,19007,19007,19007,19007, 19007,18456,18456,18456,18456,18456,18457,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,18456,18456,18456, 18456,18456,18456, 119, 119,19007, 119, 119, 119, 119, 19007, 119, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,18500,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,18501,19007,19007,19007,19007, 18500,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,18545,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,18546,19007,19007,19007,19007,18545,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119,18549, 18549,18549,18549,18549,18549,18549,18549,18549,19007,19007, 19007,19007,19007,19007,19007,18549,18549,18549,18549,18549, 18550,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,18549,18549,18549,18549,18549,18549, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 18587,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,18588, 19007,19007,19007,19007,18587,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119,18591,18591,18591,18591,18591, 18591,18591,18591,18591,19007,19007,19007,19007,19007,19007, 19007,18591,18591,18591,18591,18591,18592,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,18591,18591,18591, 18591,18591,18591, 119, 119,19007, 119, 119, 119, 119, 19007, 119, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,18625,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,18626,19007,19007,19007,19007, 18625,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,18659,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,18660,19007,19007,19007,19007,18659,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119,18663, 18663,18663,18663,18663,18663,18663,18663,18663,19007,19007, 19007,19007,19007,19007,19007,18663,18663,18663,18663,18663, 18664,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,18663,18663,18663,18663,18663,18663, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007, 18691,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,18692, 19007,19007,19007,19007,18691,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119,18695,18695,18695,18695,18695, 18695,18695,18695,18695,19007,19007,19007,19007,19007,19007, 19007,18695,18695,18695,18695,18695,18696,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,18695,18695,18695, 18695,18695,18695, 119, 119,19007, 119, 119, 119, 119, 19007, 119, 119, 119,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,19007,19007,19007,19007,19007,18722,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,18723,19007,19007,19007,19007, 18722,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007, 119, 119, 119, 119, 119, 119, 119,19007, 19007,19007,19007,19007,18748,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007, 119, 119, 119, 119, 119, 119,19007, 119, 119, 119, 119,19007, 119, 119, 119,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007, 119, 119, 119, 119, 119, 119, 119,18749,19007,19007,19007,19007,18748,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007, 119, 119, 119, 119,18752, 18752,18752,18752,18752,18752,18752,18752,18752,19007,19007, 19007,19007,19007,19007,19007,18752,18752,18752,18752,18752, 18753,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,18752,18752,18752,18752,18752,18752,18766,18766,18766, 18766,18766,18766,18766,18766,18766,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,18001, 19007,19007,19007,19007,19007,19007,19007,17935,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,18074,19007,17935,18775,18775,18775,18775,18775,18775, 18775,18775,18775,19007,19007,19007,19007,19007,19007,19007, 18775,18775,18775,18775,18775,18776,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,18775,18775,18775,18775, 18775,18775,18814,18814,18814,18814,18814,18814,18814,18814, 18814,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,18001,19007,19007,19007,19007,19007, 19007,19007,17935,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,17935,18822, 18822,18822,18822,18822,18822,18822,18822,18822,19007,19007, 19007,19007,19007,19007,19007,18822,18822,18822,18822,18822, 18823,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,18822,18822,18822,18822,18822,18822,18747,18747,18747, 18747,18747,18747,18747,18747,18747,19007,19007,19007,19007, 19007,19007,19007,18747,18747,18747,18747,18747,18748,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,18747, 18747,18747,18747,18747,18747, 119,19007, 119, 119, 119, 136,19007, 136, 136, 136, 206, 206, 206, 206, 206, 213, 213, 213, 213, 213, 215, 215, 215, 215, 215, 218, 218, 218, 218, 218, 235,19007, 235, 235, 235, 239,19007, 239, 239, 239, 124,19007, 124, 124, 124, 271,19007, 271, 271, 271, 279,19007, 279, 279, 279, 282,19007, 282, 282, 282, 388,19007, 388, 388, 388, 235,19007, 235, 235, 235, 239,19007, 239, 239, 239, 402,19007, 402, 402, 402, 404,19007, 404, 404, 404, 124,19007, 124, 124, 124, 251,19007, 251, 251, 251, 257,19007, 257, 257, 257, 444,19007, 444, 444, 444, 447,19007, 447, 447, 447, 136,19007, 136, 136, 136, 453,19007, 453, 453, 453, 455,19007, 455, 455, 455, 457,19007, 457, 457, 457, 463,19007, 463, 463, 463, 206,19007, 206, 206, 206, 215,19007, 215, 215, 215, 218,19007, 218, 218, 218, 388,19007, 388, 388, 388, 235,19007, 235, 235, 235, 239,19007, 239, 239, 239, 402,19007, 402, 402, 402, 404,19007, 404, 404, 404, 124,19007, 124, 124, 124, 257,19007, 257, 257, 257, 652,19007, 652, 652, 652, 447,19007, 447, 447, 447, 136,19007, 136, 136, 136, 661,19007, 661, 661, 661, 664,19007, 664, 664, 664, 667,19007, 667, 667, 667, 671,19007, 671, 671, 671, 669,19007, 669, 669, 669, 725, 725, 725, 725, 725, 463,19007, 463, 463, 463, 781,19007, 781, 781, 781, 206,19007, 206, 206, 206, 791, 791, 791, 791, 791, 215,19007, 215, 215, 215, 218,19007, 218, 218, 218, 811, 811, 811, 811, 811, 388,19007, 388, 388, 388, 832,19007, 832, 832, 832, 834,19007, 834, 834, 834, 235,19007, 235, 235, 235, 239,19007, 239, 239, 239, 402,19007, 402, 402, 402, 404,19007, 404, 404, 404, 124,19007, 124, 124, 124, 251,19007, 251, 251, 251, 257,19007, 257, 257, 257, 652,19007, 652, 652, 652, 447,19007, 447, 447, 447, 136,19007, 136, 136, 136, 661,19007, 661, 661, 661, 664,19007, 664, 664, 664, 667,19007, 667, 667, 667, 669,19007, 669, 669, 669, 671,19007, 671, 671, 671, 725, 725, 725, 725, 725, 726, 726, 726, 726, 726, 455,19007, 455, 455, 455, 1007,19007, 1007, 1007, 1007, 778,19007, 778, 778, 778, 1025,19007, 1025, 1025, 1025, 1028,19007, 1028, 1028, 1028, 206,19007, 206, 206, 206, 791, 791, 791, 791, 791, 215,19007, 215, 215, 215, 218,19007, 218, 218, 218, 811, 811, 811, 811, 811, 388,19007, 388, 388, 388, 832,19007, 832, 832, 832, 834,19007, 834, 834, 834, 235,19007, 235, 235, 235, 239,19007, 239, 239, 239, 1099,19007, 1099, 1099, 1099, 402,19007, 402, 402, 402, 404,19007, 404, 404, 404, 124,19007, 124, 124, 124, 257,19007, 257, 257, 257, 251,19007, 251, 251, 251, 652,19007, 652, 652, 652, 447,19007, 447, 447, 447, 661,19007, 661, 661, 661, 664,19007, 664, 664, 664, 453,19007, 453, 453, 453, 671,19007, 671, 671, 671, 667,19007, 667, 667, 667, 136,19007, 136, 136, 136, 455,19007, 455, 455, 455, 669,19007, 669, 669, 669, 725, 725, 725, 725, 725, 1004,19007, 1004, 1004, 1004, 1268,19007, 1268, 1268, 1268, 1271,19007, 1271, 1271, 1271, 453,19007, 453, 453, 453, 1287,19007, 1287, 1287, 1287, 778,19007, 778, 778, 778, 1293,19007, 1293, 1293, 1293, 1028,19007, 1028, 1028, 1028, 1303,19007, 1303, 1303, 1303, 206,19007, 206, 206, 206, 791, 791, 791, 791, 791, 215,19007, 215, 215, 215, 218,19007, 218, 218, 218, 1325,19007, 1325, 1325, 1325, 811, 811, 811, 811, 811, 1345,19007, 1345, 1345, 1345, 1349,19007, 1349, 1349, 1349, 388,19007, 388, 388, 388, 1352,19007, 1352, 1352, 1352, 832,19007, 832, 832, 832, 834,19007, 834, 834, 834, 235,19007, 235, 235, 235, 239,19007, 239, 239, 239, 1098,19007, 1098, 1098, 1098, 1371,19007, 1371, 1371, 1371, 402,19007, 402, 402, 402, 404,19007, 404, 404, 404, 1380,19007, 1380, 1380, 1380, 1396,19007, 1396, 1396, 1396, 124,19007, 124, 124, 124, 257,19007, 257, 257, 257, 251,19007, 251, 251, 251, 652,19007, 652, 652, 652, 1462,19007, 1462, 1462, 1462, 661,19007, 661, 661, 661, 664,19007, 664, 664, 664, 671,19007, 671, 671, 671, 136,19007, 136, 136, 136, 667,19007, 667, 667, 667, 725, 725, 725, 725, 725, 455,19007, 455, 455, 455, 1561, 1561, 1561, 1561, 1561, 1004,19007, 1004, 1004, 1004, 1577,19007, 1577, 1577, 1577, 1271,19007, 1271, 1271, 1271, 453,19007, 453, 453, 453, 669,19007, 669, 669, 669, 1287,19007, 1287, 1287, 1287, 778,19007, 778, 778, 778, 1293,19007, 1293, 1293, 1293, 1028,19007, 1028, 1028, 1028, 1303,19007, 1303, 1303, 1303, 206,19007, 206, 206, 206, 791, 791, 791, 791, 791, 215,19007, 215, 215, 215, 218,19007, 218, 218, 218, 1325,19007, 1325, 1325, 1325, 811, 811, 811, 811, 811, 1345,19007, 1345, 1345, 1345, 1349,19007, 1349, 1349, 1349, 388,19007, 388, 388, 388, 1352,19007, 1352, 1352, 1352, 832,19007, 832, 832, 832, 834,19007, 834, 834, 834, 235,19007, 235, 235, 235, 239,19007, 239, 239, 239, 1098,19007, 1098, 1098, 1098, 1371,19007, 1371, 1371, 1371, 402,19007, 402, 402, 402, 404,19007, 404, 404, 404, 1380,19007, 1380, 1380, 1380, 1712,19007, 1712, 1712, 1712, 1396,19007, 1396, 1396, 1396, 124,19007, 124, 124, 124, 251,19007, 251, 251, 251, 1815,19007, 1815, 1815, 1815, 1827,19007, 1827, 1827, 1827, 671,19007, 671, 671, 671, 136,19007, 136, 136, 136, 664,19007, 664, 664, 664, 725, 725, 725, 725, 725, 1557, 1557, 1557, 1557, 1557, 1558, 1558, 1558, 1558, 1558, 1923, 1923, 1923, 1923, 1923, 1926, 1926, 1926, 1926, 1926, 455,19007, 455, 455, 455, 1004,19007, 1004, 1004, 1004, 1577,19007, 1577, 1577, 1577, 1271,19007, 1271, 1271, 1271, 661,19007, 661, 661, 661, 1815,19007, 1815, 1815, 1815, 667,19007, 667, 667, 667, 669,19007, 669, 669, 669, 778,19007, 778, 778, 778, 1293,19007, 1293, 1293, 1293, 1978,19007, 1978, 1978, 1978, 1028,19007, 1028, 1028, 1028, 453,19007, 453, 453, 453, 1303,19007, 1303, 1303, 1303, 206,19007, 206, 206, 206, 791, 791, 791, 791, 791, 215,19007, 215, 215, 215, 218,19007, 218, 218, 218, 1325,19007, 1325, 1325, 1325, 811, 811, 811, 811, 811, 1345,19007, 1345, 1345, 1345, 1349,19007, 1349, 1349, 1349, 388,19007, 388, 388, 388, 1352,19007, 1352, 1352, 1352, 2047,19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834,19007, 834, 834, 834, 235,19007, 235, 235, 235, 239,19007, 239, 239, 239, 1098,19007, 1098, 1098, 1098, 1371,19007, 1371, 1371, 1371, 402,19007, 402, 402, 402, 404,19007, 404, 404, 404, 1380,19007, 1380, 1380, 1380, 1712,19007, 1712, 1712, 1712, 1396,19007, 1396, 1396, 1396, 124,19007, 124, 124, 124, 251,19007, 251, 251, 251, 2191,19007, 2191, 2191, 2191, 2199,19007, 2199, 2199, 2199, 2202,19007, 2202, 2202, 2202, 664,19007, 664, 664, 664, 725, 725, 725, 725, 725, 455,19007, 455, 455, 455, 1557, 1557, 1557, 1557, 1557, 2309, 2309, 2309, 2309, 2309, 1926, 1926, 1926, 1926, 1926, 1004,19007, 1004, 1004, 1004, 1577,19007, 1577, 1577, 1577, 2336,19007, 2336, 2336, 2336, 1271,19007, 1271, 1271, 1271, 661,19007, 661, 661, 661, 453,19007, 453, 453, 453, 2191,19007, 2191, 2191, 2191, 667,19007, 667, 667, 667, 778,19007, 778, 778, 778, 1293,19007, 1293, 1293, 1293, 2386,19007, 2386, 2386, 2386, 2398,19007, 2398, 2398, 2398, 1303,19007, 1303, 1303, 1303, 206,19007, 206, 206, 206, 791, 791, 791, 791, 791, 215,19007, 215, 215, 215, 218,19007, 218, 218, 218, 1325,19007, 1325, 1325, 1325, 811, 811, 811, 811, 811, 1345,19007, 1345, 1345, 1345, 1349,19007, 1349, 1349, 1349, 388,19007, 388, 388, 388, 1352,19007, 1352, 1352, 1352, 2047,19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834,19007, 834, 834, 834, 235,19007, 235, 235, 235, 239,19007, 239, 239, 239, 1098,19007, 1098, 1098, 1098, 1371,19007, 1371, 1371, 1371, 402,19007, 402, 402, 402, 404,19007, 404, 404, 404, 1380,19007, 1380, 1380, 1380, 2524, 2524, 2524, 2524, 2524, 1712,19007, 1712, 1712, 1712, 1396,19007, 1396, 1396, 1396, 251,19007, 251, 251, 251, 2658,19007, 2658, 2658, 2658, 2660,19007, 2660, 2660, 2660, 2668,19007, 2668, 2668, 2668, 2672,19007, 2672, 2672, 2672, 2675,19007, 2675, 2675, 2675, 2678,19007, 2678, 2678, 2678, 2681,19007, 2681, 2681, 2681, 664,19007, 664, 664, 664, 455,19007, 455, 455, 455, 667,19007, 667, 667, 667, 725, 725, 725, 725, 725, 444,19007, 444, 444, 444, 687,19007, 687, 687, 687, 1557, 1557, 1557, 1557, 1557, 2309, 2309, 2309, 2309, 2309, 1926, 1926, 1926, 1926, 1926, 1004,19007, 1004, 1004, 1004, 1577,19007, 1577, 1577, 1577, 2819,19007, 2819, 2819, 2819, 2831,19007, 2831, 2831, 2831, 2837,19007, 2837, 2837, 2837, 661,19007, 661, 661, 661, 2843, 2843, 2843, 2843, 2843, 2658,19007, 2658, 2658, 2658, 667,19007, 667, 667, 667, 455,19007, 455, 455, 455, 1285,19007, 1285, 1285, 1285, 1815,19007, 1815, 1815, 1815, 453,19007, 453, 453, 453, 778,19007, 778, 778, 778, 2896,19007, 2896, 2896, 2896, 2904,19007, 2904, 2904, 2904, 2907,19007, 2907, 2907, 2907, 2916,19007, 2916, 2916, 2916, 2944,19007, 2944, 2944, 2944, 1303,19007, 1303, 1303, 1303, 206,19007, 206, 206, 206, 791, 791, 791, 791, 791, 215,19007, 215, 215, 215, 218,19007, 218, 218, 218, 1325,19007, 1325, 1325, 1325, 811, 811, 811, 811, 811, 1345,19007, 1345, 1345, 1345, 1349,19007, 1349, 1349, 1349, 388,19007, 388, 388, 388, 1352,19007, 1352, 1352, 1352, 2047,19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834,19007, 834, 834, 834, 3013,19007, 3013, 3013, 3013, 235,19007, 235, 235, 235, 239,19007, 239, 239, 239, 1098,19007, 1098, 1098, 1098, 402,19007, 402, 402, 402, 3021,19007, 3021, 3021, 3021, 404,19007, 404, 404, 404, 1380,19007, 1380, 1380, 1380, 2524, 2524, 2524, 2524, 2524, 2525, 2525, 2525,19007, 2525, 1712,19007, 1712, 1712, 1712, 3070, 3070, 3070, 3070, 3070, 1396,19007, 1396, 1396, 1396, 251,19007, 251, 251, 251, 3193,19007, 3193, 3193, 3193, 3196,19007, 3196, 3196, 3196, 3199,19007, 3199, 3199, 3199, 3207,19007, 3207, 3207, 3207, 3212,19007, 3212, 3212, 3212, 3216,19007, 3216, 3216, 3216, 3219,19007, 3219, 3219, 3219, 3222,19007, 3222, 3222, 3222, 3226,19007, 3226, 3226, 3226, 3229,19007, 3229, 3229, 3229, 664,19007, 664, 664, 664, 725, 725, 725, 725, 725, 455,19007, 455, 455, 455, 687,19007, 687, 687, 687, 1557, 1557, 1557, 1557, 1557, 2309, 2309, 2309, 2309, 2309, 1462,19007, 1462, 1462, 1462, 1926, 1926, 1926, 1926, 1926, 1004,19007, 1004, 1004, 1004, 3366,19007, 3366, 3366, 3366, 3374,19007, 3374, 3374, 3374, 3377,19007, 3377, 3377, 3377, 3386,19007, 3386, 3386, 3386, 661,19007, 661, 661, 661, 2841, 2841, 2841, 2841, 2841, 2842, 2842, 2842, 2842, 2842, 3394, 3394, 3394, 3394, 3394, 3407, 3407, 3407, 3407, 3407, 3193,19007, 3193, 3193, 3193, 453,19007, 453, 453, 453, 2191,19007, 2191, 2191, 2191, 1462,19007, 1462, 1462, 1462, 778,19007, 778, 778, 778, 3446,19007, 3446, 3446, 3446, 3448,19007, 3448, 3448, 3448, 3456,19007, 3456, 3456, 3456, 3460,19007, 3460, 3460, 3460, 3463,19007, 3463, 3463, 3463, 3466,19007, 3466, 3466, 3466, 3469,19007, 3469, 3469, 3469, 3474,19007, 3474, 3474, 3474, 3480,19007, 3480, 3480, 3480, 3483,19007, 3483, 3483, 3483, 3511,19007, 3511, 3511, 3511, 3515,19007, 3515, 3515, 3515, 3513,19007, 3513, 3513, 3513, 1303,19007, 1303, 1303, 1303, 206,19007, 206, 206, 206, 791, 791, 791, 791, 791, 215,19007, 215, 215, 215, 218,19007, 218, 218, 218, 1325,19007, 1325, 1325, 1325, 811, 811, 811, 811, 811, 1345,19007, 1345, 1345, 1345, 1349,19007, 1349, 1349, 1349, 388,19007, 388, 388, 388, 1352,19007, 1352, 1352, 1352, 2047,19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834,19007, 834, 834, 834, 3595,19007, 3595, 3595, 3595, 235,19007, 235, 235, 235, 239,19007, 239, 239, 239, 402,19007, 402, 402, 402, 3604,19007, 3604, 3604, 3604, 404,19007, 404, 404, 404, 1380,19007, 1380, 1380, 1380, 2524, 2524, 2524, 2524, 2524, 2525, 2525, 2525,19007, 2525, 1712,19007, 1712, 1712, 1712, 3070, 3070, 3070, 3070, 3070, 3756,19007, 3756, 3756, 3756, 3760,19007, 3760, 3760, 3760, 3765,19007, 3765, 3765, 3765, 3768,19007, 3768, 3768, 3768, 3778,19007, 3778, 3778, 3778, 3783,19007, 3783, 3783, 3783, 3788,19007, 3788, 3788, 3788, 3792,19007, 3792, 3792, 3792, 3796,19007, 3796, 3796, 3796, 3798,19007, 3798, 3798, 3798, 3803,19007, 3803, 3803, 3803, 3807,19007, 3807, 3807, 3807, 3811,19007, 3811, 3811, 3811, 664,19007, 664, 664, 664, 667,19007, 667, 667, 667, 725, 725, 725, 725, 725, 687,19007, 687, 687, 687, 1557, 1557, 1557, 1557, 1557, 2309, 2309, 2309, 2309, 2309, 1815,19007, 1815, 1815, 1815, 1926, 1926, 1926, 1926, 1926, 1004,19007, 1004, 1004, 1004, 3944,19007, 3944, 3944, 3944, 3946,19007, 3946, 3946, 3946, 3954,19007, 3954, 3954, 3954, 3958,19007, 3958, 3958, 3958, 3961,19007, 3961, 3961, 3961, 3964,19007, 3964, 3964, 3964, 3967,19007, 3967, 3967, 3967, 3386,19007, 3386, 3386, 3386, 661,19007, 661, 661, 661, 2841, 2841, 2841, 2841, 2841, 3978, 3978, 3978, 3978, 3978, 3987, 3987, 3987, 3987, 3987, 3990, 3990, 3990, 3990, 3990, 3756,19007, 3756, 3756, 3756, 1462,19007, 1462, 1462, 1462, 664,19007, 664, 664, 664, 2658,19007, 2658, 2658, 2658, 778,19007, 778, 778, 778, 4029,19007, 4029, 4029, 4029, 4032,19007, 4032, 4032, 4032, 4035,19007, 4035, 4035, 4035, 4043,19007, 4043, 4043, 4043, 4048,19007, 4048, 4048, 4048, 4052,19007, 4052, 4052, 4052, 4055,19007, 4055, 4055, 4055, 4058,19007, 4058, 4058, 4058, 4062,19007, 4062, 4062, 4062, 4065,19007, 4065, 4065, 4065, 4070,19007, 4070, 4070, 4070, 3476,19007, 3476, 3476, 3476, 4076,19007, 4076, 4076, 4076, 119,19007, 119, 119, 119, 4078,19007, 4078, 4078, 4078, 4113,19007, 4113, 4113, 4113, 4115,19007, 4115, 4115, 4115, 4119,19007, 4119, 4119, 4119, 4123,19007, 4123, 4123, 4123, 2678,19007, 2678, 2678, 2678, 4121,19007, 4121, 4121, 4121, 4128,19007, 4128, 4128, 4128, 1303,19007, 1303, 1303, 1303, 206,19007, 206, 206, 206, 791, 791, 791, 791, 791, 215,19007, 215, 215, 215, 218,19007, 218, 218, 218, 1325,19007, 1325, 1325, 1325, 811, 811, 811, 811, 811, 1345,19007, 1345, 1345, 1345, 1349,19007, 1349, 1349, 1349, 388,19007, 388, 388, 388, 1352,19007, 1352, 1352, 1352, 4179, 4179, 4179, 4179, 4179, 2047,19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834,19007, 834, 834, 834, 3595,19007, 3595, 3595, 3595, 235,19007, 235, 235, 235, 239,19007, 239, 239, 239, 402,19007, 402, 402, 402, 3604,19007, 3604, 3604, 3604, 404,19007, 404, 404, 404, 1380,19007, 1380, 1380, 1380, 2525, 2525, 2525,19007, 2525, 2524, 2524, 2524, 2524, 2524, 1712,19007, 1712, 1712, 1712, 3070, 3070, 3070, 3070, 3070, 124,19007, 124, 124, 124, 4351,19007, 4351, 4351, 4351, 4356,19007, 4356, 4356, 4356, 4358,19007, 4358, 4358, 4358, 4364,19007, 4364, 4364, 4364, 4368,19007, 4368, 4368, 4368, 4371,19007, 4371, 4371, 4371, 4374,19007, 4374, 4374, 4374, 4377,19007, 4377, 4377, 4377, 4383,19007, 4383, 4383, 4383, 4388,19007, 4388, 4388, 4388, 4393,19007, 4393, 4393, 4393, 4398,19007, 4398, 4398, 4398, 4402,19007, 4402, 4402, 4402, 4405,19007, 4405, 4405, 4405, 4408,19007, 4408, 4408, 4408, 4414,19007, 4414, 4414, 4414, 4419,19007, 4419, 4419, 4419, 4423,19007, 4423, 4423, 4423, 4426,19007, 4426, 4426, 4426, 1462,19007, 1462, 1462, 1462, 664,19007, 664, 664, 664, 453,19007, 453, 453, 453, 725, 725, 725, 725, 725, 687,19007, 687, 687, 687, 4519, 4519, 4519, 4519, 4519, 4520, 4520,19007, 4520, 4520, 2191,19007, 2191, 2191, 2191, 1926, 1926, 1926, 1926, 1926, 4526,19007, 4526, 4526, 4526, 1004,19007, 1004, 1004, 1004, 4551,19007, 4551, 4551, 4551, 4554,19007, 4554, 4554, 4554, 4557,19007, 4557, 4557, 4557, 4565,19007, 4565, 4565, 4565, 4570,19007, 4570, 4570, 4570, 4574,19007, 4574, 4574, 4574, 4577,19007, 4577, 4577, 4577, 4580,19007, 4580, 4580, 4580, 4584,19007, 4584, 4584, 4584, 4587,19007, 4587, 4587, 4587, 3386,19007, 3386, 3386, 3386, 661,19007, 661, 661, 661, 2841, 2841, 2841, 2841, 2841, 4597, 4597, 4597, 4597, 4597, 4599, 4599, 4599, 4599, 4599, 4607, 4607, 4607, 4607, 4607, 4611, 4611, 4611, 4611, 4611, 4614, 4614, 4614, 4614, 4614, 2678,19007, 2678, 2678, 2678, 4617, 4617, 4617, 4617, 4617, 4619, 4619, 4619, 4619, 4619, 4351,19007, 4351, 4351, 4351, 1815,19007, 1815, 1815, 1815, 664,19007, 664, 664, 664, 3193,19007, 3193, 3193, 3193, 251,19007, 251, 251, 251, 778,19007, 778, 778, 778, 4656,19007, 4656, 4656, 4656, 4660,19007, 4660, 4660, 4660, 4665,19007, 4665, 4665, 4665, 4668,19007, 4668, 4668, 4668, 4678,19007, 4678, 4678, 4678, 4683,19007, 4683, 4683, 4683, 4688,19007, 4688, 4688, 4688, 4692,19007, 4692, 4692, 4692, 4696,19007, 4696, 4696, 4696, 4698,19007, 4698, 4698, 4698, 4703,19007, 4703, 4703, 4703, 4707,19007, 4707, 4707, 4707, 4711,19007, 4711, 4711, 4711, 4715,19007, 4715, 4715, 4715, 3476,19007, 3476, 3476, 3476, 4722,19007, 4722, 4722, 4722, 4724,19007, 4724, 4724, 4724, 119,19007, 119, 119, 119, 4763,19007, 4763, 4763, 4763, 4765,19007, 4765, 4765, 4765, 4771,19007, 4771, 4771, 4771, 4773,19007, 4773, 4773, 4773, 4777,19007, 4777, 4777, 4777, 4781,19007, 4781, 4781, 4781, 4779,19007, 4779, 4779, 4779, 4787,19007, 4787, 4787, 4787, 4791,19007, 4791, 4791, 4791, 4789,19007, 4789, 4789, 4789, 1303,19007, 1303, 1303, 1303, 206,19007, 206, 206, 206, 791, 791, 791, 791, 791, 215,19007, 215, 215, 215, 218,19007, 218, 218, 218, 4823,19007, 4823, 4823, 4823, 1325,19007, 1325, 1325, 1325, 811, 811, 811, 811, 811, 1345,19007, 1345, 1345, 1345, 1349,19007, 1349, 1349, 1349, 388,19007, 388, 388, 388, 1352,19007, 1352, 1352, 1352, 2047,19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834,19007, 834, 834, 834, 235,19007, 235, 235, 235, 3595,19007, 3595, 3595, 3595, 239,19007, 239, 239, 239, 402,19007, 402, 402, 402, 404,19007, 404, 404, 404, 3604,19007, 3604, 3604, 3604, 1380,19007, 1380, 1380, 1380, 2524, 2524, 2524, 2524, 2524, 2525, 2525, 2525,19007, 2525, 1712,19007, 1712, 1712, 1712, 3070, 3070, 3070, 3070, 3070, 5008,19007, 5008, 5008, 5008, 5013,19007, 5013, 5013, 5013, 5016,19007, 5016, 5016, 5016, 5019,19007, 5019, 5019, 5019, 5024,19007, 5024, 5024, 5024, 5029,19007, 5029, 5029, 5029, 5033,19007, 5033, 5033, 5033, 5036,19007, 5036, 5036, 5036, 5039,19007, 5039, 5039, 5039, 5043,19007, 5043, 5043, 5043, 5046,19007, 5046, 5046, 5046, 5051,19007, 5051, 5051, 5051, 5056,19007, 5056, 5056, 5056, 1815,19007, 1815, 1815, 1815, 664,19007, 664, 664, 664, 667,19007, 667, 667, 667, 661,19007, 661, 661, 661, 725, 725, 725, 725, 725, 455,19007, 455, 455, 455, 4519, 4519, 4519, 4519, 4519, 4520, 4520, 4520, 4520, 4520, 2658,19007, 2658, 2658, 2658, 1926, 1926, 1926, 1926, 1926, 4526,19007, 4526, 4526, 4526, 1004,19007, 1004, 1004, 1004, 5190,19007, 5190, 5190, 5190, 5194,19007, 5194, 5194, 5194, 5199,19007, 5199, 5199, 5199, 5202,19007, 5202, 5202, 5202, 5212,19007, 5212, 5212, 5212, 5217,19007, 5217, 5217, 5217, 5222,19007, 5222, 5222, 5222, 5226,19007, 5226, 5226, 5226, 5230,19007, 5230, 5230, 5230, 5232,19007, 5232, 5232, 5232, 5237,19007, 5237, 5237, 5237, 5241,19007, 5241, 5241, 5241, 5245,19007, 5245, 5245, 5245, 3386,19007, 3386, 3386, 3386, 661,19007, 661, 661, 661, 455,19007, 455, 455, 455, 2841, 2841, 2841, 2841, 2841, 5254, 5254, 5254, 5254, 5254, 5257, 5257, 5257, 5257, 5257, 5260, 5260, 5260, 5260, 5260, 5268, 5268, 5268, 5268, 5268, 5273, 5273, 5273, 5273, 5273, 5277, 5277, 5277, 5277, 5277, 5280, 5280, 5280, 5280, 5280, 5283, 5283, 5283, 5283, 5283, 5286, 5286, 5286, 5286, 5286, 5289, 5289, 5289, 5289, 5289, 5008,19007, 5008, 5008, 5008, 2191,19007, 2191, 2191, 2191, 664,19007, 664, 664, 664, 661,19007, 661, 661, 661, 3756,19007, 3756, 3756, 3756, 778,19007, 778, 778, 778, 5314,19007, 5314, 5314, 5314, 5319,19007, 5319, 5319, 5319, 5321,19007, 5321, 5321, 5321, 5327,19007, 5327, 5327, 5327, 5331,19007, 5331, 5331, 5331, 5334,19007, 5334, 5334, 5334, 5337,19007, 5337, 5337, 5337, 5340,19007, 5340, 5340, 5340, 5346,19007, 5346, 5346, 5346, 5351,19007, 5351, 5351, 5351, 5356,19007, 5356, 5356, 5356, 5361,19007, 5361, 5361, 5361, 5365,19007, 5365, 5365, 5365, 5368,19007, 5368, 5368, 5368, 5371,19007, 5371, 5371, 5371, 5377,19007, 5377, 5377, 5377, 5382,19007, 5382, 5382, 5382, 5386,19007, 5386, 5386, 5386, 5389,19007, 5389, 5389, 5389, 5394,19007, 5394, 5394, 5394, 3476,19007, 3476, 3476, 3476, 5401,19007, 5401, 5401, 5401, 5403,19007, 5403, 5403, 5403, 119,19007, 119, 119, 119, 5456,19007, 5456, 5456, 5456, 5458,19007, 5458, 5458, 5458, 5465,19007, 5465, 5465, 5465, 5467,19007, 5467, 5467, 5467, 5473,19007, 5473, 5473, 5473, 5475,19007, 5475, 5475, 5475, 5479,19007, 5479, 5479, 5479, 5484,19007, 5484, 5484, 5484, 5481,19007, 5481, 5481, 5481, 5490,19007, 5490, 5490, 5490, 5492,19007, 5492, 5492, 5492, 5496,19007, 5496, 5496, 5496, 5501,19007, 5501, 5501, 5501, 5498,19007, 5498, 5498, 5498, 5401,19007, 5401, 5401, 5401, 119,19007, 119, 119, 119, 1303,19007, 1303, 1303, 1303, 206,19007, 206, 206, 206, 791, 791, 791, 791, 791, 215,19007, 215, 215, 215, 218,19007, 218, 218, 218, 4823,19007, 4823, 4823, 4823, 1325,19007, 1325, 1325, 1325, 811, 811, 811, 811, 811, 1345,19007, 1345, 1345, 1345, 1349,19007, 1349, 1349, 1349, 388,19007, 388, 388, 388, 1352,19007, 1352, 1352, 1352, 2047,19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834,19007, 834, 834, 834, 235,19007, 235, 235, 235, 3595,19007, 3595, 3595, 3595, 239,19007, 239, 239, 239, 402,19007, 402, 402, 402, 404,19007, 404, 404, 404, 3604,19007, 3604, 3604, 3604, 1380,19007, 1380, 1380, 1380, 2524, 2524, 2524, 2524, 2524, 2525, 2525, 2525,19007, 2525, 1712,19007, 1712, 1712, 1712, 3070, 3070, 3070, 3070, 3070, 5694,19007, 5694, 5694, 5694, 5699,19007, 5699, 5699, 5699, 5703,19007, 5703, 5703, 5703, 5707,19007, 5707, 5707, 5707, 5710,19007, 5710, 5710, 5710, 5717,19007, 5717, 5717, 5717, 5722,19007, 5722, 5722, 5722, 5727,19007, 5727, 5727, 5727, 5731,19007, 5731, 5731, 5731, 5735,19007, 5735, 5735, 5735, 5737,19007, 5737, 5737, 5737, 5742,19007, 5742, 5742, 5742, 5746,19007, 5746, 5746, 5746, 5750,19007, 5750, 5750, 5750, 119,19007, 119, 119, 119, 2191,19007, 2191, 2191, 2191, 664,19007, 664, 664, 664, 453,19007, 453, 453, 453, 661,19007, 661, 661, 661, 725, 725, 725, 725, 725, 4519, 4519, 4519, 4519, 4519, 1926, 1926, 1926, 1926, 1926, 4526,19007, 4526, 4526, 4526, 1004,19007, 1004, 1004, 1004, 5865,19007, 5865, 5865, 5865, 5870,19007, 5870, 5870, 5870, 5872,19007, 5872, 5872, 5872, 5878,19007, 5878, 5878, 5878, 5882,19007, 5882, 5882, 5882, 5885,19007, 5885, 5885, 5885, 5888,19007, 5888, 5888, 5888, 5891,19007, 5891, 5891, 5891, 5897,19007, 5897, 5897, 5897, 5902,19007, 5902, 5902, 5902, 5907,19007, 5907, 5907, 5907, 5912,19007, 5912, 5912, 5912, 5916,19007, 5916, 5916, 5916, 5919,19007, 5919, 5919, 5919, 5922,19007, 5922, 5922, 5922, 5928,19007, 5928, 5928, 5928, 5933,19007, 5933, 5933, 5933, 5937,19007, 5937, 5937, 5937, 5940,19007, 5940, 5940, 5940, 119,19007, 119, 119, 119, 5946,19007, 5946, 5946, 5946, 455,19007, 455, 455, 455, 664,19007, 664, 664, 664, 2841, 2841, 2841, 2841, 2841, 5952, 5952, 5952, 5952, 5952, 5956, 5956, 5956, 5956, 5956, 5961, 5961, 5961, 5961, 5961, 5964, 5964, 5964, 5964, 5964, 5975, 5975, 5975, 5975, 5975, 5980, 5980, 5980, 5980, 5980, 5985, 5985, 5985, 5985, 5985, 5989, 5989, 5989, 5989, 5989, 5993, 5993, 5993, 5993, 5993, 5995, 5995, 5995, 5995, 5995, 5999, 5999, 5999, 5999, 5999, 6003, 6003, 6003, 6003, 6003, 6007, 6007, 6007, 6007, 6007, 119,19007, 119, 119, 119, 5694,19007, 5694, 5694, 5694, 2658,19007, 2658, 2658, 2658, 664,19007, 664, 664, 664, 661,19007, 661, 661, 661, 4351,19007, 4351, 4351, 4351, 778,19007, 778, 778, 778, 6030,19007, 6030, 6030, 6030, 6035,19007, 6035, 6035, 6035, 6038,19007, 6038, 6038, 6038, 6041,19007, 6041, 6041, 6041, 6046,19007, 6046, 6046, 6046, 6051,19007, 6051, 6051, 6051, 6055,19007, 6055, 6055, 6055, 6058,19007, 6058, 6058, 6058, 6061,19007, 6061, 6061, 6061, 6065,19007, 6065, 6065, 6065, 6068,19007, 6068, 6068, 6068, 6073,19007, 6073, 6073, 6073, 6078,19007, 6078, 6078, 6078, 6087,19007, 6087, 6087, 6087, 3476,19007, 3476, 3476, 3476, 6093,19007, 6093, 6093, 6093, 6095,19007, 6095, 6095, 6095, 119,19007, 119, 119, 119, 6150,19007, 6150, 6150, 6150, 6152,19007, 6152, 6152, 6152, 6160,19007, 6160, 6160, 6160, 6162,19007, 6162, 6162, 6162, 6169,19007, 6169, 6169, 6169, 6171,19007, 6171, 6171, 6171, 6177,19007, 6177, 6177, 6177, 6179,19007, 6179, 6179, 6179, 6183,19007, 6183, 6183, 6183, 6187,19007, 6187, 6187, 6187, 6186,19007, 6186, 6186, 6186, 6196,19007, 6196, 6196, 6196, 6198,19007, 6198, 6198, 6198, 6204,19007, 6204, 6204, 6204, 6206,19007, 6206, 6206, 6206, 6210,19007, 6210, 6210, 6210, 6214,19007, 6214, 6214, 6214, 6213,19007, 6213, 6213, 6213, 6152,19007, 6152, 6152, 6152, 6093,19007, 6093, 6093, 6093, 119,19007, 119, 119, 119, 1303,19007, 1303, 1303, 1303, 206,19007, 206, 206, 206, 791, 791, 791, 791, 791, 215,19007, 215, 215, 215, 218,19007, 218, 218, 218, 4823,19007, 4823, 4823, 4823, 1325,19007, 1325, 1325, 1325, 811, 811, 811, 811, 811, 1345,19007, 1345, 1345, 1345, 1349,19007, 1349, 1349, 1349, 388,19007, 388, 388, 388, 1352,19007, 1352, 1352, 1352, 2047,19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834,19007, 834, 834, 834, 235,19007, 235, 235, 235, 239,19007, 239, 239, 239, 402,19007, 402, 402, 402, 404,19007, 404, 404, 404, 1380,19007, 1380, 1380, 1380, 2525, 2525, 2525,19007, 2525, 2524, 2524, 2524, 2524, 2524, 1712,19007, 1712, 1712, 1712, 3070, 3070, 3070, 3070, 3070, 6380,19007, 6380, 6380, 6380, 6385,19007, 6385, 6385, 6385, 6390,19007, 6390, 6390, 6390, 6395,19007, 6395, 6395, 6395, 6399,19007, 6399, 6399, 6399, 6402,19007, 6402, 6402, 6402, 6405,19007, 6405, 6405, 6405, 6408,19007, 6408, 6408, 6408, 6411,19007, 6411, 6411, 6411, 6416,19007, 6416, 6416, 6416, 6421,19007, 6421, 6421, 6421, 6426,19007, 6426, 6426, 6426, 6430,19007, 6430, 6430, 6430, 6433,19007, 6433, 6433, 6433, 6436,19007, 6436, 6436, 6436, 6442,19007, 6442, 6442, 6442, 6447,19007, 6447, 6447, 6447, 6451,19007, 6451, 6451, 6451, 6454,19007, 6454, 6454, 6454, 119,19007, 119, 119, 119, 2658,19007, 2658, 2658, 2658, 664,19007, 664, 664, 664, 667,19007, 667, 667, 667, 661,19007, 661, 661, 661, 725, 725, 725, 725, 725, 5821,19007, 5821, 5821, 5821, 6541,19007, 6541, 6541, 6541, 6545,19007, 6545, 6545, 6545, 4519, 4519, 4519, 4519, 4519, 4526,19007, 4526, 4526, 4526, 1004,19007, 1004, 1004, 1004, 6587,19007, 6587, 6587, 6587, 6592,19007, 6592, 6592, 6592, 6595,19007, 6595, 6595, 6595, 6598,19007, 6598, 6598, 6598, 6603,19007, 6603, 6603, 6603, 6608,19007, 6608, 6608, 6608, 6612,19007, 6612, 6612, 6612, 6615,19007, 6615, 6615, 6615, 6618,19007, 6618, 6618, 6618, 6622,19007, 6622, 6622, 6622, 6625,19007, 6625, 6625, 6625, 6630,19007, 6630, 6630, 6630, 6635,19007, 6635, 6635, 6635, 5945,19007, 5945, 5945, 5945, 5946,19007, 5946, 5946, 5946, 664,19007, 664, 664, 664, 6651, 6651, 6651, 6651, 6651, 6656, 6656, 6656, 6656, 6656, 6658, 6658, 6658, 6658, 6658, 6664, 6664, 6664, 6664, 6664, 6668, 6668, 6668, 6668, 6668, 6671, 6671, 6671, 6671, 6671, 4374,19007, 4374, 4374, 4374, 6674, 6674, 6674, 6674, 6674, 6676, 6676, 6676, 6676, 6676, 2841, 2841, 2841, 2841, 2841, 6683, 6683, 6683, 6683, 6683, 6688, 6688, 6688, 6688, 6688, 6693, 6693, 6693, 6693, 6693, 6698, 6698, 6698, 6698, 6698, 6702, 6702, 6702, 6702, 6702, 6705, 6705, 6705, 6705, 6705, 6708, 6708, 6708, 6708, 6708, 6713, 6713, 6713, 6713, 6713, 6718, 6718, 6718, 6718, 6718, 6722, 6722, 6722, 6722, 6722, 6725, 6725, 6725, 6725, 6725, 119,19007, 119, 119, 119, 3193,19007, 3193, 3193, 3193, 664,19007, 664, 664, 664, 661,19007, 661, 661, 661, 5008,19007, 5008, 5008, 5008, 778,19007, 778, 778, 778, 6748,19007, 6748, 6748, 6748, 6753,19007, 6753, 6753, 6753, 6757,19007, 6757, 6757, 6757, 6761,19007, 6761, 6761, 6761, 6764,19007, 6764, 6764, 6764, 6771,19007, 6771, 6771, 6771, 6776,19007, 6776, 6776, 6776, 6781,19007, 6781, 6781, 6781, 6785,19007, 6785, 6785, 6785, 6789,19007, 6789, 6789, 6789, 6791,19007, 6791, 6791, 6791, 6796,19007, 6796, 6796, 6796, 6800,19007, 6800, 6800, 6800, 6804,19007, 6804, 6804, 6804, 778,19007, 778, 778, 778, 6810,19007, 6810, 6810, 6810, 3476,19007, 3476, 3476, 3476, 6815,19007, 6815, 6815, 6815, 6817,19007, 6817, 6817, 6817, 119,19007, 119, 119, 119, 6885,19007, 6885, 6885, 6885, 6887,19007, 6887, 6887, 6887, 1303,19007, 1303, 1303, 1303, 206,19007, 206, 206, 206, 791, 791, 791, 791, 791, 215,19007, 215, 215, 215, 218,19007, 218, 218, 218, 4823,19007, 4823, 4823, 4823, 1325,19007, 1325, 1325, 1325, 811, 811, 811, 811, 811, 6918, 6918, 6918, 6918, 6918, 1345,19007, 1345, 1345, 1345, 1349,19007, 1349, 1349, 1349, 388,19007, 388, 388, 388, 1352,19007, 1352, 1352, 1352, 2047,19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834,19007, 834, 834, 834, 235,19007, 235, 235, 235, 239,19007, 239, 239, 239, 6948,19007, 6948, 6948, 6948, 402,19007, 402, 402, 402, 404,19007, 404, 404, 404, 6953,19007, 6953, 6953, 6953, 1380,19007, 1380, 1380, 1380, 2524, 2524, 2524, 2524, 2524, 2525, 2525, 2525,19007, 2525, 1712,19007, 1712, 1712, 1712, 3070, 3070, 3070, 3070, 3070, 6380,19007, 6380, 6380, 6380, 7034,19007, 7034, 7034, 7034, 7039,19007, 7039, 7039, 7039, 7044,19007, 7044, 7044, 7044, 7049,19007, 7049, 7049, 7049, 7053,19007, 7053, 7053, 7053, 7056,19007, 7056, 7056, 7056, 7059,19007, 7059, 7059, 7059, 7063,19007, 7063, 7063, 7063, 7066,19007, 7066, 7066, 7066, 7069,19007, 7069, 7069, 7069, 7074,19007, 7074, 7074, 7074, 7087,19007, 7087, 7087, 7087, 3193,19007, 3193, 3193, 3193, 664,19007, 664, 664, 664, 453,19007, 453, 453, 453, 667,19007, 667, 667, 667, 661,19007, 661, 661, 661, 725, 725, 725, 725, 725, 6515,19007, 6515, 6515, 6515, 5821,19007, 5821, 5821, 5821, 7156,19007, 7156, 7156, 7156, 6528,19007, 6528, 6528, 6528, 6534,19007, 6534, 6534, 6534, 6541,19007, 6541, 6541, 6541, 7183,19007, 7183, 7183, 7183, 7186,19007, 7186, 7186, 7186, 664,19007, 664, 664, 664, 4519, 4519, 4519, 4519, 4519, 4526,19007, 4526, 4526, 4526, 1004,19007, 1004, 1004, 1004, 7231,19007, 7231, 7231, 7231, 7236,19007, 7236, 7236, 7236, 7240,19007, 7240, 7240, 7240, 7244,19007, 7244, 7244, 7244, 7247,19007, 7247, 7247, 7247, 7254,19007, 7254, 7254, 7254, 7259,19007, 7259, 7259, 7259, 7264,19007, 7264, 7264, 7264, 7268,19007, 7268, 7268, 7268, 7272,19007, 7272, 7272, 7272, 7274,19007, 7274, 7274, 7274, 7279,19007, 7279, 7279, 7279, 7283,19007, 7283, 7283, 7283, 7287,19007, 7287, 7287, 7287, 1004,19007, 1004, 1004, 1004, 119,19007, 119, 119, 119, 5945,19007, 5945, 5945, 5945, 7295,19007, 7295, 7295, 7295, 5946,19007, 5946, 5946, 5946, 664,19007, 664, 664, 664, 7310, 7310, 7310, 7310, 7310, 7315, 7315, 7315, 7315, 7315, 7318, 7318, 7318, 7318, 7318, 7321, 7321, 7321, 7321, 7321, 7326, 7326, 7326, 7326, 7326, 7331, 7331, 7331, 7331, 7331, 7335, 7335, 7335, 7335, 7335, 7338, 7338, 7338, 7338, 7338, 7341, 7341, 7341, 7341, 7341, 7344, 7344, 7344, 7344, 7344, 7347, 7347, 7347, 7347, 7347, 2841, 2841, 2841, 2841, 2841, 7353, 7353, 7353, 7353, 7353, 7358, 7358, 7358, 7358, 7358, 119,19007, 119, 119, 119, 3756,19007, 3756, 3756, 3756, 664,19007, 664, 664, 664, 778,19007, 778, 778, 778, 7386,19007, 7386, 7386, 7386, 7391,19007, 7391, 7391, 7391, 7396,19007, 7396, 7396, 7396, 7401,19007, 7401, 7401, 7401, 7405,19007, 7405, 7405, 7405, 7408,19007, 7408, 7408, 7408, 7411,19007, 7411, 7411, 7411, 7414,19007, 7414, 7414, 7414, 7417,19007, 7417, 7417, 7417, 7422,19007, 7422, 7422, 7422, 7427,19007, 7427, 7427, 7427, 7432,19007, 7432, 7432, 7432, 7436,19007, 7436, 7436, 7436, 7439,19007, 7439, 7439, 7439, 7442,19007, 7442, 7442, 7442, 7448,19007, 7448, 7448, 7448, 7453,19007, 7453, 7453, 7453, 7457,19007, 7457, 7457, 7457, 7460,19007, 7460, 7460, 7460, 778,19007, 778, 778, 778, 7467,19007, 7467, 7467, 7467, 7472,19007, 7472, 7472, 7472, 7474,19007, 7474, 7474, 7474, 3476,19007, 3476, 3476, 3476, 119,19007, 119, 119, 119, 1303,19007, 1303, 1303, 1303, 206,19007, 206, 206, 206, 791, 791, 791, 791, 791, 215,19007, 215, 215, 215, 218,19007, 218, 218, 218, 4823,19007, 4823, 4823, 4823, 1325,19007, 1325, 1325, 1325, 811, 811, 811, 811, 811, 6918, 6918, 6918, 6918, 6918, 1345,19007, 1345, 1345, 1345, 1349,19007, 1349, 1349, 1349, 388,19007, 388, 388, 388, 1352,19007, 1352, 1352, 1352, 2047,19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834,19007, 834, 834, 834, 235,19007, 235, 235, 235, 239,19007, 239, 239, 239, 6948,19007, 6948, 6948, 6948, 402,19007, 402, 402, 402, 404,19007, 404, 404, 404, 6953,19007, 6953, 6953, 6953, 1380,19007, 1380, 1380, 1380, 2525, 2525, 2525,19007, 2525, 2524, 2524, 2524, 2524, 2524, 1712,19007, 1712, 1712, 1712, 3070, 3070, 3070, 3070, 3070, 7645,19007, 7645, 7645, 7645, 7650,19007, 7650, 7650, 7650, 7655,19007, 7655, 7655, 7655, 7660,19007, 7660, 7660, 7660, 7665,19007, 7665, 7665, 7665, 7669,19007, 7669, 7669, 7669, 7673,19007, 7673, 7673, 7673, 7675,19007, 7675, 7675, 7675, 7680,19007, 7680, 7680, 7680, 7684,19007, 7684, 7684, 7684, 7688,19007, 7688, 7688, 7688, 7087,19007, 7087, 7087, 7087, 3756,19007, 3756, 3756, 3756, 664,19007, 664, 664, 664, 6515,19007, 6515, 6515, 6515, 661,19007, 661, 661, 661, 725, 725, 725, 725, 725, 7155,19007, 7155, 7155, 7155, 7136,19007, 7136, 7136, 7136, 7142,19007, 7142, 7142, 7142, 5821,19007, 5821, 5821, 5821, 7768,19007, 7768, 7768, 7768, 7770,19007, 7770, 7770, 7770, 7773,19007, 7773, 7773, 7773, 6534,19007, 6534, 6534, 6534, 7805,19007, 7805, 7805, 7805, 6541,19007, 6541, 6541, 6541, 7809,19007, 7809, 7809, 7809, 7815,19007, 7815, 7815, 7815, 7818,19007, 7818, 7818, 7818, 664,19007, 664, 664, 664, 4519, 4519, 4519, 4519, 4519, 4526,19007, 4526, 4526, 4526, 7841, 7841, 7841, 7841, 7841, 1004,19007, 1004, 1004, 1004, 7859,19007, 7859, 7859, 7859, 7864,19007, 7864, 7864, 7864, 7869,19007, 7869, 7869, 7869, 7874,19007, 7874, 7874, 7874, 7878,19007, 7878, 7878, 7878, 7881,19007, 7881, 7881, 7881, 7884,19007, 7884, 7884, 7884, 7887,19007, 7887, 7887, 7887, 7890,19007, 7890, 7890, 7890, 7895,19007, 7895, 7895, 7895, 7900,19007, 7900, 7900, 7900, 7905,19007, 7905, 7905, 7905, 7909,19007, 7909, 7909, 7909, 7912,19007, 7912, 7912, 7912, 7915,19007, 7915, 7915, 7915, 7921,19007, 7921, 7921, 7921, 7926,19007, 7926, 7926, 7926, 7930,19007, 7930, 7930, 7930, 7933,19007, 7933, 7933, 7933, 1004,19007, 1004, 1004, 1004, 119,19007, 119, 119, 119, 5945,19007, 5945, 5945, 5945, 7942,19007, 7942, 7942, 7942, 7955,19007, 7955, 7955, 7955, 5946,19007, 5946, 5946, 5946, 664,19007, 664, 664, 664, 7965, 7965, 7965, 7965, 7965, 7970, 7970, 7970, 7970, 7970, 7974, 7974, 7974, 7974, 7974, 7978, 7978, 7978, 7978, 7978, 7981, 7981, 7981, 7981, 7981, 7988, 7988, 7988, 7988, 7988, 7993, 7993, 7993, 7993, 7993, 7998, 7998, 7998, 7998, 7998, 8002, 8002, 8002, 8002, 8002, 8006, 8006, 8006, 8006, 8006, 8008, 8008, 8008, 8008, 8008, 8012, 8012, 8012, 8012, 8012, 8016, 8016, 8016, 8016, 8016, 8020, 8020, 8020, 8020, 8020, 2841, 2841, 2841, 2841, 2841, 119,19007, 119, 119, 119, 4351,19007, 4351, 4351, 4351, 664,19007, 664, 664, 664, 8034,19007, 8034, 8034, 8034, 778,19007, 778, 778, 778, 7386,19007, 7386, 7386, 7386, 8048,19007, 8048, 8048, 8048, 8053,19007, 8053, 8053, 8053, 8058,19007, 8058, 8058, 8058, 8063,19007, 8063, 8063, 8063, 8067,19007, 8067, 8067, 8067, 8070,19007, 8070, 8070, 8070, 8073,19007, 8073, 8073, 8073, 8077,19007, 8077, 8077, 8077, 8080,19007, 8080, 8080, 8080, 8083,19007, 8083, 8083, 8083, 8088,19007, 8088, 8088, 8088, 8099,19007, 8099, 8099, 8099, 8104,19007, 8104, 8104, 8104, 8106,19007, 8106, 8106, 8106, 119,19007, 119, 119, 119, 1303,19007, 1303, 1303, 1303, 206,19007, 206, 206, 206, 791, 791, 791, 791, 791, 215,19007, 215, 215, 215, 218,19007, 218, 218, 218, 4823,19007, 4823, 4823, 4823, 1325,19007, 1325, 1325, 1325, 8197,19007, 8197, 8197, 8197, 811, 811, 811, 811, 811, 6918, 6918, 6918, 6918, 6918, 1345,19007, 1345, 1345, 1345, 1349,19007, 1349, 1349, 1349, 388,19007, 388, 388, 388, 1352,19007, 1352, 1352, 1352, 2047,19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834,19007, 834, 834, 834, 235,19007, 235, 235, 235, 239,19007, 239, 239, 239, 6948,19007, 6948, 6948, 6948, 402,19007, 402, 402, 402, 404,19007, 404, 404, 404, 6953,19007, 6953, 6953, 6953, 1380,19007, 1380, 1380, 1380, 2525, 2525, 2525,19007, 2525, 2524, 2524, 2524, 2524, 2524, 1712,19007, 1712, 1712, 1712, 3070, 3070, 3070, 3070, 3070, 8266,19007, 8266, 8266, 8266, 8271,19007, 8271, 8271, 8271, 8276,19007, 8276, 8276, 8276, 8281,19007, 8281, 8281, 8281, 8286,19007, 8286, 8286, 8286, 8291,19007, 8291, 8291, 8291, 8295,19007, 8295, 8295, 8295, 8298,19007, 8298, 8298, 8298, 8301,19007, 8301, 8301, 8301, 8307,19007, 8307, 8307, 8307, 8312,19007, 8312, 8312, 8312, 8316,19007, 8316, 8316, 8316, 8319,19007, 8319, 8319, 8319, 7087,19007, 7087, 7087, 7087, 4351,19007, 4351, 4351, 4351, 8331,19007, 8331, 8331, 8331, 8334,19007, 8334, 8334, 8334, 664,19007, 664, 664, 664, 8352,19007, 8352, 8352, 8352, 8354,19007, 8354, 8354, 8354, 661,19007, 661, 661, 661, 667,19007, 667, 667, 667, 671,19007, 671, 671, 671, 725, 725, 725, 725, 725, 6515,19007, 6515, 6515, 6515, 7768,19007, 7768, 7768, 7768, 8380,19007, 8380, 8380, 8380, 7142,19007, 7142, 7142, 7142, 5821,19007, 5821, 5821, 5821, 8416,19007, 8416, 8416, 8416, 8422,19007, 8422, 8422, 8422, 8429,19007, 8429, 8429, 8429, 8432,19007, 8432, 8432, 8432, 6528,19007, 6528, 6528, 6528, 6534,19007, 6534, 6534, 6534, 7805,19007, 7805, 7805, 7805, 6541,19007, 6541, 6541, 6541, 8475,19007, 8475, 8475, 8475, 8477,19007, 8477, 8477, 8477, 8484,19007, 8484, 8484, 8484, 8488,19007, 8488, 8488, 8488, 8491,19007, 8491, 8491, 8491, 8494,19007, 8494, 8494, 8494, 8496,19007, 8496, 8496, 8496, 664,19007, 664, 664, 664, 4519, 4519, 4519, 4519, 4519, 4526,19007, 4526, 4526, 4526, 8515, 8515, 8515, 8515, 8515, 7841, 7841, 7841, 7841, 7841, 7842, 7842, 7842, 7842, 7842, 1004,19007, 1004, 1004, 1004, 7859,19007, 7859, 7859, 7859, 8535,19007, 8535, 8535, 8535, 8540,19007, 8540, 8540, 8540, 8545,19007, 8545, 8545, 8545, 8550,19007, 8550, 8550, 8550, 8554,19007, 8554, 8554, 8554, 8557,19007, 8557, 8557, 8557, 8560,19007, 8560, 8560, 8560, 8564,19007, 8564, 8564, 8564, 8567,19007, 8567, 8567, 8567, 8570,19007, 8570, 8570, 8570, 8575,19007, 8575, 8575, 8575, 5945,19007, 5945, 5945, 5945, 8588,19007, 8588, 8588, 8588, 8599,19007, 8599, 8599, 8599, 8603,19007, 8603, 8603, 8603, 5946,19007, 5946, 5946, 5946, 664,19007, 664, 664, 664, 8617, 8617, 8617, 8617, 8617, 8622, 8622, 8622, 8622, 8622, 8627, 8627, 8627, 8627, 8627, 8632, 8632, 8632, 8632, 8632, 8636, 8636, 8636, 8636, 8636, 8639, 8639, 8639, 8639, 8639, 6405,19007, 6405, 6405, 6405, 8642, 8642, 8642, 8642, 8642, 8644, 8644, 8644, 8644, 8644, 8647, 8647, 8647, 8647, 8647, 8652, 8652, 8652, 8652, 8652, 8657, 8657, 8657, 8657, 8657, 8662, 8662, 8662, 8662, 8662, 8666, 8666, 8666, 8666, 8666, 8669, 8669, 8669, 8669, 8669, 8672, 8672, 8672, 8672, 8672, 8677, 8677, 8677, 8677, 8677, 8682, 8682, 8682, 8682, 8682, 8686, 8686, 8686, 8686, 8686, 8689, 8689, 8689, 8689, 8689, 2841, 2841, 2841, 2841, 2841, 119,19007, 119, 119, 119, 5008,19007, 5008, 5008, 5008, 664,19007, 664, 664, 664, 8704,19007, 8704, 8704, 8704, 778,19007, 778, 778, 778, 8719,19007, 8719, 8719, 8719, 8724,19007, 8724, 8724, 8724, 8729,19007, 8729, 8729, 8729, 8734,19007, 8734, 8734, 8734, 8739,19007, 8739, 8739, 8739, 8743,19007, 8743, 8743, 8743, 8747,19007, 8747, 8747, 8747, 8749,19007, 8749, 8749, 8749, 8754,19007, 8754, 8754, 8754, 8758,19007, 8758, 8758, 8758, 8762,19007, 8762, 8762, 8762, 8099,19007, 8099, 8099, 8099, 8104,19007, 8104, 8104, 8104, 8106,19007, 8106, 8106, 8106, 119,19007, 119, 119, 119, 1303,19007, 1303, 1303, 1303, 206,19007, 206, 206, 206, 791, 791, 791, 791, 791, 215,19007, 215, 215, 215, 218,19007, 218, 218, 218, 8851,19007, 8851, 8851, 8851, 4823,19007, 4823, 4823, 4823, 1325,19007, 1325, 1325, 1325, 8197,19007, 8197, 8197, 8197, 811, 811, 811, 811, 811, 6918, 6918, 6918, 6918, 6918, 1345,19007, 1345, 1345, 1345, 1349,19007, 1349, 1349, 1349, 388,19007, 388, 388, 388, 1352,19007, 1352, 1352, 1352, 2047,19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834,19007, 834, 834, 834, 235,19007, 235, 235, 235, 239,19007, 239, 239, 239, 6948,19007, 6948, 6948, 6948, 402,19007, 402, 402, 402, 404,19007, 404, 404, 404, 6953,19007, 6953, 6953, 6953, 1380,19007, 1380, 1380, 1380, 2525, 2525, 2525,19007, 2525, 2524, 2524, 2524, 2524, 2524, 1712,19007, 1712, 1712, 1712, 3070, 3070, 3070, 3070, 3070, 8909,19007, 8909, 8909, 8909, 8266,19007, 8266, 8266, 8266, 8922,19007, 8922, 8922, 8922, 8927,19007, 8927, 8927, 8927, 8932,19007, 8932, 8932, 8932, 8939,19007, 8939, 8939, 8939, 7087,19007, 7087, 7087, 7087, 8948,19007, 8948, 8948, 8948, 8951,19007, 8951, 8951, 8951, 8957,19007, 8957, 8957, 8957, 664,19007, 664, 664, 664, 8352,19007, 8352, 8352, 8352, 8354,19007, 8354, 8354, 8354, 661,19007, 661, 661, 661, 671,19007, 671, 671, 671, 725, 725, 725, 725, 725, 6515,19007, 6515, 6515, 6515, 8416,19007, 8416, 8416, 8416, 8992,19007, 8992, 8992, 8992, 8995,19007, 8995, 8995, 8995, 7136,19007, 7136, 7136, 7136, 7142,19007, 7142, 7142, 7142, 5821,19007, 5821, 5821, 5821, 9037,19007, 9037, 9037, 9037, 9039,19007, 9039, 9039, 9039, 9045,19007, 9045, 9045, 9045, 9048,19007, 9048, 9048, 9048, 9050,19007, 9050, 9050, 9050, 9058,19007, 9058, 9058, 9058, 9063,19007, 9063, 9063, 9063, 9067,19007, 9067, 9067, 9067, 9071,19007, 9071, 9071, 9071, 9075,19007, 9075, 9075, 9075, 6534,19007, 6534, 6534, 6534, 7805,19007, 7805, 7805, 7805, 6541,19007, 6541, 6541, 6541, 7156,19007, 7156, 7156, 7156, 9127,19007, 9127, 9127, 9127, 9130,19007, 9130, 9130, 9130, 9133,19007, 9133, 9133, 9133, 9138,19007, 9138, 9138, 9138, 9143,19007, 9143, 9143, 9143, 9147,19007, 9147, 9147, 9147, 9150,19007, 9150, 9150, 9150, 9153,19007, 9153, 9153, 9153, 9156,19007, 9156, 9156, 9156, 9159,19007, 9159, 9159, 9159, 6528,19007, 6528, 6528, 6528, 664,19007, 664, 664, 664, 4519, 4519, 4519, 4519, 4519, 4526,19007, 4526, 4526, 4526, 8515, 8515, 8515, 8515, 8515, 8516, 8516,19007, 8516, 8516, 7841, 7841, 7841, 7841, 7841, 1004,19007, 1004, 1004, 1004, 9195,19007, 9195, 9195, 9195, 9200,19007, 9200, 9200, 9200, 9205,19007, 9205, 9205, 9205, 9210,19007, 9210, 9210, 9210, 9215,19007, 9215, 9215, 9215, 9219,19007, 9219, 9219, 9219, 9223,19007, 9223, 9223, 9223, 9225,19007, 9225, 9225, 9225, 9230,19007, 9230, 9230, 9230, 9234,19007, 9234, 9234, 9234, 9238,19007, 9238, 9238, 9238, 5945,19007, 5945, 5945, 5945, 9245,19007, 9245, 9245, 9245, 9248,19007, 9248, 9248, 9248, 9259,19007, 9259, 9259, 9259, 9265,19007, 9265, 9265, 9265, 9269,19007, 9269, 9269, 9269, 9273,19007, 9273, 9273, 9273, 9278,19007, 9278, 9278, 9278, 5946,19007, 5946, 5946, 5946, 664,19007, 664, 664, 664, 8617, 8617, 8617, 8617, 8617, 9288, 9288, 9288, 9288, 9288, 9293, 9293, 9293, 9293, 9293, 9298, 9298, 9298, 9298, 9298, 9303, 9303, 9303, 9303, 9303, 9307, 9307, 9307, 9307, 9307, 9310, 9310, 9310, 9310, 9310, 9313, 9313, 9313, 9313, 9313, 9316, 9316, 9316, 9316, 9316, 9319, 9319, 9319, 9319, 9319, 9322, 9322, 9322, 9322, 9322, 9327, 9327, 9327, 9327, 9327, 2841, 2841, 2841, 2841, 2841, 119,19007, 119, 119, 119, 5694,19007, 5694, 5694, 5694, 664,19007, 664, 664, 664, 9345,19007, 9345, 9345, 9345, 778,19007, 778, 778, 778, 9361,19007, 9361, 9361, 9361, 9366,19007, 9366, 9366, 9366, 9371,19007, 9371, 9371, 9371, 9376,19007, 9376, 9376, 9376, 9381,19007, 9381, 9381, 9381, 9386,19007, 9386, 9386, 9386, 9390,19007, 9390, 9390, 9390, 9393,19007, 9393, 9393, 9393, 9396,19007, 9396, 9396, 9396, 9402,19007, 9402, 9402, 9402, 9407,19007, 9407, 9407, 9407, 9411,19007, 9411, 9411, 9411, 9414,19007, 9414, 9414, 9414, 119,19007, 119, 119, 119, 1303,19007, 1303, 1303, 1303, 206,19007, 206, 206, 206, 791, 791, 791, 791, 791, 215,19007, 215, 215, 215, 218,19007, 218, 218, 218, 8851,19007, 8851, 8851, 8851, 4823,19007, 4823, 4823, 4823, 1325,19007, 1325, 1325, 1325, 8197,19007, 8197, 8197, 8197, 811, 811, 811, 811, 811, 6918, 6918, 6918, 6918, 6918, 1345,19007, 1345, 1345, 1345, 1349,19007, 1349, 1349, 1349, 388,19007, 388, 388, 388, 1352,19007, 1352, 1352, 1352, 2047,19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834,19007, 834, 834, 834, 235,19007, 235, 235, 235, 239,19007, 239, 239, 239, 6948,19007, 6948, 6948, 6948, 402,19007, 402, 402, 402, 404,19007, 404, 404, 404, 6953,19007, 6953, 6953, 6953, 1380,19007, 1380, 1380, 1380, 2525, 2525, 2525,19007, 2525, 2524, 2524, 2524, 2524, 2524, 1712,19007, 1712, 1712, 1712, 3070, 3070, 3070, 3070, 3070, 8909,19007, 8909, 8909, 8909, 9566,19007, 9566, 9566, 9566, 9571,19007, 9571, 9571, 9571, 9579,19007, 9579, 9579, 9579, 7087,19007, 7087, 7087, 7087, 9581,19007, 9581, 9581, 9581, 9584,19007, 9584, 9584, 9584, 9587,19007, 9587, 9587, 9587, 9591,19007, 9591, 9591, 9591, 9589,19007, 9589, 9589, 9589, 8352,19007, 8352, 8352, 8352, 8354,19007, 8354, 8354, 8354, 671,19007, 671, 671, 671, 725, 725, 725, 725, 725, 6515,19007, 6515, 6515, 6515, 9037,19007, 9037, 9037, 9037, 9623,19007, 9623, 9623, 9623, 9627,19007, 9627, 9627, 9627, 9630,19007, 9630, 9630, 9630, 9070,19007, 9070, 9070, 9070, 9635,19007, 9635, 9635, 9635, 7142,19007, 7142, 7142, 7142, 7155,19007, 7155, 7155, 7155, 7136,19007, 7136, 7136, 7136, 9686,19007, 9686, 9686, 9686, 9689,19007, 9689, 9689, 9689, 9692,19007, 9692, 9692, 9692, 9699,19007, 9699, 9699, 9699, 9703,19007, 9703, 9703, 9703, 9705,19007, 9705, 9705, 9705, 9708,19007, 9708, 9708, 9708, 9711,19007, 9711, 9711, 9711, 9719,19007, 9719, 9719, 9719, 9721,19007, 9721, 9721, 9721, 9727,19007, 9727, 9727, 9727, 9729,19007, 9729, 9729, 9729, 9734,19007, 9734, 9734, 9734, 9736,19007, 9736, 9736, 9736, 9739,19007, 9739, 9739, 9739, 9742,19007, 9742, 9742, 9742, 9744,19007, 9744, 9744, 9744, 9749,19007, 9749, 9749, 9749, 9751,19007, 9751, 9751, 9751, 9754,19007, 9754, 9754, 9754, 5821,19007, 5821, 5821, 5821, 119,19007, 119, 119, 119, 6534,19007, 6534, 6534, 6534, 7805,19007, 7805, 7805, 7805, 7770,19007, 7770, 7770, 7770, 9806,19007, 9806, 9806, 9806, 9810,19007, 9810, 9810, 9810, 9815,19007, 9815, 9815, 9815, 9818,19007, 9818, 9818, 9818, 9825,19007, 9825, 9825, 9825, 9830,19007, 9830, 9830, 9830, 9835,19007, 9835, 9835, 9835, 9839,19007, 9839, 9839, 9839, 9843,19007, 9843, 9843, 9843, 9845,19007, 9845, 9845, 9845, 9849,19007, 9849, 9849, 9849, 9853,19007, 9853, 9853, 9853, 9857,19007, 9857, 9857, 9857, 6528,19007, 6528, 6528, 6528, 119,19007, 119, 119, 119, 664,19007, 664, 664, 664, 4519, 4519, 4519, 4519, 4519, 4526,19007, 4526, 4526, 4526, 8515, 8515, 8515, 8515, 8515, 7841, 7841, 7841, 7841, 7841, 1004,19007, 1004, 1004, 1004, 9890,19007, 9890, 9890, 9890, 9895,19007, 9895, 9895, 9895, 9900,19007, 9900, 9900, 9900, 9905,19007, 9905, 9905, 9905, 9910,19007, 9910, 9910, 9910, 9915,19007, 9915, 9915, 9915, 9919,19007, 9919, 9919, 9919, 9922,19007, 9922, 9922, 9922, 9925,19007, 9925, 9925, 9925, 9931,19007, 9931, 9931, 9931, 9936,19007, 9936, 9936, 9936, 9940,19007, 9940, 9940, 9940, 9943,19007, 9943, 9943, 9943, 119,19007, 119, 119, 119, 5945,19007, 5945, 5945, 5945, 9951,19007, 9951, 9951, 9951, 9956,19007, 9956, 9956, 9956, 9960,19007, 9960, 9960, 9960, 9972,19007, 9972, 9972, 9972, 9980,19007, 9980, 9980, 9980, 9986,19007, 9986, 9986, 9986, 9990,19007, 9990, 9990, 9990, 9995,19007, 9995, 9995, 9995, 10002,19007,10002,10002,10002,10006,19007,10006,10006,10006, 5946,19007, 5946, 5946, 5946, 664,19007, 664, 664, 664, 10017,10017,10017,10017,10017,10022,10022,10022,10022,10022, 10027,10027,10027,10027,10027,10032,10032,10032,10032,10032, 10037,10037,10037,10037,10037,10041,10041,10041,10041,10041, 10045,10045,10045,10045,10045,10047,10047,10047,10047,10047, 10051,10051,10051,10051,10051,10055,10055,10055,10055,10055, 10059,10059,10059,10059,10059, 2841, 2841, 2841, 2841, 2841, 6380,19007, 6380, 6380, 6380,10073,19007,10073,10073,10073, 778,19007, 778, 778, 778, 9361,19007, 9361, 9361, 9361, 10090,19007,10090,10090,10090,10095,19007,10095,10095,10095, 10100,19007,10100,10100,10100,10107,19007,10107,10107,10107, 10187,19007,10187,10187,10187, 1303,19007, 1303, 1303, 1303, 206,19007, 206, 206, 206, 791, 791, 791, 791, 791, 215,19007, 215, 215, 215, 218,19007, 218, 218, 218, 8851,19007, 8851, 8851, 8851, 4823,19007, 4823, 4823, 4823, 1325,19007, 1325, 1325, 1325, 8197,19007, 8197, 8197, 8197, 811, 811, 811, 811, 811, 6918, 6918, 6918, 6918, 6918, 1345,19007, 1345, 1345, 1345, 1349,19007, 1349, 1349, 1349, 388,19007, 388, 388, 388, 1352,19007, 1352, 1352, 1352, 2047,19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834,19007, 834, 834, 834, 235,19007, 235, 235, 235, 239,19007, 239, 239, 239, 6948,19007, 6948, 6948, 6948, 10224,19007,10224,10224,10224, 402,19007, 402, 402, 402, 404,19007, 404, 404, 404, 6953,19007, 6953, 6953, 6953, 1380,19007, 1380, 1380, 1380, 2525, 2525, 2525,19007, 2525, 10237,10237,10237,10237,10237, 2524, 2524, 2524, 2524, 2524, 1712,19007, 1712, 1712, 1712, 3070, 3070, 3070, 3070, 3070, 8909,19007, 8909, 8909, 8909,10277,19007,10277,10277,10277, 9571,19007, 9571, 9571, 9571, 1462,19007, 1462, 1462, 1462, 9579,19007, 9579, 9579, 9579,10291,19007,10291,10291,10291, 10296,19007,10296,10296,10296,10299,19007,10299,10299,10299, 9587,19007, 9587, 9587, 9587, 9589,19007, 9589, 9589, 9589, 9591,19007, 9591, 9591, 9591, 8948,19007, 8948, 8948, 8948, 8354,19007, 8354, 8354, 8354, 8352,19007, 8352, 8352, 8352, 671,19007, 671, 671, 671, 119,19007, 119, 119, 119, 725, 725, 725, 725, 725, 9686,19007, 9686, 9686, 9686, 10323,19007,10323,10323,10323,10328,19007,10328,10328,10328, 10332,19007,10332,10332,10332,10335,19007,10335,10335,10335, 9742,19007, 9742, 9742, 9742,10340,19007,10340,10340,10340, 10343,19007,10343,10343,10343, 6515,19007, 6515, 6515, 6515, 7142,19007, 7142, 7142, 7142, 7768,19007, 7768, 7768, 7768, 7136,19007, 7136, 7136, 7136,10395,19007,10395,10395,10395, 10399,19007,10399,10399,10399,10404,19007,10404,10404,10404, 10407,19007,10407,10407,10407, 9699,19007, 9699, 9699, 9699, 10418,19007,10418,10418,10418,10420,19007,10420,10420,10420, 10425,19007,10425,10425,10425,10429,19007,10429,10429,10429, 10432,19007,10432,10432,10432, 9045,19007, 9045, 9045, 9045, 10440,19007,10440,10440,10440,10442,19007,10442,10442,10442, 10448,19007,10448,10448,10448,10450,19007,10450,10450,10450, 10456,19007,10456,10456,10456,10458,19007,10458,10458,10458, 10462,19007,10462,10462,10462,10466,19007,10466,10466,10466, 10468,19007,10468,10468,10468,10471,19007,10471,10471,10471, 10477,19007,10477,10477,10477,10479,19007,10479,10479,10479, 10483,19007,10483,10483,10483,10487,19007,10487,10487,10487, 5821,19007, 5821, 5821, 5821, 119,19007, 119, 119, 119, 7805,19007, 7805, 7805, 7805, 8422,19007, 8422, 8422, 8422, 10550,19007,10550,10550,10550,10555,19007,10555,10555,10555, 10557,19007,10557,10557,10557,10563,19007,10563,10563,10563, 10567,19007,10567,10567,10567,10570,19007,10570,10570,10570, 10573,19007,10573,10573,10573,10575,19007,10575,10575,10575, 10578,19007,10578,10578,10578,10583,19007,10583,10583,10583, 10588,19007,10588,10588,10588,10593,19007,10593,10593,10593, 10597,19007,10597,10597,10597,10600,19007,10600,10600,10600, 10603,19007,10603,10603,10603,10608,19007,10608,10608,10608, 10613,19007,10613,10613,10613,10617,19007,10617,10617,10617, 10620,19007,10620,10620,10620, 6528,19007, 6528, 6528, 6528, 119,19007, 119, 119, 119, 4519, 4519, 4519, 4519, 4519, 4526,19007, 4526, 4526, 4526, 8515, 8515, 8515, 8515, 8515, 7841, 7841, 7841, 7841, 7841, 1004,19007, 1004, 1004, 1004, 9890,19007, 9890, 9890, 9890,10653,19007,10653,10653,10653, 10658,19007,10658,10658,10658,10663,19007,10663,10663,10663, 10670,19007,10670,10670,10670, 5945,19007, 5945, 5945, 5945, 10677,19007,10677,10677,10677,10684,19007,10684,10684,10684, 10691,19007,10691,10691,10691,10695,19007,10695,10695,10695, 10710,19007,10710,10710,10710,10719,19007,10719,10719,10719, 10727,19007,10727,10727,10727,10733,19007,10733,10733,10733, 10738,19007,10738,10738,10738,10743,19007,10743,10743,10743, 10752,19007,10752,10752,10752,10758,19007,10758,10758,10758, 10763,19007,10763,10763,10763, 5946,19007, 5946, 5946, 5946, 664,19007, 664, 664, 664, 119,19007, 119, 119, 119, 10775,10775,10775,10775,10775,10780,10780,10780,10780,10780, 10785,10785,10785,10785,10785,10790,10790,10790,10790,10790, 10795,10795,10795,10795,10795,10800,10800,10800,10800,10800, 10804,10804,10804,10804,10804,10807,10807,10807,10807,10807, 10810,10810,10810,10810,10810,10815,10815,10815,10815,10815, 10820,10820,10820,10820,10820,10824,10824,10824,10824,10824, 10827,10827,10827,10827,10827, 2841, 2841, 2841, 2841, 2841, 119,19007, 119, 119, 119, 6380,19007, 6380, 6380, 6380, 664,19007, 664, 664, 664,10842,19007,10842,10842,10842, 778,19007, 778, 778, 778,10857,19007,10857,10857,10857, 10862,19007,10862,10862,10862,10187,19007,10187,10187,10187, 1303,19007, 1303, 1303, 1303, 206,19007, 206, 206, 206, 791, 791, 791, 791, 791, 8851,19007, 8851, 8851, 8851, 4823,19007, 4823, 4823, 4823, 1325,19007, 1325, 1325, 1325, 8197,19007, 8197, 8197, 8197, 218,19007, 218, 218, 218, 811, 811, 811, 811, 811,10950,10950,10950,10950,10950, 6918, 6918, 6918, 6918, 6918, 1345,19007, 1345, 1345, 1345, 1349,19007, 1349, 1349, 1349, 388,19007, 388, 388, 388, 1352,19007, 1352, 1352, 1352, 2047,19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834,19007, 834, 834, 834, 235,19007, 235, 235, 235, 6948,19007, 6948, 6948, 6948, 10224,19007,10224,10224,10224, 402,19007, 402, 402, 402, 404,19007, 404, 404, 404, 6953,19007, 6953, 6953, 6953, 1380,19007, 1380, 1380, 1380,10983,10983,10983,10983,10983, 10237,10237,10237,10237,10237,10239,19007,10239,10239,10239, 2524, 2524, 2524, 2524, 2524, 1712,19007, 1712, 1712, 1712, 11019,11019,11019,11019,11019, 3070, 3070, 3070, 3070, 3070, 8909,19007, 8909, 8909, 8909,10277,19007,10277,10277,10277, 11051,19007,11051,11051,11051, 9571,19007, 9571, 9571, 9571, 1815,19007, 1815, 1815, 1815, 9579,19007, 9579, 9579, 9579, 11060,19007,11060,11060,11060,11065,19007,11065,11065,11065, 11069,19007,11069,11069,11069,11072,19007,11072,11072,11072, 11075,19007,11075,11075,11075, 9591,19007, 9591, 9591, 9591, 9589,19007, 9589, 9589, 9589, 9581,19007, 9581, 9581, 9581, 9587,19007, 9587, 9587, 9587, 8354,19007, 8354, 8354, 8354, 8352,19007, 8352, 8352, 8352, 725, 725, 725, 725, 725, 11093,19007,11093,11093,11093,11098,19007,11098,11098,11098, 11103,19007,11103,11103,11103,11107,19007,11107,11107,11107, 11111,19007,11111,11111,11111,10468,19007,10468,10468,10468, 11115,19007,11115,11115,11115,11119,19007,11119,11119,11119, 11123,19007,11123,11123,11123, 6515,19007, 6515, 6515, 6515, 8416,19007, 8416, 8416, 8416, 7136,19007, 7136, 7136, 7136, 11187,19007,11187,11187,11187,11192,19007,11192,11192,11192, 11194,19007,11194,11194,11194,11200,19007,11200,11200,11200, 11204,19007,11204,11204,11204,11207,19007,11207,11207,11207, 11210,19007,11210,11210,11210,11213,19007,11213,11213,11213, 11217,19007,11217,11217,11217, 9699,19007, 9699, 9699, 9699, 11222,19007,11222,11222,11222,11224,19007,11224,11224,11224, 11228,19007,11228,11228,11228,11232,19007,11232,11232,11232, 11237,19007,11237,11237,11237,11241,19007,11241,11241,11241, 11244,19007,11244,11244,11244,11247,19007,11247,11247,11247, 11253,19007,11253,11253,11253,11255,19007,11255,11255,11255, 11261,19007,11261,11261,11261,11263,19007,11263,11263,11263, 11269,19007,11269,11269,11269,11271,19007,11271,11271,11271, 11276,19007,11276,11276,11276,11280,19007,11280,11280,11280, 11283,19007,11283,11283,11283,11286,19007,11286,11286,11286, 11290,19007,11290,11290,11290,11297,19007,11297,11297,11297, 11299,19007,11299,11299,11299,11304,19007,11304,11304,11304, 11308,19007,11308,11308,11308,11311,19007,11311,11311,11311, 5821,19007, 5821, 5821, 5821, 119,19007, 119, 119, 119, 9048,19007, 9048, 9048, 9048,11380,19007,11380,11380,11380, 11385,19007,11385,11385,11385,11388,19007,11388,11388,11388, 11391,19007,11391,11391,11391,11396,19007,11396,11396,11396, 11401,19007,11401,11401,11401,11405,19007,11405,11405,11405, 11408,19007,11408,11408,11408,11411,19007,11411,11411,11411, 11414,19007,11414,11414,11414,11417,19007,11417,11417,11417, 11420,19007,11420,11420,11420,11425,19007,11425,11425,11425, 6528,19007, 6528, 6528, 6528, 119,19007, 119, 119, 119, 4519, 4519, 4519, 4519, 4519, 4526,19007, 4526, 4526, 4526, 8515, 8515, 8515, 8515, 8515, 1004,19007, 1004, 1004, 1004, 11461,19007,11461,11461,11461,11466,19007,11466,11466,11466, 5945,19007, 5945, 5945, 5945,11474,19007,11474,11474,11474, 11483,19007,11483,11483,11483,11486,19007,11486,11486,11486, 11495,19007,11495,11495,11495,11501,19007,11501,11501,11501, 11505,19007,11505,11505,11505,11509,19007,11509,11509,11509, 11514,19007,11514,11514,11514,11525,19007,11525,11525,11525, 11535,19007,11535,11535,11535,11544,19007,11544,11544,11544, 11552,19007,11552,11552,11552,11558,19007,11558,11558,11558, 11562,19007,11562,11562,11562,11569,19007,11569,11569,11569, 11580,19007,11580,11580,11580,11588,19007,11588,11588,11588, 11594,19007,11594,11594,11594,11598,19007,11598,11598,11598, 5946,19007, 5946, 5946, 5946,11609,11609,11609,11609,11609, 119,19007, 119, 119, 119,10775,10775,10775,10775,10775, 11615,11615,11615,11615,11615,11620,11620,11620,11620,11620, 11625,11625,11625,11625,11625, 2841, 2841, 2841, 2841, 2841, 6380,19007, 6380, 6380, 6380,11643,19007,11643,11643,11643, 778,19007, 778, 778, 778,11660,19007,11660,11660,11660, 10862,19007,10862,10862,10862, 1978,19007, 1978, 1978, 1978, 10187,19007,10187,10187,10187, 1303,19007, 1303, 1303, 1303, 206,19007, 206, 206, 206, 791, 791, 791, 791, 791, 8851,19007, 8851, 8851, 8851, 4823,19007, 4823, 4823, 4823, 1325,19007, 1325, 1325, 1325, 8197,19007, 8197, 8197, 8197, 218,19007, 218, 218, 218, 811, 811, 811, 811, 811, 10950,10950,10950,10950,10950, 6918, 6918, 6918, 6918, 6918, 1345,19007, 1345, 1345, 1345, 1349,19007, 1349, 1349, 1349, 1352,19007, 1352, 1352, 1352, 2047,19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834,19007, 834, 834, 834, 235,19007, 235, 235, 235, 6948,19007, 6948, 6948, 6948, 10224,19007,10224,10224,10224, 404,19007, 404, 404, 404, 6953,19007, 6953, 6953, 6953, 1380,19007, 1380, 1380, 1380, 10983,10983,10983,10983,10983,10985,19007,10985,10985,10985, 10237,10237,10237,10237,10237,10239,19007,10239,10239,10239, 2524, 2524, 2524, 2524, 2524, 1712,19007, 1712, 1712, 1712, 11019,11019,11019,11019,11019,11021,19007,11021,11021,11021, 3070, 3070, 3070, 3070, 3070, 8909,19007, 8909, 8909, 8909, 11868,19007,11868,11868,11868, 9571,19007, 9571, 9571, 9571, 9579,19007, 9579, 9579, 9579,11873,19007,11873,11873,11873, 11878,19007,11878,11878,11878,11883,19007,11883,11883,11883, 11887,19007,11887,11887,11887,11890,19007,11890,11890,11890, 11893,19007,11893,11893,11893,11896,19007,11896,11896,11896, 9591,19007, 9591, 9591, 9591, 661,19007, 661, 661, 661, 10291,19007,10291,10291,10291, 9587,19007, 9587, 9587, 9587, 8352,19007, 8352, 8352, 8352, 119,19007, 119, 119, 119, 725, 725, 725, 725, 725,11908,19007,11908,11908,11908, 11913,19007,11913,11913,11913,11918,19007,11918,11918,11918, 11923,19007,11923,11923,11923,11927,19007,11927,11927,11927, 11930,19007,11930,11930,11930,11286,19007,11286,11286,11286, 11935,19007,11935,11935,11935,11940,19007,11940,11940,11940, 11944,19007,11944,11944,11944,11947,19007,11947,11947,11947, 6515,19007, 6515, 6515, 6515, 9037,19007, 9037, 9037, 9037, 7136,19007, 7136, 7136, 7136,12017,19007,12017,12017,12017, 12022,19007,12022,12022,12022,12025,19007,12025,12025,12025, 12028,19007,12028,12028,12028,12033,19007,12033,12033,12033, 12038,19007,12038,12038,12038,12042,19007,12042,12042,12042, 12045,19007,12045,12045,12045,12048,19007,12048,12048,12048, 12052,19007,12052,12052,12052,12055,19007,12055,12055,12055, 12059,19007,12059,12059,12059,12062,19007,12062,12062,12062, 9699,19007, 9699, 9699, 9699,12067,19007,12067,12067,12067, 12069,19007,12069,12069,12069,12074,19007,12074,12074,12074, 12077,19007,12077,12077,12077,12080,19007,12080,12080,12080, 12085,19007,12085,12085,12085,12090,19007,12090,12090,12090, 12094,19007,12094,12094,12094,12097,19007,12097,12097,12097, 12100,19007,12100,12100,12100,12103,19007,12103,12103,12103, 12109,19007,12109,12109,12109,12111,19007,12111,12111,12111, 12116,19007,12116,12116,12116,12121,19007,12121,12121,12121, 119,19007, 119, 119, 119, 9705,19007, 9705, 9705, 9705, 12201,19007,12201,12201,12201,12206,19007,12206,12206,12206, 12210,19007,12210,12210,12210,12214,19007,12214,12214,12214, 12217,19007,12217,12217,12217,12224,19007,12224,12224,12224, 12229,19007,12229,12229,12229,12234,19007,12234,12234,12234, 12238,19007,12238,12238,12238,12242,19007,12242,12242,12242, 12244,19007,12244,12244,12244,12248,19007,12248,12248,12248, 12252,19007,12252,12252,12252,12256,19007,12256,12256,12256, 119,19007, 119, 119, 119, 6528,19007, 6528, 6528, 6528, 4519, 4519, 4519, 4519, 4519, 4526,19007, 4526, 4526, 4526, 1004,19007, 1004, 1004, 1004,12286,19007,12286,12286,12286, 11466,19007,11466,11466,11466, 2336,19007, 2336, 2336, 2336, 5945,19007, 5945, 5945, 5945,12298,19007,12298,12298,12298, 12308,19007,12308,12308,12308,12313,19007,12313,12313,12313, 12317,19007,12317,12317,12317,12326,19007,12326,12326,12326, 12334,19007,12334,12334,12334,12340,19007,12340,12340,12340, 12344,19007,12344,12344,12344,12349,19007,12349,12349,12349, 12356,19007,12356,12356,12356,12360,19007,12360,12360,12360, 12371,19007,12371,12371,12371,12381,19007,12381,12381,12381, 5946,19007, 5946, 5946, 5946,11609,11609,11609,11609,11609, 11610,11610,11610,11610, 119,19007, 119, 119, 119,12399, 12399,12399,12399,12399, 2841, 2841, 2841, 2841, 2841,12404, 12404,12404,12404,12404, 6380,19007, 6380, 6380, 6380,12417, 19007,12417,12417,12417, 778,19007, 778, 778, 778,11660, 19007,11660,11660,11660,12438,19007,12438,12438,12438,10862, 19007,10862,10862,10862, 2386,19007, 2386, 2386, 2386,10187, 19007,10187,10187,10187, 1303,19007, 1303, 1303, 1303, 206, 19007, 206, 206, 206, 791, 791, 791, 791, 791, 8851, 19007, 8851, 8851, 8851, 4823,19007, 4823, 4823, 4823, 1325, 19007, 1325, 1325, 1325,12499,19007,12499,12499,12499, 8197, 19007, 8197, 8197, 8197, 218,19007, 218, 218, 218, 811, 811, 811, 811, 811,10950,10950,10950,10950,10950, 6918, 6918, 6918, 6918, 6918, 1345,19007, 1345, 1345, 1345, 1349, 19007, 1349, 1349, 1349, 1352,19007, 1352, 1352, 1352, 2047, 19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834, 19007, 834, 834, 834, 235,19007, 235, 235, 235, 6948, 19007, 6948, 6948, 6948,10224,19007,10224,10224,10224, 404, 19007, 404, 404, 404, 6953,19007, 6953, 6953, 6953, 1380, 19007, 1380, 1380, 1380,10983,10983,10983,10983,10983,10237, 10237,10237,10237,10237,10239,19007,10239,10239,10239, 2524, 2524, 2524, 2524, 2524, 1712,19007, 1712, 1712, 1712,11019, 11019,11019,11019,11019,11021,19007,11021,11021,11021, 3070, 3070, 3070, 3070, 3070, 8909,19007, 8909, 8909, 8909,11868, 19007,11868,11868,11868, 9579,19007, 9579, 9579, 9579,12627, 19007,12627,12627,12627,12632,19007,12632,12632,12632,12637, 19007,12637,12637,12637,12642,19007,12642,12642,12642,12646, 19007,12646,12646,12646,12650,19007,12650,12650,12650,12652, 19007,12652,12652,12652,12656,19007,12656,12656,12656,12660, 19007,12660,12660,12660, 9591,19007, 9591, 9591, 9591,11060, 19007,11060,11060,11060, 9587,19007, 9587, 9587, 9587, 8352, 19007, 8352, 8352, 8352,12017,19007,12017,12017,12017,12666, 19007,12666,12666,12666,12116,19007,12116,12116,12116, 9686, 19007, 9686, 9686, 9686, 7136,19007, 7136, 7136, 7136,12746, 19007,12746,12746,12746,12751,19007,12751,12751,12751,12755, 19007,12755,12755,12755,12759,19007,12759,12759,12759,12762, 19007,12762,12762,12762,12769,19007,12769,12769,12769,12774, 19007,12774,12774,12774,12779,19007,12779,12779,12779,12783, 19007,12783,12783,12783,12787,19007,12787,12787,12787,12789, 19007,12789,12789,12789,12794,19007,12794,12794,12794,12798, 19007,12798,12798,12798,12802,19007,12802,12802,12802, 119, 19007, 119, 119, 119,12805,19007,12805,12805,12805,12811, 19007,12811,12811,12811,12814,19007,12814,12814,12814,11217, 19007,11217,11217,11217,12822,19007,12822,12822,12822,12824, 19007,12824,12824,12824,12829,19007,12829,12829,12829,12833, 19007,12833,12833,12833,12836,19007,12836,12836,12836,12840, 19007,12840,12840,12840,12845,19007,12845,12845,12845,12850, 19007,12850,12850,12850,12855,19007,12855,12855,12855,12859, 19007,12859,12859,12859,12863,19007,12863,12863,12863,12865, 19007,12865,12865,12865,12869,19007,12869,12869,12869,12873, 19007,12873,12873,12873, 9699,19007, 9699, 9699, 9699, 119, 19007, 119, 119, 119,10420,19007,10420,10420,10420,12954, 19007,12954,12954,12954,12959,19007,12959,12959,12959,12964, 19007,12964,12964,12964,12969,19007,12969,12969,12969,12973, 19007,12973,12973,12973,12976,19007,12976,12976,12976,12979, 19007,12979,12979,12979,12981,19007,12981,12981,12981,12984, 19007,12984,12984,12984,12989,19007,12989,12989,12989,12994, 19007,12994,12994,12994,12999,19007,12999,12999,12999,13003, 19007,13003,13003,13003,13006,19007,13006,13006,13006,13009, 19007,13009,13009,13009,13014,19007,13014,13014,13014,13019, 19007,13019,13019,13019,13023,19007,13023,13023,13023,13026, 19007,13026,13026,13026, 119,19007, 119, 119, 119, 4519, 4519, 4519, 4519, 4519, 4526,19007, 4526, 4526, 4526,13039, 13039,13039,13039,13039,13040,13040,13040,13040,13040, 1004, 19007, 1004, 1004, 1004,12286,19007,12286,12286,12286,13059, 19007,13059,13059,13059,11466,19007,11466,11466,11466, 2819, 19007, 2819, 2819, 2819, 5945,19007, 5945, 5945, 5945,13065, 19007,13065,13065,13065,13076,19007,13076,13076,13076,13083, 19007,13083,13083,13083,13089,19007,13089,13089,13089,13093, 19007,13093,13093,13093,13105,19007,13105,13105,13105,13114, 19007,13114,13114,13114,13122,19007,13122,13122,13122,13128, 19007,13128,13128,13128,13133,19007,13133,13133,13133,13138, 19007,13138,13138,13138,13147,19007,13147,13147,13147,13153, 19007,13153,13153,13153,13158,19007,13158,13158,13158, 5945, 19007, 5945, 5945, 5945, 5946,19007, 5946, 5946, 5946,11609, 11609,11609,11609,11609, 119,19007, 119, 119, 119,13174, 19007,13174,13174,13174,13176,13176,13176,13176,13176,12404, 12404,12404,12404,12404, 2843, 2843, 2843, 2843, 2843, 2841, 2841, 2841, 2841, 2841,13193,19007,13193,13193,13193, 778, 19007, 778, 778, 778,13208,19007,13208,13208,13208,10862, 19007,10862,10862,10862,10187,19007,10187,10187,10187, 1303, 19007, 1303, 1303, 1303, 206,19007, 206, 206, 206, 8851, 19007, 8851, 8851, 8851, 4823,19007, 4823, 4823, 4823, 1325, 19007, 1325, 1325, 1325,12499,19007,12499,12499,12499, 8197, 19007, 8197, 8197, 8197, 218,19007, 218, 218, 218,10950, 10950,10950,10950,10950, 6918, 6918, 6918, 6918, 6918, 1345, 19007, 1345, 1345, 1345, 1349,19007, 1349, 1349, 1349, 1352, 19007, 1352, 1352, 1352, 2047,19007, 2047, 2047, 2047, 832, 19007, 832, 832, 832, 834,19007, 834, 834, 834, 235, 19007, 235, 235, 235, 6948,19007, 6948, 6948, 6948,10224, 19007,10224,10224,10224, 404,19007, 404, 404, 404, 6953, 19007, 6953, 6953, 6953, 1380,19007, 1380, 1380, 1380,10983, 10983,10983,10983,10983,10237,10237,10237,10237,10237,10239, 19007,10239,10239,10239, 2524, 2524, 2524, 2524, 2524, 1712, 19007, 1712, 1712, 1712,11019,11019,11019,11019,11019,11021, 19007,11021,11021,11021, 3070, 3070, 3070, 3070, 3070, 8909, 19007, 8909, 8909, 8909,11868,19007,11868,11868,11868, 9579, 19007, 9579, 9579, 9579,13370,19007,13370,13370,13370,13375, 19007,13375,13375,13375,13380,19007,13380,13380,13380,13385, 19007,13385,13385,13385,13390,19007,13390,13390,13390,13394, 19007,13394,13394,13394,13397,19007,13397,13397,13397,13400, 19007,13400,13400,13400,13405,19007,13405,13405,13405,13409, 19007,13409,13409,13409,13412,19007,13412,13412,13412,11873, 19007,11873,11873,11873, 9587,19007, 9587, 9587, 9587, 8352, 19007, 8352, 8352, 8352, 119,19007, 119, 119, 119,12746, 19007,12746,12746,12746,10395,19007,10395,10395,10395,13494, 19007,13494,13494,13494,13499,19007,13499,13499,13499,13504, 19007,13504,13504,13504,13509,19007,13509,13509,13509,13513, 19007,13513,13513,13513,13516,19007,13516,13516,13516,13519, 19007,13519,13519,13519,13522,19007,13522,13522,13522,13525, 19007,13525,13525,13525,13530,19007,13530,13530,13530,13535, 19007,13535,13535,13535,13540,19007,13540,13540,13540,13544, 19007,13544,13544,13544,13547,19007,13547,13547,13547,13550, 19007,13550,13550,13550,13556,19007,13556,13556,13556,13561, 19007,13561,13561,13561,13565,19007,13565,13565,13565,13568, 19007,13568,13568,13568, 119,19007, 119, 119, 119,13572, 19007,13572,13572,13572,13574,19007,13574,13574,13574,13581, 19007,13581,13581,13581,13585,19007,13585,13585,13585,13588, 19007,13588,13588,13588,13591,19007,13591,13591,13591,13594, 19007,13594,13594,13594,12059,19007,12059,12059,12059,13599, 19007,13599,13599,13599,13601,19007,13601,13601,13601,13606, 19007,13606,13606,13606,13611,19007,13611,13611,13611,13615, 19007,13615,13615,13615,13618,19007,13618,13618,13618,13621, 19007,13621,13621,13621,13624,19007,13624,13624,13624,13629, 19007,13629,13629,13629,13634,19007,13634,13634,13634,13639, 19007,13639,13639,13639,13644,19007,13644,13644,13644,13648, 19007,13648,13648,13648,13651,19007,13651,13651,13651,13654, 19007,13654,13654,13654,13659,19007,13659,13659,13659,13663, 19007,13663,13663,13663,13666,19007,13666,13666,13666,13606, 19007,13606,13606,13606, 9699,19007, 9699, 9699, 9699, 119, 19007, 119, 119, 119, 9045,19007, 9045, 9045, 9045,12954, 19007,12954,12954,12954,13741,19007,13741,13741,13741,13746, 19007,13746,13746,13746,13751,19007,13751,13751,13751,13756, 19007,13756,13756,13756,13760,19007,13760,13760,13760,13763, 19007,13763,13763,13763,13766,19007,13766,13766,13766,13769, 19007,13769,13769,13769,13772,19007,13772,13772,13772,13775, 19007,13775,13775,13775,13780,19007,13780,13780,13780, 4519, 4519, 4519, 4519, 4519, 4526,19007, 4526, 4526, 4526,13039, 13039,13039,13039,13039,13040,13040,13040,13040,13040, 1004, 19007, 1004, 1004, 1004,13810,19007,13810,13810,13810,11466, 19007,11466,11466,11466, 5945,19007, 5945, 5945, 5945,13815, 19007,13815,13815,13815,13827,19007,13827,13827,13827,13836, 19007,13836,13836,13836,13844,19007,13844,13844,13844,13850, 19007,13850,13850,13850,13854,19007,13854,13854,13854,13858, 19007,13858,13858,13858,13863,19007,13863,13863,13863,13871, 19007,13871,13871,13871,13881,19007,13881,13881,13881,13890, 19007,13890,13890,13890,13898,19007,13898,13898,13898,13904, 19007,13904,13904,13904,13908,19007,13908,13908,13908,13915, 19007,13915,13915,13915,13926,19007,13926,13926,13926,13934, 19007,13934,13934,13934,13940,19007,13940,13940,13940,13944, 19007,13944,13944,13944, 5945,19007, 5945, 5945, 5945,13815, 19007,13815,13815,13815, 5946,19007, 5946, 5946, 5946,11609, 11609,11609,11609,11609, 119,19007, 119, 119, 119,13174, 19007,13174,13174,13174,13176,13176,13176,13176,13176, 2841, 2841, 2841, 2841, 2841,12404,12404,12404,12404,12404, 3394, 3394, 3394, 3394, 3394,13975,19007,13975,13975,13975, 778, 19007, 778, 778, 778,13208,19007,13208,13208,13208,10187, 19007,10187,10187,10187, 1303,19007, 1303, 1303, 1303, 206, 19007, 206, 206, 206, 8851,19007, 8851, 8851, 8851, 4823, 19007, 4823, 4823, 4823, 1325,19007, 1325, 1325, 1325,12499, 19007,12499,12499,12499, 8197,19007, 8197, 8197, 8197, 218, 19007, 218, 218, 218,10950,10950,10950,10950,10950, 6918, 6918, 6918, 6918, 6918, 1345,19007, 1345, 1345, 1345, 1349, 19007, 1349, 1349, 1349, 1352,19007, 1352, 1352, 1352, 2047, 19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834, 19007, 834, 834, 834, 235,19007, 235, 235, 235, 6948, 19007, 6948, 6948, 6948,10224,19007,10224,10224,10224, 404, 19007, 404, 404, 404, 6953,19007, 6953, 6953, 6953, 1380, 19007, 1380, 1380, 1380,10983,10983,10983,10983,10983,10237, 10237,10237,10237,10237,10239,19007,10239,10239,10239, 2524, 2524, 2524, 2524, 2524, 1712,19007, 1712, 1712, 1712,11019, 11019,11019,11019,11019,11021,19007,11021,11021,11021, 3070, 3070, 3070, 3070, 3070, 8909,19007, 8909, 8909, 8909,11868, 19007,11868,11868,11868, 9579,19007, 9579, 9579, 9579,14117, 19007,14117,14117,14117,14122,19007,14122,14122,14122,12627, 19007,12627,12627,12627,13494,19007,13494,13494,13494,14200, 19007,14200,14200,14200,14205,19007,14205,14205,14205,14210, 19007,14210,14210,14210,14215,19007,14215,14215,14215,14219, 19007,14219,14219,14219,14222,19007,14222,14222,14222,14225, 19007,14225,14225,14225,14229,19007,14229,14229,14229,14232, 19007,14232,14232,14232,14235,19007,14235,14235,14235,14240, 19007,14240,14240,14240,14248,19007,14248,14248,14248,14251, 19007,14251,14251,14251,14254,19007,14254,14254,14254,14261, 19007,14261,14261,14261,14266,19007,14266,14266,14266,14270, 19007,14270,14270,14270,14273,19007,14273,14273,14273,14276, 19007,14276,14276,14276,14280,19007,14280,14280,14280,14283, 19007,14283,14283,14283,12805,19007,12805,12805,12805,13599, 19007,13599,13599,13599,13601,19007,13601,13601,13601,14287, 19007,14287,14287,14287,14292,19007,14292,14292,14292,14297, 19007,14297,14297,14297,14301,19007,14301,14301,14301,14304, 19007,14304,14304,14304,14307,19007,14307,14307,14307,14310, 19007,14310,14310,14310,14313,19007,14313,14313,14313,14318, 19007,14318,14318,14318, 9699,19007, 9699, 9699, 9699, 119, 19007, 119, 119, 119,14400,19007,14400,14400,14400,14405, 19007,14405,14405,14405,14410,19007,14410,14410,14410,14415, 19007,14415,14415,14415,14420,19007,14420,14420,14420,14424, 19007,14424,14424,14424,14428,19007,14428,14428,14428,14430, 19007,14430,14430,14430,14434,19007,14434,14434,14434,14438, 19007,14438,14438,14438,14442,19007,14442,14442,14442,14446, 14446,14446,14446,14446, 4519, 4519, 4519, 4519, 4519, 4526, 19007, 4526, 4526, 4526,13039,13039,13039,13039,13039, 1004, 19007, 1004, 1004, 1004,13810,19007,13810,13810,13810, 5945, 19007, 5945, 5945, 5945,13815,19007,13815,13815,13815,14475, 19007,14475,14475,14475,14485,19007,14485,14485,14485,14494, 19007,14494,14494,14494,14502,19007,14502,14502,14502,14508, 19007,14508,14508,14508,14512,19007,14512,14512,14512,14517, 19007,14517,14517,14517,14524,19007,14524,14524,14524,14528, 19007,14528,14528,14528,14537,19007,14537,14537,14537,14547, 19007,14547,14547,14547, 5946,19007, 5946, 5946, 5946,11609, 11609,11609,11609,11609, 119,19007, 119, 119, 119,13174, 19007,13174,13174,13174, 2841, 2841, 2841, 2841, 2841,12404, 12404,12404,12404,12404,14580,19007,14580,14580,14580, 778, 19007, 778, 778, 778,13208,19007,13208,13208,13208,10187, 19007,10187,10187,10187, 206,19007, 206, 206, 206, 8851, 19007, 8851, 8851, 8851, 4823,19007, 4823, 4823, 4823,12499, 19007,12499,12499,12499, 8197,19007, 8197, 8197, 8197, 218, 19007, 218, 218, 218,10950,10950,10950,10950,10950, 6918, 6918, 6918, 6918, 6918, 2047,19007, 2047, 2047, 2047, 832, 19007, 832, 832, 832, 834,19007, 834, 834, 834, 235, 19007, 235, 235, 235, 6948,19007, 6948, 6948, 6948,10224, 19007,10224,10224,10224, 404,19007, 404, 404, 404, 6953, 19007, 6953, 6953, 6953,10983,10983,10983,10983,10983,10237, 10237,10237,10237,10237,10239,19007,10239,10239,10239, 2524, 2524, 2524, 2524, 2524, 1712,19007, 1712, 1712, 1712,11019, 11019,11019,11019,11019,11021,19007,11021,11021,11021, 3070, 3070, 3070, 3070, 3070, 8909,19007, 8909, 8909, 8909,14703, 19007,14703,14703,14703, 9579,19007, 9579, 9579, 9579,14708, 19007,14708,14708,14708,14789,19007,14789,14789,14789,14794, 19007,14794,14794,14794,14799,19007,14799,14799,14799,14804, 19007,14804,14804,14804,14809,19007,14809,14809,14809,14813, 19007,14813,14813,14813,14817,19007,14817,14817,14817,14819, 19007,14819,14819,14819,14824,19007,14824,14824,14824,14828, 19007,14828,14828,14828,14832,19007,14832,14832,14832,14835, 19007,14835,14835,14835,14839,19007,14839,14839,14839,14844, 19007,14844,14844,14844,14847,19007,14847,14847,14847,14855, 19007,14855,14855,14855,14860,19007,14860,14860,14860,14865, 19007,14865,14865,14865,14869,19007,14869,14869,14869,14873, 19007,14873,14873,14873,14875,19007,14875,14875,14875,14880, 19007,14880,14880,14880,14884,19007,14884,14884,14884,14888, 19007,14888,14888,14888,13572,19007,13572,13572,13572,14891, 19007,14891,14891,14891,14896,19007,14896,14896,14896,14901, 19007,14901,14901,14901,14906,19007,14906,14906,14906,14910, 19007,14910,14910,14910,14914,19007,14914,14914,14914,14916, 19007,14916,14916,14916,14920,19007,14920,14920,14920,14924, 19007,14924,14924,14924,14926,19007,14926,14926,14926, 119, 19007, 119, 119, 119,14998,19007,14998,14998,14998,15003, 19007,15003,15003,15003,15008,19007,15008,15008,15008,15013, 19007,15013,15013,15013,15018,19007,15018,15018,15018,15023, 19007,15023,15023,15023,15027,19007,15027,15027,15027,15030, 19007,15030,15030,15030,15033,19007,15033,15033,15033,15038, 19007,15038,15038,15038,15043,19007,15043,15043,15043,15047, 19007,15047,15047,15047,15050,19007,15050,15050,15050,14446, 14446,14446,14446,14446,14447,14447,14447,14447,14447, 4526, 19007, 4526, 4526, 4526,13039,13039,13039,13039,13039, 1004, 19007, 1004, 1004, 1004,13810,19007,13810,13810,13810, 5945, 19007, 5945, 5945, 5945,15083,19007,15083,15083,15083,15094, 19007,15094,15094,15094,15104,19007,15104,15104,15104,15113, 19007,15113,15113,15113,15121,19007,15121,15121,15121,15127, 19007,15127,15127,15127,15132,19007,15132,15132,15132,15137, 19007,15137,15137,15137,15146,19007,15146,15146,15146,15152, 19007,15152,15152,15152,15157,19007,15157,15157,15157,13815, 19007,13815,13815,13815, 5946,19007, 5946, 5946, 5946,11609, 11609,11609,11609,11609,13174,19007,13174,13174,13174,15175, 15175,15175,15175,15175,12404,12404,12404,12404,12404, 2841, 2841, 2841, 2841, 2841,15187,19007,15187,15187,15187, 778, 19007, 778, 778, 778,13208,19007,13208,13208,13208,10187, 19007,10187,10187,10187, 206,19007, 206, 206, 206, 8851, 19007, 8851, 8851, 8851, 4823,19007, 4823, 4823, 4823,12499, 19007,12499,12499,12499, 8197,19007, 8197, 8197, 8197, 218, 19007, 218, 218, 218,10950,10950,10950,10950,10950, 6918, 6918, 6918, 6918, 6918, 2047,19007, 2047, 2047, 2047, 832, 19007, 832, 832, 832, 834,19007, 834, 834, 834, 235, 19007, 235, 235, 235, 6948,19007, 6948, 6948, 6948,10224, 19007,10224,10224,10224, 404,19007, 404, 404, 404, 6953, 19007, 6953, 6953, 6953,10983,10983,10983,10983,10983,10237, 10237,10237,10237,10237,10239,19007,10239,10239,10239, 2524, 2524, 2524, 2524, 2524,15256,19007,15256,15256,15256,11019, 11019,11019,11019,11019,11021,19007,11021,11021,11021, 3070, 3070, 3070, 3070, 3070, 8909,19007, 8909, 8909, 8909,14703, 19007,14703,14703,14703, 9579,19007, 9579, 9579, 9579,15308, 19007,15308,15308,15308,15381,19007,15381,15381,15381,15386, 19007,15386,15386,15386,15391,19007,15391,15391,15391,15396, 19007,15396,15396,15396,15401,19007,15401,15401,15401,15406, 19007,15406,15406,15406,15410,19007,15410,15410,15410,15413, 19007,15413,15413,15413,15416,19007,15416,15416,15416,15422, 19007,15422,15422,15422,15427,19007,15427,15427,15427,15431, 19007,15431,15431,15431,15434,19007,15434,15434,15434,15438, 19007,15438,15438,15438,15443,19007,15443,15443,15443,15445, 19007,15445,15445,15445,15451,19007,15451,15451,15451,15455, 19007,15455,15455,15455,15458,19007,15458,15458,15458,15461, 19007,15461,15461,15461,15464,19007,15464,15464,15464,15468, 19007,15468,15468,15468,15473,19007,15473,15473,15473,15478, 19007,15478,15478,15478,15483,19007,15483,15483,15483,15487, 19007,15487,15487,15487,15490,19007,15490,15490,15490,15493, 19007,15493,15493,15493,15499,19007,15499,15499,15499,15504, 19007,15504,15504,15504,15508,19007,15508,15508,15508,15511, 19007,15511,15511,15511,14248,19007,14248,14248,14248,15515, 19007,15515,15515,15515,15520,19007,15520,15520,15520,15525, 19007,15525,15525,15525,15530,19007,15530,15530,15530,15535, 19007,15535,15535,15535,15539,19007,15539,15539,15539,15542, 19007,15542,15542,15542,15545,19007,15545,15545,15545,15550, 19007,15550,15550,15550,15554,19007,15554,15554,15554,15557, 19007,15557,15557,15557,15560,19007,15560,15560,15560, 119, 19007, 119, 119, 119,14998,19007,14998,14998,14998,15632, 19007,15632,15632,15632,15637,19007,15637,15637,15637,15642, 19007,15642,15642,15642,14446,14446,14446,14446,14446, 4526, 19007, 4526, 4526, 4526,13039,13039,13039,13039,13039, 1004, 19007, 1004, 1004, 1004,13810,19007,13810,13810,13810,15668, 19007,15668,15668,15668, 5945,19007, 5945, 5945, 5945,15671, 19007,15671,15671,15671,15683,19007,15683,15683,15683,15694, 19007,15694,15694,15694,15704,19007,15704,15704,15704,15713, 19007,15713,15713,15713,15721,19007,15721,15721,15721,15727, 19007,15727,15727,15727,15731,19007,15731,15731,15731,15738, 19007,15738,15738,15738,15749,19007,15749,15749,15749,15757, 19007,15757,15757,15757,15763,19007,15763,15763,15763,15767, 19007,15767,15767,15767,13815,19007,13815,13815,13815, 5946, 19007, 5946, 5946, 5946,11609,11609,11609,11609,11609, 119, 19007, 119, 119, 119,13174,19007,13174,13174,13174,15175, 15175,15175,15175,15175, 9579,19007, 9579, 9579, 9579, 2841, 2841, 2841, 2841, 2841,15792,19007,15792,15792,15792,15800, 19007,15800,15800,15800, 778,19007, 778, 778, 778,10187, 19007,10187,10187,10187, 206,19007, 206, 206, 206, 8851, 19007, 8851, 8851, 8851, 4823,19007, 4823, 4823, 4823,12499, 19007,12499,12499,12499, 8197,19007, 8197, 8197, 8197, 218, 19007, 218, 218, 218,10950,10950,10950,10950,10950, 6918, 6918, 6918, 6918, 6918, 2047,19007, 2047, 2047, 2047, 832, 19007, 832, 832, 832, 834,19007, 834, 834, 834,15836, 19007,15836,15836,15836, 6948,19007, 6948, 6948, 6948,10224, 19007,10224,10224,10224,15844,19007,15844,15844,15844, 6953, 19007, 6953, 6953, 6953,10983,10983,10983,10983,10983,10237, 10237,10237,10237,10237,10239,19007,10239,10239,10239, 2524, 2524, 2524, 2524, 2524,15256,19007,15256,15256,15256,11019, 11019,11019,11019,11019,11021,19007,11021,11021,11021, 3070, 3070, 3070, 3070, 3070, 8909,19007, 8909, 8909, 8909,14703, 19007,14703,14703,14703, 9579,19007, 9579, 9579, 9579,15308, 19007,15308,15308,15308,15381,19007,15381,15381,15381,15980, 19007,15980,15980,15980,15985,19007,15985,15985,15985,15990, 19007,15990,15990,15990,15997,19007,15997,15997,15997,15999, 19007,15999,15999,15999,16004,19007,16004,16004,16004,16007, 19007,16007,16007,16007,16010,19007,16010,16010,16010,16015, 19007,16015,16015,16015,16020,19007,16020,16020,16020,16024, 19007,16024,16024,16024,16027,19007,16027,16027,16027,16030, 19007,16030,16030,16030,16034,19007,16034,16034,16034,16037, 19007,16037,16037,16037, 119,19007, 119, 119, 119,16040, 19007,16040,16040,16040,16045,19007,16045,16045,16045,14835, 19007,14835,14835,14835,16052,19007,16052,16052,16052,16057, 19007,16057,16057,16057,15560,19007,15560,15560,15560,16111, 19007,16111,16111,16111,14446,14446,14446,14446,14446, 4526, 19007, 4526, 4526, 4526, 1004,19007, 1004, 1004, 1004,15668, 19007,15668,15668,15668, 5945,19007, 5945, 5945, 5945,15671, 19007,15671,15671,15671,16138,19007,16138,16138,16138,16150, 19007,16150,16150,16150,16160,19007,16160,16160,16160,16174, 19007,16174,16174,16174,13815,19007,13815,13815,13815,11609, 11609,11609,11609,11609,13174,19007,13174,13174,13174,15175, 15175,15175,15175,15175, 2841, 2841, 2841, 2841, 2841,15792, 19007,15792,15792,15792,16194,19007,16194,16194,16194, 778, 19007, 778, 778, 778,10187,19007,10187,10187,10187, 206, 19007, 206, 206, 206, 8851,19007, 8851, 8851, 8851, 4823, 19007, 4823, 4823, 4823,12499,19007,12499,12499,12499, 8197, 19007, 8197, 8197, 8197, 218,19007, 218, 218, 218,10950, 10950,10950,10950,10950, 6918, 6918, 6918, 6918, 6918, 2047, 19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834, 19007, 834, 834, 834,15836,19007,15836,15836,15836, 6948, 19007, 6948, 6948, 6948,10224,19007,10224,10224,10224,15844, 19007,15844,15844,15844, 6953,19007, 6953, 6953, 6953,10983, 10983,10983,10983,10983,10237,10237,10237,10237,10237,10239, 19007,10239,10239,10239,15256,19007,15256,15256,15256,11019, 11019,11019,11019,11019,11021,19007,11021,11021,11021, 3070, 3070, 3070, 3070, 3070, 8909,19007, 8909, 8909, 8909,14703, 19007,14703,14703,14703, 9579,19007, 9579, 9579, 9579,16340, 19007,16340,16340,16340,16345,19007,16345,16345,16345,16348, 19007,16348,16348,16348,16353,19007,16353,16353,16353,16357, 19007,16357,16357,16357,16361,19007,16361,16361,16361,16364, 19007,16364,16364,16364,16371,19007,16371,16371,16371,16376, 19007,16376,16376,16376,16381,19007,16381,16381,16381,16385, 19007,16385,16385,16385,16389,19007,16389,16389,16389,16391, 19007,16391,16391,16391,16396,19007,16396,16396,16396,16400, 19007,16400,16400,16400,16404,19007,16404,16404,16404, 119, 19007, 119, 119, 119,16406,19007,16406,16406,16406,16442, 19007,16442,16442,16442,14446,14446,14446,14446,14446, 4526, 19007, 4526, 4526, 4526,16457,16457,16457,16457,16457,16458, 16458,19007,16458,16458, 1004,19007, 1004, 1004, 1004,15668, 19007,15668,15668,15668,16468,19007,16468,16468,16468, 5945, 19007, 5945, 5945, 5945,15671,19007,15671,15671,15671,16483, 19007,16483,16483,16483,13815,19007,13815,13815,13815,11609, 11609,11609,11609,11609,13174,19007,13174,13174,13174,15175, 15175,15175,15175,15175,15792,19007,15792,15792,15792,16503, 19007,16503,16503,16503, 778,19007, 778, 778, 778,10187, 19007,10187,10187,10187, 206,19007, 206, 206, 206, 8851, 19007, 8851, 8851, 8851, 4823,19007, 4823, 4823, 4823,12499, 19007,12499,12499,12499, 8197,19007, 8197, 8197, 8197, 218, 19007, 218, 218, 218,10950,10950,10950,10950,10950, 6918, 6918, 6918, 6918, 6918, 2047,19007, 2047, 2047, 2047, 832, 19007, 832, 832, 832, 834,19007, 834, 834, 834,15836, 19007,15836,15836,15836,16534,19007,16534,16534,16534, 6948, 19007, 6948, 6948, 6948,10224,19007,10224,10224,10224,15844, 19007,15844,15844,15844, 6953,19007, 6953, 6953, 6953,10983, 10983,10983,10983,10983,10237,10237,10237,10237,10237,10239, 19007,10239,10239,10239,15256,19007,15256,15256,15256,16561, 16561,16561,16561,16561,11019,11019,11019,11019,11019,11021, 19007,11021,11021,11021, 8909,19007, 8909, 8909, 8909,14703, 19007,14703,14703,14703, 9579,19007, 9579, 9579, 9579,16636, 19007,16636,16636,16636,16345,19007,16345,16345,16345,16643, 19007,16643,16643,16643,16648,19007,16648,16648,16648,16653, 19007,16653,16653,16653,16658,19007,16658,16658,16658,16662, 19007,16662,16662,16662,16665,19007,16665,16665,16665,16668, 19007,16668,16668,16668,16671,19007,16671,16671,16671,16674, 19007,16674,16674,16674,16679,19007,16679,16679,16679,16684, 19007,16684,16684,16684,16689,19007,16689,16689,16689,16693, 19007,16693,16693,16693,16696,19007,16696,16696,16696,16699, 19007,16699,16699,16699,16705,19007,16705,16705,16705,16710, 19007,16710,16710,16710,16714,19007,16714,16714,16714,16717, 19007,16717,16717,16717,16720,19007,16720,16720,16720, 119, 19007, 119, 119, 119,16442,19007,16442,16442,16442, 4526, 19007, 4526, 4526, 4526,16457,16457,16457,16457,16457,16458, 16458,16458,16458,16458, 1004,19007, 1004, 1004, 1004,15668, 19007,15668,15668,15668,16747,19007,16747,16747,16747,15671, 19007,15671,15671,15671,16483,19007,16483,16483,16483, 7295, 19007, 7295, 7295, 7295, 5945,19007, 5945, 5945, 5945,11609, 11609,11609,11609,11609,13174,19007,13174,13174,13174,15175, 15175,15175,15175,15175,15792,19007,15792,15792,15792,16778, 19007,16778,16778,16778,16783,19007,16783,16783,16783, 778, 19007, 778, 778, 778,10187,19007,10187,10187,10187, 206, 19007, 206, 206, 206, 8851,19007, 8851, 8851, 8851, 4823, 19007, 4823, 4823, 4823,12499,19007,12499,12499,12499, 8197, 19007, 8197, 8197, 8197, 218,19007, 218, 218, 218,10950, 10950,10950,10950,10950, 6918, 6918, 6918, 6918, 6918, 2047, 19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834, 19007, 834, 834, 834,15836,19007,15836,15836,15836,16534, 19007,16534,16534,16534, 6948,19007, 6948, 6948, 6948,10224, 19007,10224,10224,10224,15844,19007,15844,15844,15844, 6953, 19007, 6953, 6953, 6953,10983,10983,10983,10983,10983,10237, 10237,10237,10237,10237,10239,19007,10239,10239,10239,15256, 19007,15256,15256,15256,16561,16561,16561,16561,16561,11019, 11019,11019,11019,11019,11021,19007,11021,11021,11021, 8909, 19007, 8909, 8909, 8909,14703,19007,14703,14703,14703, 9579, 19007, 9579, 9579, 9579,16636,19007,16636,16636,16636,16885, 19007,16885,16885,16885,16345,19007,16345,16345,16345,16643, 19007,16643,16643,16643,16888,19007,16888,16888,16888,16893, 19007,16893,16893,16893,16898,19007,16898,16898,16898,16903, 19007,16903,16903,16903,16907,19007,16907,16907,16907,16910, 19007,16910,16910,16910,16913,19007,16913,16913,16913,16917, 19007,16917,16917,16917,16920,19007,16920,16920,16920,16923, 19007,16923,16923,16923,16928,19007,16928,16928,16928,16720, 19007,16720,16720,16720, 119,19007, 119, 119, 119, 4526, 19007, 4526, 4526, 4526,16457,16457,16457,16457,16457, 1004, 19007, 1004, 1004, 1004,15668,19007,15668,15668,15668,16747, 19007,16747,16747,16747,15671,19007,15671,15671,15671,16948, 19007,16948,16948,16948,16483,19007,16483,16483,16483, 7942, 19007, 7942, 7942, 7942, 5945,19007, 5945, 5945, 5945,11609, 11609,11609,11609,11609,13174,19007,13174,13174,13174,15175, 15175,15175,15175,15175,15792,19007,15792,15792,15792,16778, 19007,16778,16778,16778,16966,19007,16966,16966,16966, 778, 19007, 778, 778, 778,10187,19007,10187,10187,10187, 206, 19007, 206, 206, 206, 8851,19007, 8851, 8851, 8851, 4823, 19007, 4823, 4823, 4823,12499,19007,12499,12499,12499, 8197, 19007, 8197, 8197, 8197, 218,19007, 218, 218, 218,10950, 10950,10950,10950,10950, 6918, 6918, 6918, 6918, 6918, 2047, 19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834, 19007, 834, 834, 834,15836,19007,15836,15836,15836,16534, 19007,16534,16534,16534, 6948,19007, 6948, 6948, 6948,10224, 19007,10224,10224,10224,15844,19007,15844,15844,15844, 6953, 19007, 6953, 6953, 6953,10983,10983,10983,10983,10983,10239, 19007,10239,10239,10239,10237,10237,10237,10237,10237,15256, 19007,15256,15256,15256,16561,16561,16561,16561,16561,11019, 11019,11019,11019,11019,11021,19007,11021,11021,11021, 8909, 19007, 8909, 8909, 8909,14703,19007,14703,14703,14703, 9579, 19007, 9579, 9579, 9579,17053,19007,17053,17053,17053,16345, 19007,16345,16345,16345,17056,19007,17056,17056,17056,17061, 19007,17061,17061,17061,17066,19007,17066,17066,17066,17071, 19007,17071,17071,17071,17076,19007,17076,17076,17076,17080, 19007,17080,17080,17080,17084,19007,17084,17084,17084,17086, 19007,17086,17086,17086,17091,19007,17091,17091,17091,17095, 19007,17095,17095,17095,17099,19007,17099,17099,17099, 4526, 19007, 4526, 4526, 4526,16457,16457,16457,16457,16457, 1004, 19007, 1004, 1004, 1004,15668,19007,15668,15668,15668,16747, 19007,16747,16747,16747,15671,19007,15671,15671,15671,17113, 19007,17113,17113,17113,16483,19007,16483,16483,16483, 5945, 19007, 5945, 5945, 5945,11609,11609,11609,11609,11609,13174, 19007,13174,13174,13174,15175,15175,15175,15175,15175,15792, 19007,15792,15792,15792,16778,19007,16778,16778,16778,17132, 19007,17132,17132,17132, 778,19007, 778, 778, 778,10187, 19007,10187,10187,10187, 206,19007, 206, 206, 206, 8851, 19007, 8851, 8851, 8851,12499,19007,12499,12499,12499, 8197, 19007, 8197, 8197, 8197, 218,19007, 218, 218, 218,10950, 10950,10950,10950,10950, 6918, 6918, 6918, 6918, 6918, 2047, 19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834, 19007, 834, 834, 834,15836,19007,15836,15836,15836,16534, 19007,16534,16534,16534, 6948,19007, 6948, 6948, 6948,10224, 19007,10224,10224,10224,15844,19007,15844,15844,15844, 6953, 19007, 6953, 6953, 6953,10239,19007,10239,10239,10239,10237, 10237,10237,10237,10237,15256,19007,15256,15256,15256,16561, 16561,16561,16561,16561,11021,19007,11021,11021,11021,11019, 11019,11019,11019,11019, 8909,19007, 8909, 8909, 8909,14703, 19007,14703,14703,14703, 9579,19007, 9579, 9579, 9579,17053, 19007,17053,17053,17053,17210,19007,17210,17210,17210,17215, 19007,17215,17215,17215,17220,19007,17220,17220,17220,17225, 19007,17225,17225,17225,17230,19007,17230,17230,17230,17235, 19007,17235,17235,17235,17239,19007,17239,17239,17239,17242, 19007,17242,17242,17242,17245,19007,17245,17245,17245,17251, 19007,17251,17251,17251,17256,19007,17256,17256,17256,17260, 19007,17260,17260,17260,17263,19007,17263,17263,17263,17266, 19007,17266,17266,17266, 119,19007, 119, 119, 119, 4526, 19007, 4526, 4526, 4526,16457,16457,16457,16457,16457, 1004, 19007, 1004, 1004, 1004,15668,19007,15668,15668,15668,16747, 19007,16747,16747,16747,17113,19007,17113,17113,17113,16483, 19007,16483,16483,16483, 5945,19007, 5945, 5945, 5945,11609, 11609,11609,11609,11609,13174,19007,13174,13174,13174,17285, 17285,17285,17285,17285,15175,15175,15175,15175,15175,15792, 19007,15792,15792,15792,16778,19007,16778,16778,16778,17297, 19007,17297,17297,17297, 778,19007, 778, 778, 778,10187, 19007,10187,10187,10187, 8851,19007, 8851, 8851, 8851,12499, 19007,12499,12499,12499, 8197,19007, 8197, 8197, 8197,10950, 10950,10950,10950,10950, 6918, 6918, 6918, 6918, 6918, 2047, 19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834, 19007, 834, 834, 834,15836,19007,15836,15836,15836,16534, 19007,16534,16534,16534, 6948,19007, 6948, 6948, 6948,10224, 19007,10224,10224,10224,15844,19007,15844,15844,15844, 6953, 19007, 6953, 6953, 6953,10239,19007,10239,10239,10239,10237, 10237,10237,10237,10237,15256,19007,15256,15256,15256,16561, 16561,16561,16561,16561,11021,19007,11021,11021,11021,11019, 11019,11019,11019,11019, 8909,19007, 8909, 8909, 8909,14703, 19007,14703,14703,14703, 9579,19007, 9579, 9579, 9579,17053, 19007,17053,17053,17053,17210,19007,17210,17210,17210,17369, 19007,17369,17369,17369,17374,19007,17374,17374,17374,17379, 19007,17379,17379,17379,17266,19007,17266,17266,17266, 4526, 19007, 4526, 4526, 4526,15668,19007,15668,15668,15668,16747, 19007,16747,16747,16747, 5945,19007, 5945, 5945, 5945,17113, 19007,17113,17113,17113,16483,19007,16483,16483,16483,11609, 11609,11609,11609,11609,13174,19007,13174,13174,13174,17285, 17285,17285,17285,17285,15175,15175,15175,15175,15175,15792, 19007,15792,15792,15792,16778,19007,16778,16778,16778,17410, 19007,17410,17410,17410, 778,19007, 778, 778, 778,10187, 19007,10187,10187,10187, 8851,19007, 8851, 8851, 8851,12499, 19007,12499,12499,12499, 8197,19007, 8197, 8197, 8197,10950, 10950,10950,10950,10950, 6918, 6918, 6918, 6918, 6918,17425, 19007,17425,17425,17425, 2047,19007, 2047, 2047, 2047, 832, 19007, 832, 832, 832, 834,19007, 834, 834, 834,15836, 19007,15836,15836,15836,16534,19007,16534,16534,16534, 6948, 19007, 6948, 6948, 6948,10224,19007,10224,10224,10224,15844, 19007,15844,15844,15844, 6953,19007, 6953, 6953, 6953,10239, 19007,10239,10239,10239,10237,10237,10237,10237,10237,15256, 19007,15256,15256,15256,16561,16561,16561,16561,16561,11021, 19007,11021,11021,11021,11019,11019,11019,11019,11019, 8909, 19007, 8909, 8909, 8909,14703,19007,14703,14703,14703, 9579, 19007, 9579, 9579, 9579,17053,19007,17053,17053,17053,17471, 19007,17471,17471,17471,17266,19007,17266,17266,17266, 4526, 19007, 4526, 4526, 4526,15668,19007,15668,15668,15668,16747, 19007,16747,16747,16747,17113,19007,17113,17113,17113,16483, 19007,16483,16483,16483,11609,11609,11609,11609,11609,13174, 19007,13174,13174,13174,17285,17285,17285,17285,17285,15175, 15175,15175,15175,15175,15792,19007,15792,15792,15792,16778, 19007,16778,16778,16778,17499,19007,17499,17499,17499, 778, 19007, 778, 778, 778,10187,19007,10187,10187,10187, 8851, 19007, 8851, 8851, 8851,12499,19007,12499,12499,12499, 8197, 19007, 8197, 8197, 8197,10950,10950,10950,10950,10950,17425, 19007,17425,17425,17425, 2047,19007, 2047, 2047, 2047, 832, 19007, 832, 832, 832, 834,19007, 834, 834, 834,15836, 19007,15836,15836,15836,16534,19007,16534,16534,16534, 6948, 19007, 6948, 6948, 6948,10224,19007,10224,10224,10224,15844, 19007,15844,15844,15844,10239,19007,10239,10239,10239,10237, 10237,10237,10237,10237,15256,19007,15256,15256,15256,16561, 16561,16561,16561,16561,11021,19007,11021,11021,11021,11019, 11019,11019,11019,11019, 8909,19007, 8909, 8909, 8909,14703, 19007,14703,14703,14703, 9579,19007, 9579, 9579, 9579,17556, 19007,17556,17556,17556,17266,19007,17266,17266,17266, 4526, 19007, 4526, 4526, 4526,17567,19007,17567,17567,17567,15668, 19007,15668,15668,15668,17113,19007,17113,17113,17113,16483, 19007,16483,16483,16483,11609,11609,11609,11609,11609,13174, 19007,13174,13174,13174,17285,17285,17285,17285,17285,15175, 15175,15175,15175,15175,15792,19007,15792,15792,15792,16778, 19007,16778,16778,16778,17584,19007,17584,17584,17584, 778, 19007, 778, 778, 778,10187,19007,10187,10187,10187, 8851, 19007, 8851, 8851, 8851,12499,19007,12499,12499,12499, 8197, 19007, 8197, 8197, 8197,10950,10950,10950,10950,10950,17425, 19007,17425,17425,17425, 2047,19007, 2047, 2047, 2047, 832, 19007, 832, 832, 832, 834,19007, 834, 834, 834,15836, 19007,15836,15836,15836,16534,19007,16534,16534,16534, 6948, 19007, 6948, 6948, 6948,10224,19007,10224,10224,10224,15844, 19007,15844,15844,15844,10239,19007,10239,10239,10239,10237, 10237,10237,10237,10237,15256,19007,15256,15256,15256,16561, 16561,16561,16561,16561,11021,19007,11021,11021,11021,11019, 11019,11019,11019,11019, 8909,19007, 8909, 8909, 8909,14703, 19007,14703,14703,14703, 9579,19007, 9579, 9579, 9579,17556, 19007,17556,17556,17556,17266,19007,17266,17266,17266,17643, 19007,17643,17643,17643,17567,19007,17567,17567,17567,15668, 19007,15668,15668,15668,17113,19007,17113,17113,17113,16483, 19007,16483,16483,16483,11609,11609,11609,11609,11609,13174, 19007,13174,13174,13174,17285,17285,17285,17285,17285,15175, 15175,15175,15175,15175,15792,19007,15792,15792,15792,16778, 19007,16778,16778,16778,17664,19007,17664,17664,17664,10187, 19007,10187,10187,10187, 8851,19007, 8851, 8851, 8851,12499, 19007,12499,12499,12499,10950,10950,10950,10950,10950,17425, 19007,17425,17425,17425, 2047,19007, 2047, 2047, 2047, 832, 19007, 832, 832, 832, 834,19007, 834, 834, 834,15836, 19007,15836,15836,15836,16534,19007,16534,16534,16534, 6948, 19007, 6948, 6948, 6948,10224,19007,10224,10224,10224,15844, 19007,15844,15844,15844,10239,19007,10239,10239,10239,10237, 10237,10237,10237,10237,15256,19007,15256,15256,15256,16561, 16561,16561,16561,16561,11021,19007,11021,11021,11021,11019, 11019,11019,11019,11019, 8909,19007, 8909, 8909, 8909,14703, 19007,14703,14703,14703, 9579,19007, 9579, 9579, 9579,17266, 19007,17266,17266,17266,17643,19007,17643,17643,17643,17567, 19007,17567,17567,17567,15668,19007,15668,15668,15668,17113, 19007,17113,17113,17113,16483,19007,16483,16483,16483,11609, 11609,11609,11609,11609,13174,19007,13174,13174,13174,17285, 17285,17285,17285,17285,15175,15175,15175,15175,15175,15792, 19007,15792,15792,15792,16778,19007,16778,16778,16778,17735, 19007,17735,17735,17735,10187,19007,10187,10187,10187,12499, 19007,12499,12499,12499,10950,10950,10950,10950,10950,17425, 19007,17425,17425,17425, 2047,19007, 2047, 2047, 2047, 832, 19007, 832, 832, 832, 834,19007, 834, 834, 834,15836, 19007,15836,15836,15836,16534,19007,16534,16534,16534, 6948, 19007, 6948, 6948, 6948,10224,19007,10224,10224,10224,15844, 19007,15844,15844,15844,10239,19007,10239,10239,10239,10237, 10237,10237,10237,10237,15256,19007,15256,15256,15256,16561, 16561,16561,16561,16561,11021,19007,11021,11021,11021,11019, 11019,11019,11019,11019,14703,19007,14703,14703,14703, 9579, 19007, 9579, 9579, 9579,17266,19007,17266,17266,17266,17643, 19007,17643,17643,17643,17567,19007,17567,17567,17567,15668, 19007,15668,15668,15668,17113,19007,17113,17113,17113,16483, 19007,16483,16483,16483,11609,11609,11609,11609,11609,13174, 19007,13174,13174,13174,17285,17285,17285,17285,17285,15175, 15175,15175,15175,15175,15792,19007,15792,15792,15792,16778, 19007,16778,16778,16778,17797,19007,17797,17797,17797,10187, 19007,10187,10187,10187,12499,19007,12499,12499,12499,10950, 10950,10950,10950,10950,17425,19007,17425,17425,17425, 2047, 19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834, 19007, 834, 834, 834,15836,19007,15836,15836,15836,16534, 19007,16534,16534,16534, 6948,19007, 6948, 6948, 6948,10224, 19007,10224,10224,10224,15844,19007,15844,15844,15844,10239, 19007,10239,10239,10239,10237,10237,10237,10237,10237,15256, 19007,15256,15256,15256,16561,16561,16561,16561,16561,11021, 19007,11021,11021,11021,11019,11019,11019,11019,11019,14703, 19007,14703,14703,14703,17266,19007,17266,17266,17266,17643, 19007,17643,17643,17643,17567,19007,17567,17567,17567,15668, 19007,15668,15668,15668,17113,19007,17113,17113,17113,16483, 19007,16483,16483,16483,11609,11609,11609,11609,11609,13174, 19007,13174,13174,13174,17285,17285,17285,17285,17285,15175, 15175,15175,15175,15175,15792,19007,15792,15792,15792,16778, 19007,16778,16778,16778,17852,19007,17852,17852,17852,12499, 19007,12499,12499,12499,10950,10950,10950,10950,10950,17425, 19007,17425,17425,17425, 2047,19007, 2047, 2047, 2047, 832, 19007, 832, 832, 832, 834,19007, 834, 834, 834,15836, 19007,15836,15836,15836,16534,19007,16534,16534,16534, 6948, 19007, 6948, 6948, 6948,10224,19007,10224,10224,10224,15844, 19007,15844,15844,15844,17874,19007,17874,17874,17874,10239, 19007,10239,10239,10239,15256,19007,15256,15256,15256,16561, 16561,16561,16561,16561,11021,19007,11021,11021,11021,11019, 11019,11019,11019,11019,14703,19007,14703,14703,14703,17266, 19007,17266,17266,17266,17643,19007,17643,17643,17643,15668, 19007,15668,15668,15668,17113,19007,17113,17113,17113,16483, 19007,16483,16483,16483,11609,11609,11609,11609,11609,13174, 19007,13174,13174,13174,17285,17285,17285,17285,17285,15175, 15175,15175,15175,15175,15792,19007,15792,15792,15792,16778, 19007,16778,16778,16778,17906,19007,17906,17906,17906,12499, 19007,12499,12499,12499,17425,19007,17425,17425,17425, 2047, 19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834, 19007, 834, 834, 834,15836,19007,15836,15836,15836,16534, 19007,16534,16534,16534, 6948,19007, 6948, 6948, 6948,10224, 19007,10224,10224,10224,15844,19007,15844,15844,15844,17874, 19007,17874,17874,17874,17929,19007,17929,17929,17929,15256, 19007,15256,15256,15256,17933,17933,17933,17933,17933,16561, 16561,16561,16561,16561,11021,19007,11021,11021,11021,14703, 19007,14703,14703,14703,17266,19007,17266,17266,17266,17643, 19007,17643,17643,17643,15668,19007,15668,15668,15668,17113, 19007,17113,17113,17113,16483,19007,16483,16483,16483,13174, 19007,13174,13174,13174,17285,17285,17285,17285,17285,15175, 15175,15175,15175,15175,15792,19007,15792,15792,15792,16778, 19007,16778,16778,16778,17966,19007,17966,17966,17966,17970, 19007,17970,17970,17970,12499,19007,12499,12499,12499,17425, 19007,17425,17425,17425, 2047,19007, 2047, 2047, 2047, 832, 19007, 832, 832, 832, 834,19007, 834, 834, 834,15836, 19007,15836,15836,15836,16534,19007,16534,16534,16534, 6948, 19007, 6948, 6948, 6948,10224,19007,10224,10224,10224,15844, 19007,15844,15844,15844,17874,19007,17874,17874,17874,17929, 19007,17929,17929,17929,15256,19007,15256,15256,15256,17933, 17933,17933,17933,17933,17935,19007,17935,17935,17935,16561, 16561,16561,16561,16561,14703,19007,14703,14703,14703,17266, 19007,17266,17266,17266,17643,19007,17643,17643,17643,15668, 19007,15668,15668,15668,17113,19007,17113,17113,17113,13174, 19007,13174,13174,13174,17285,17285,17285,17285,17285,15175, 15175,15175,15175,15175,15792,19007,15792,15792,15792,16778, 19007,16778,16778,16778,17966,19007,17966,17966,17966,18045, 19007,18045,18045,18045,17425,19007,17425,17425,17425, 2047, 19007, 2047, 2047, 2047, 832,19007, 832, 832, 832, 834, 19007, 834, 834, 834,18058,19007,18058,18058,18058,15836, 19007,15836,15836,15836,16534,19007,16534,16534,16534, 6948, 19007, 6948, 6948, 6948,10224,19007,10224,10224,10224,15844, 19007,15844,15844,15844,17874,19007,17874,17874,17874,17929, 19007,17929,17929,17929,15256,19007,15256,15256,15256,17933, 17933,17933,17933,17933,17935,19007,17935,17935,17935,16561, 16561,16561,16561,16561,14703,19007,14703,14703,14703,17266, 19007,17266,17266,17266,17643,19007,17643,17643,17643,15668, 19007,15668,15668,15668,17113,19007,17113,17113,17113,17285, 17285,17285,17285,17285,15175,15175,15175,15175,15175,15792, 19007,15792,15792,15792,16778,19007,16778,16778,16778,17966, 19007,17966,17966,17966,18123,19007,18123,18123,18123,17425, 19007,17425,17425,17425, 2047,19007, 2047, 2047, 2047, 832, 19007, 832, 832, 832, 834,19007, 834, 834, 834,18058, 19007,18058,18058,18058,15836,19007,15836,15836,15836,16534, 19007,16534,16534,16534, 6948,19007, 6948, 6948, 6948,10224, 19007,10224,10224,10224,15844,19007,15844,15844,15844,17874, 19007,17874,17874,17874,17929,19007,17929,17929,17929,15256, 19007,15256,15256,15256,17933,17933,17933,17933,17933,17935, 19007,17935,17935,17935,16561,16561,16561,16561,16561,14703, 19007,14703,14703,14703,17266,19007,17266,17266,17266,17643, 19007,17643,17643,17643,15668,19007,15668,15668,15668,17113, 19007,17113,17113,17113, 119,19007, 119, 119, 119,17285, 17285,17285,17285,17285,15175,15175,15175,15175,15175,15792, 19007,15792,15792,15792,16778,19007,16778,16778,16778,17966, 19007,17966,17966,17966,18197,19007,18197,18197,18197,17425, 19007,17425,17425,17425, 2047,19007, 2047, 2047, 2047, 832, 19007, 832, 832, 832, 834,19007, 834, 834, 834,18058, 19007,18058,18058,18058,15836,19007,15836,15836,15836,16534, 19007,16534,16534,16534, 6948,19007, 6948, 6948, 6948,10224, 19007,10224,10224,10224,15844,19007,15844,15844,15844,17874, 19007,17874,17874,17874,17929,19007,17929,17929,17929,15256, 19007,15256,15256,15256,17933,17933,17933,17933,17933,17935, 19007,17935,17935,17935,16561,16561,16561,16561,16561,14703, 19007,14703,14703,14703,17266,19007,17266,17266,17266,17643, 19007,17643,17643,17643,15668,19007,15668,15668,15668,17285, 17285,17285,17285,17285,15175,15175,15175,15175,15175,15792, 19007,15792,15792,15792,16778,19007,16778,16778,16778,17966, 19007,17966,17966,17966,18268,19007,18268,18268,18268,17425, 19007,17425,17425,17425, 2047,19007, 2047, 2047, 2047, 832, 19007, 832, 832, 832, 834,19007, 834, 834, 834,18058, 19007,18058,18058,18058,15836,19007,15836,15836,15836,16534, 19007,16534,16534,16534, 6948,19007, 6948, 6948, 6948,10224, 19007,10224,10224,10224,15844,19007,15844,15844,15844,17874, 19007,17874,17874,17874,17929,19007,17929,17929,17929,15256, 19007,15256,15256,15256,17933,17933,17933,17933,17933,17935, 19007,17935,17935,17935,16561,16561,16561,16561,16561,17266, 19007,17266,17266,17266,17643,19007,17643,17643,17643,15668, 19007,15668,15668,15668,17285,17285,17285,17285,17285,15792, 19007,15792,15792,15792,18328,19007,18328,18328,18328,16778, 19007,16778,16778,16778,17966,19007,17966,17966,17966,18333, 19007,18333,18333,18333,18339,19007,18339,18339,18339,17425, 19007,17425,17425,17425, 2047,19007, 2047, 2047, 2047,18344, 19007,18344,18344,18344,18348,19007,18348,18348,18348,18058, 19007,18058,18058,18058,15836,19007,15836,15836,15836,16534, 19007,16534,16534,16534, 6948,19007, 6948, 6948, 6948,10224, 19007,10224,10224,10224,15844,19007,15844,15844,15844,17874, 19007,17874,17874,17874,17929,19007,17929,17929,17929,17933, 17933,17933,17933,17933,17935,19007,17935,17935,17935,16561, 16561,16561,16561,16561,17266,19007,17266,17266,17266,17643, 19007,17643,17643,17643,17285,17285,17285,17285,17285,18328, 19007,18328,18328,18328,16778,19007,16778,16778,16778,17966, 19007,17966,17966,17966,18394,19007,18394,18394,18394,18339, 19007,18339,18339,18339,17425,19007,17425,17425,17425, 2047, 19007, 2047, 2047, 2047,18344,19007,18344,18344,18344,18348, 19007,18348,18348,18348,18058,19007,18058,18058,18058,16534, 19007,16534,16534,16534, 6948,19007, 6948, 6948, 6948,10224, 19007,10224,10224,10224,17874,19007,17874,17874,17874,17929, 19007,17929,17929,17929,18451,19007,18451,18451,18451,18494, 19007,18494,18494,18494,18499,19007,18499,18499,18499,18508, 19007,18508,18508,18508,18544,19007,18544,18544,18544,18586, 19007,18586,18586,18586,18624,19007,18624,18624,18624,18658, 19007,18658,18658,18658,18690,19007,18690,18690,18690,18721, 19007,18721,18721,18721,18747,19007,18747,18747,18747, 53, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007 } ; static yyconst flex_int16_t yy_chk[331880] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 7, 8, 9, 9, 10, 10, 11, 12, 55, 55, 55, 56, 56, 56, 57, 68, 68, 74, 7, 8, 68, 68, 73, 73, 11, 12, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 180, 74, 57, 5074, 55, 58, 58, 180, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 59, 59, 64, 59, 59, 59, 59, 59, 59, 5079, 59, 59, 64, 64, 64, 64, 64, 64, 64, 64, 64, 59, 59, 59, 59, 59, 59, 59, 247, 79, 75, 247, 64, 59, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 70, 79, 88, 88, 70, 70, 59, 59, 59, 59, 60, 60, 75, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 65, 65, 65, 65, 65, 65, 65, 65, 65, 81, 82, 67, 244, 85, 81, 85, 65, 65, 65, 65, 65, 65, 67, 69, 85, 108, 67, 69, 120, 244, 67, 67, 449, 120, 69, 80, 91, 82, 69, 69, 449, 80, 65, 65, 65, 65, 65, 65, 66, 109, 91, 104, 108, 80, 113, 66, 91, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 71, 97, 97, 97, 110, 116, 129, 311, 71, 109, 130, 86, 71, 86, 104, 134, 130, 113, 129, 110, 311, 134, 86, 71, 122, 122, 122, 71, 71, 116, 5080, 110, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 123, 84, 83, 84, 83, 86, 72, 72, 72, 72, 72, 72, 84, 83, 94, 94, 94, 98, 98, 98, 115, 441, 101, 101, 101, 102, 99, 99, 99, 123, 114, 102, 72, 72, 72, 72, 72, 72, 105, 441, 139, 105, 177, 1164, 177, 84, 94, 72, 83, 98, 115, 72, 72, 107, 101, 102, 107, 114, 99, 95, 95, 95, 200, 204, 200, 1164, 83, 87, 105, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 139, 94, 168, 94, 107, 143, 87, 87, 87, 87, 87, 87, 95, 99, 143, 99, 101, 168, 172, 204, 103, 103, 103, 103, 103, 103, 103, 103, 106, 95, 407, 106, 87, 87, 87, 87, 87, 87, 96, 96, 103, 117, 117, 117, 117, 407, 106, 5086, 172, 96, 96, 96, 96, 96, 96, 96, 96, 96, 106, 118, 118, 118, 118, 121, 121, 121, 190, 236, 343, 96, 214, 214, 214, 117, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 151, 184, 96, 100, 100, 408, 408, 118, 343, 151, 184, 121, 190, 236, 100, 100, 100, 100, 100, 100, 100, 100, 100, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 197, 100, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 131, 132, 131, 132, 197, 237, 231, 191, 193, 240, 237, 131, 132, 254, 240, 227, 191, 193, 231, 132, 205, 206, 254, 100, 124, 124, 651, 124, 124, 124, 124, 124, 124, 359, 124, 124, 141, 141, 141, 141, 141, 141, 141, 141, 141, 124, 124, 124, 124, 124, 124, 124, 206, 193, 227, 205, 150, 124, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 191, 206, 651, 259, 5087, 359, 124, 124, 124, 124, 125, 125, 259, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 133, 5096, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 215, 268, 262, 267, 262, 228, 133, 133, 133, 133, 133, 133, 152, 262, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 217, 216, 216, 216, 238, 268, 267, 215, 133, 133, 133, 133, 133, 133, 135, 135, 228, 135, 135, 135, 135, 135, 135, 135, 135, 135, 217, 230, 207, 207, 207, 217, 208, 216, 238, 135, 135, 135, 135, 135, 135, 135, 371, 409, 409, 371, 153, 135, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 208, 230, 207, 289, 769, 208, 135, 135, 135, 135, 136, 136, 289, 136, 136, 136, 136, 136, 136, 207, 136, 136, 208, 296, 232, 243, 395, 232, 296, 248, 295, 136, 136, 136, 136, 136, 136, 136, 232, 295, 395, 769, 154, 136, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 245, 243, 245, 245, 245, 248, 136, 136, 136, 136, 137, 137, 245, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 140, 140, 313, 140, 140, 140, 140, 140, 140, 234, 140, 140, 2515, 403, 234, 270, 276, 388, 403, 298, 234, 140, 140, 140, 140, 140, 140, 140, 298, 388, 313, 2515, 155, 140, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 246, 270, 246, 246, 246, 276, 140, 140, 140, 140, 142, 142, 246, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 144, 307, 410, 410, 226, 226, 226, 364, 360, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 218, 364, 378, 307, 265, 364, 144, 144, 144, 144, 144, 144, 209, 265, 219, 219, 219, 226, 156, 156, 156, 156, 156, 156, 156, 156, 156, 360, 265, 307, 378, 218, 144, 144, 144, 144, 144, 144, 145, 156, 412, 412, 361, 209, 362, 361, 219, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 157, 226, 361, 209, 362, 393, 383, 378, 218, 157, 157, 157, 157, 157, 157, 157, 157, 157, 315, 346, 368, 393, 209, 219, 837, 362, 837, 315, 346, 368, 157, 383, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 398, 385, 399, 398, 256, 346, 147, 147, 147, 147, 147, 147, 366, 256, 399, 400, 413, 413, 400, 221, 256, 220, 252, 252, 252, 252, 252, 252, 252, 252, 252, 385, 147, 147, 147, 147, 147, 147, 148, 148, 366, 148, 148, 148, 148, 148, 148, 220, 148, 148, 221, 222, 220, 372, 387, 440, 372, 366, 440, 148, 148, 148, 148, 148, 148, 148, 601, 374, 384, 601, 258, 148, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 222, 387, 221, 221, 220, 372, 148, 148, 148, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 374, 384, 414, 414, 374, 380, 149, 149, 149, 149, 149, 149, 229, 404, 380, 222, 222, 989, 397, 452, 229, 229, 229, 229, 229, 229, 229, 229, 229, 442, 300, 443, 149, 149, 149, 149, 149, 149, 158, 300, 389, 229, 397, 404, 442, 389, 300, 158, 158, 158, 158, 158, 158, 158, 158, 158, 406, 389, 585, 452, 443, 317, 434, 158, 158, 158, 158, 158, 158, 260, 317, 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, 406, 317, 434, 585, 542, 406, 989, 446, 158, 158, 158, 158, 158, 158, 159, 159, 159, 159, 159, 159, 159, 159, 159, 416, 446, 373, 470, 317, 434, 416, 159, 159, 159, 159, 159, 159, 233, 284, 284, 284, 284, 284, 284, 284, 284, 284, 233, 233, 233, 233, 233, 233, 233, 233, 391, 373, 159, 159, 159, 159, 159, 159, 210, 391, 470, 504, 233, 542, 851, 376, 851, 504, 210, 210, 210, 210, 210, 210, 210, 210, 210, 261, 376, 261, 261, 261, 261, 261, 261, 373, 595, 595, 261, 210, 285, 285, 285, 285, 285, 285, 285, 285, 285, 376, 392, 396, 411, 425, 428, 436, 210, 211, 211, 392, 396, 411, 425, 428, 436, 5097, 411, 211, 211, 211, 211, 211, 211, 211, 211, 211, 286, 286, 286, 286, 286, 286, 286, 286, 286, 468, 468, 468, 211, 305, 305, 305, 305, 305, 305, 305, 305, 305, 390, 433, 415, 433, 431, 390, 370, 211, 212, 212, 510, 415, 433, 431, 554, 370, 415, 390, 212, 212, 212, 212, 212, 212, 212, 212, 212, 370, 431, 537, 855, 510, 855, 462, 212, 212, 212, 212, 212, 212, 306, 462, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 568, 370, 554, 5107, 212, 510, 568, 537, 212, 212, 212, 212, 212, 212, 223, 421, 421, 421, 421, 421, 421, 421, 421, 421, 223, 223, 223, 223, 223, 223, 223, 223, 223, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 482, 591, 223, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 310, 482, 553, 598, 650, 927, 591, 927, 598, 310, 310, 310, 310, 310, 310, 310, 310, 310, 478, 484, 405, 495, 382, 223, 224, 224, 405, 478, 484, 495, 310, 382, 553, 503, 224, 224, 224, 224, 224, 224, 224, 224, 224, 382, 487, 489, 503, 312, 584, 505, 405, 650, 564, 487, 489, 224, 312, 312, 312, 312, 312, 312, 312, 312, 312, 316, 369, 381, 556, 382, 492, 5108, 827, 564, 316, 369, 381, 312, 584, 492, 505, 316, 369, 381, 405, 556, 316, 369, 381, 224, 225, 225, 555, 556, 492, 570, 593, 505, 555, 564, 225, 225, 225, 225, 225, 225, 225, 225, 225, 555, 557, 827, 316, 369, 381, 507, 225, 225, 225, 225, 225, 225, 386, 557, 507, 723, 593, 557, 570, 570, 386, 386, 386, 386, 386, 386, 386, 386, 386, 561, 576, 588, 225, 225, 225, 225, 225, 225, 561, 576, 5118, 386, 597, 588, 723, 225, 249, 249, 597, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 250, 250, 596, 250, 250, 250, 250, 250, 250, 571, 250, 250, 422, 422, 422, 422, 422, 422, 422, 422, 422, 250, 250, 250, 250, 250, 250, 250, 250, 583, 836, 594, 596, 250, 423, 423, 423, 423, 423, 423, 423, 423, 423, 571, 594, 1262, 836, 426, 586, 571, 250, 250, 250, 250, 251, 251, 426, 251, 251, 251, 251, 251, 251, 426, 251, 251, 558, 583, 569, 603, 605, 764, 558, 430, 569, 251, 251, 251, 251, 251, 251, 251, 430, 558, 586, 764, 5119, 251, 608, 430, 469, 469, 469, 469, 469, 469, 469, 469, 469, 603, 605, 608, 569, 605, 251, 251, 251, 251, 253, 253, 1262, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 617, 849, 849, 437, 438, 479, 255, 255, 255, 255, 255, 255, 437, 438, 479, 587, 610, 599, 587, 437, 573, 479, 559, 599, 437, 438, 573, 587, 610, 5136, 617, 486, 255, 255, 255, 255, 255, 255, 257, 257, 486, 257, 257, 257, 257, 257, 257, 486, 257, 257, 437, 438, 990, 559, 573, 656, 990, 490, 491, 257, 257, 257, 257, 257, 257, 257, 490, 491, 501, 572, 559, 257, 656, 490, 615, 606, 511, 501, 490, 491, 606, 607, 572, 649, 501, 511, 615, 607, 257, 257, 257, 263, 263, 263, 263, 263, 263, 263, 263, 263, 511, 649, 1024, 572, 490, 491, 263, 263, 263, 263, 263, 263, 263, 497, 497, 497, 497, 497, 497, 497, 497, 497, 498, 498, 498, 498, 498, 498, 498, 498, 498, 1024, 509, 263, 263, 263, 263, 263, 263, 266, 266, 509, 266, 266, 266, 266, 266, 266, 509, 266, 266, 499, 499, 499, 499, 499, 499, 499, 499, 499, 266, 266, 266, 266, 266, 266, 266, 266, 728, 720, 500, 611, 266, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 609, 611, 728, 565, 720, 609, 266, 266, 266, 266, 269, 269, 565, 269, 269, 269, 269, 269, 269, 269, 269, 269, 612, 5138, 614, 613, 780, 565, 612, 614, 580, 269, 269, 269, 269, 269, 269, 269, 613, 580, 623, 623, 623, 269, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 580, 579, 780, 512, 785, 645, 269, 269, 269, 269, 271, 271, 512, 271, 271, 271, 271, 271, 271, 512, 271, 271, 579, 660, 512, 785, 645, 574, 616, 563, 513, 271, 271, 271, 271, 271, 271, 271, 563, 513, 578, 616, 602, 271, 630, 563, 604, 654, 579, 578, 512, 513, 645, 630, 1933, 654, 578, 663, 574, 660, 271, 271, 271, 272, 272, 663, 272, 272, 272, 272, 272, 272, 602, 272, 272, 574, 604, 513, 786, 721, 721, 697, 676, 1933, 272, 272, 272, 272, 272, 272, 272, 272, 574, 676, 697, 721, 272, 624, 624, 624, 624, 624, 624, 624, 624, 624, 602, 838, 786, 633, 838, 604, 5139, 272, 272, 272, 273, 273, 633, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 275, 275, 683, 275, 275, 275, 275, 275, 275, 567, 275, 275, 853, 853, 828, 987, 987, 777, 567, 724, 635, 275, 275, 275, 275, 275, 275, 275, 519, 635, 567, 724, 783, 275, 992, 716, 275, 519, 519, 519, 519, 519, 519, 519, 519, 519, 716, 683, 777, 828, 275, 275, 275, 275, 277, 277, 567, 277, 277, 277, 277, 277, 277, 277, 277, 277, 913, 913, 913, 992, 783, 1011, 773, 632, 640, 277, 277, 277, 277, 277, 277, 277, 632, 640, 642, 773, 522, 277, 773, 632, 640, 725, 960, 642, 519, 522, 522, 522, 522, 522, 522, 522, 522, 522, 277, 277, 277, 277, 278, 278, 839, 278, 278, 278, 278, 278, 278, 278, 278, 278, 1011, 1081, 725, 789, 839, 960, 805, 566, 581, 278, 278, 278, 278, 278, 278, 278, 566, 581, 644, 725, 789, 278, 692, 566, 581, 666, 1081, 644, 566, 581, 522, 692, 789, 666, 644, 582, 805, 706, 278, 278, 278, 278, 279, 279, 582, 279, 279, 279, 279, 279, 279, 279, 279, 279, 566, 581, 582, 1062, 706, 965, 1027, 638, 646, 279, 279, 279, 279, 279, 279, 279, 638, 646, 670, 678, 693, 279, 965, 1027, 699, 702, 670, 678, 582, 693, 706, 638, 646, 699, 702, 708, 693, 1062, 279, 279, 279, 279, 280, 280, 708, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 281, 281, 840, 281, 281, 281, 281, 281, 281, 281, 281, 281, 680, 680, 680, 680, 680, 680, 680, 680, 680, 281, 281, 281, 281, 281, 281, 281, 281, 730, 524, 793, 840, 281, 1454, 1002, 999, 791, 730, 524, 524, 524, 524, 524, 524, 524, 524, 524, 793, 711, 281, 281, 281, 281, 282, 282, 787, 282, 282, 282, 282, 282, 282, 282, 282, 282, 524, 793, 791, 1454, 711, 1002, 842, 636, 637, 282, 282, 282, 282, 282, 282, 282, 636, 637, 700, 791, 787, 282, 733, 636, 795, 999, 844, 700, 636, 637, 711, 733, 844, 795, 700, 647, 842, 787, 282, 282, 282, 282, 283, 283, 647, 283, 283, 283, 283, 283, 283, 647, 283, 283, 636, 637, 647, 788, 1189, 746, 727, 694, 648, 283, 283, 283, 283, 283, 283, 283, 694, 648, 704, 1189, 788, 283, 5146, 746, 788, 848, 775, 704, 647, 648, 746, 694, 727, 775, 704, 705, 848, 727, 283, 283, 283, 283, 287, 287, 705, 287, 287, 287, 287, 287, 287, 287, 287, 287, 727, 648, 995, 813, 846, 705, 850, 712, 736, 287, 287, 287, 287, 287, 287, 287, 712, 736, 775, 746, 813, 287, 655, 655, 655, 655, 655, 655, 655, 655, 655, 712, 736, 854, 846, 5147, 850, 813, 287, 287, 287, 287, 790, 655, 681, 681, 681, 681, 681, 681, 681, 681, 681, 1023, 790, 1250, 995, 1250, 1023, 790, 287, 288, 288, 854, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 290, 290, 5156, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 291, 857, 5346, 1019, 1012, 1226, 1226, 857, 895, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 682, 682, 682, 682, 682, 682, 682, 682, 682, 710, 719, 731, 719, 719, 719, 719, 719, 719, 710, 895, 731, 798, 816, 1012, 1017, 710, 1019, 731, 719, 4214, 798, 816, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 832, 1017, 1248, 713, 714, 734, 293, 293, 293, 293, 293, 293, 713, 714, 734, 810, 834, 4214, 832, 713, 819, 734, 826, 902, 713, 714, 734, 810, 834, 819, 832, 826, 293, 293, 293, 293, 293, 293, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 792, 810, 713, 714, 734, 902, 294, 294, 294, 294, 294, 294, 717, 841, 717, 717, 717, 717, 717, 717, 717, 717, 717, 806, 1248, 841, 792, 988, 985, 5351, 717, 792, 294, 294, 294, 294, 294, 294, 297, 297, 297, 297, 297, 297, 297, 297, 297, 297, 792, 1116, 1116, 1116, 801, 806, 297, 297, 297, 297, 297, 297, 718, 801, 718, 718, 718, 718, 718, 718, 718, 718, 718, 807, 1082, 1280, 1016, 809, 801, 852, 718, 829, 297, 297, 297, 297, 297, 297, 299, 806, 829, 1031, 852, 988, 807, 856, 985, 299, 299, 299, 299, 299, 299, 299, 299, 299, 809, 807, 856, 1016, 749, 809, 1082, 299, 299, 299, 299, 299, 299, 722, 722, 722, 722, 722, 722, 722, 722, 722, 749, 1030, 808, 903, 961, 1004, 1280, 749, 1031, 1030, 735, 299, 299, 299, 299, 299, 299, 302, 302, 735, 302, 302, 302, 302, 302, 302, 302, 302, 302, 847, 5361, 735, 808, 903, 961, 1004, 737, 738, 302, 302, 302, 302, 302, 302, 302, 737, 738, 749, 830, 835, 302, 928, 737, 738, 830, 811, 835, 735, 738, 847, 830, 835, 872, 928, 739, 847, 808, 302, 302, 302, 302, 304, 304, 739, 304, 304, 304, 304, 304, 304, 304, 304, 304, 872, 738, 739, 811, 812, 1274, 1274, 929, 796, 304, 304, 304, 304, 304, 304, 304, 304, 796, 802, 929, 811, 304, 865, 868, 796, 1590, 872, 802, 739, 1590, 812, 865, 868, 877, 802, 812, 991, 811, 304, 304, 304, 304, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 812, 1263, 877, 799, 800, 803, 314, 314, 314, 314, 314, 314, 799, 800, 803, 1033, 1263, 812, 874, 799, 883, 803, 886, 1006, 799, 800, 803, 874, 877, 883, 1000, 886, 314, 314, 314, 314, 314, 314, 318, 318, 318, 318, 318, 318, 318, 318, 318, 1033, 991, 845, 799, 800, 803, 1006, 318, 318, 318, 318, 318, 318, 743, 776, 776, 776, 776, 776, 776, 776, 776, 743, 743, 743, 743, 743, 743, 743, 743, 743, 1061, 845, 318, 318, 318, 318, 318, 318, 363, 751, 1364, 1364, 743, 814, 931, 845, 1000, 363, 363, 363, 363, 363, 363, 363, 363, 363, 931, 751, 804, 931, 1061, 817, 1453, 833, 751, 845, 820, 804, 363, 776, 817, 821, 776, 964, 814, 820, 996, 817, 751, 804, 821, 833, 820, 1453, 1056, 363, 365, 820, 833, 996, 1056, 814, 821, 833, 1061, 365, 365, 365, 365, 365, 365, 365, 365, 365, 964, 804, 822, 964, 814, 814, 823, 824, 831, 820, 1170, 822, 365, 831, 821, 823, 824, 964, 866, 831, 966, 1091, 823, 824, 922, 831, 822, 866, 824, 365, 367, 1095, 5365, 922, 866, 1170, 997, 1095, 966, 367, 367, 367, 367, 367, 367, 367, 367, 367, 367, 997, 966, 1091, 870, 876, 824, 367, 367, 367, 367, 367, 367, 870, 876, 884, 925, 871, 878, 825, 870, 876, 1093, 889, 884, 925, 871, 878, 825, 367, 1093, 884, 889, 367, 367, 367, 367, 367, 367, 375, 825, 871, 878, 1225, 1379, 1379, 974, 889, 375, 375, 375, 375, 375, 375, 375, 375, 375, 861, 861, 861, 861, 861, 861, 861, 861, 861, 825, 974, 1225, 375, 862, 862, 862, 862, 862, 862, 862, 862, 862, 863, 863, 863, 863, 863, 863, 863, 863, 863, 880, 879, 887, 888, 890, 974, 1252, 930, 1252, 880, 879, 887, 888, 890, 930, 375, 377, 879, 887, 930, 890, 880, 879, 887, 888, 377, 377, 377, 377, 377, 377, 377, 377, 377, 5368, 891, 892, 958, 958, 958, 958, 958, 958, 924, 891, 892, 377, 880, 879, 887, 888, 891, 924, 1032, 1050, 1260, 891, 892, 1260, 924, 1009, 1094, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 1009, 1094, 1525, 1050, 926, 933, 936, 938, 377, 379, 891, 892, 897, 926, 933, 936, 938, 1032, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 926, 1050, 1525, 941, 944, 940, 379, 379, 379, 379, 379, 379, 941, 944, 940, 1060, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 940, 941, 1395, 1395, 947, 935, 379, 379, 379, 379, 379, 379, 898, 947, 935, 971, 1047, 1259, 1071, 379, 394, 935, 1060, 1060, 971, 1047, 940, 1071, 1450, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 914, 914, 914, 914, 914, 914, 914, 914, 914, 1259, 5377, 394, 417, 417, 1450, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 419, 419, 1092, 419, 419, 419, 419, 419, 419, 5382, 419, 419, 959, 959, 959, 959, 959, 959, 959, 959, 959, 419, 419, 419, 419, 419, 419, 419, 910, 1398, 1398, 1036, 1092, 419, 1118, 910, 419, 910, 910, 910, 910, 910, 910, 910, 910, 910, 1118, 942, 1036, 1037, 419, 419, 419, 419, 420, 420, 942, 420, 420, 420, 420, 420, 420, 942, 420, 420, 1037, 1035, 1064, 1101, 967, 1104, 1036, 1035, 950, 420, 420, 420, 420, 420, 420, 420, 1037, 950, 1035, 1064, 1161, 420, 967, 899, 899, 899, 899, 899, 899, 899, 899, 899, 950, 1101, 967, 1104, 1064, 1161, 420, 420, 420, 420, 424, 424, 899, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 968, 1038, 1074, 939, 945, 948, 427, 427, 427, 427, 427, 427, 939, 945, 948, 1106, 1096, 1108, 968, 939, 945, 948, 1096, 1074, 939, 968, 948, 1347, 1106, 1058, 968, 1038, 427, 427, 427, 427, 427, 427, 429, 429, 429, 429, 429, 429, 429, 429, 429, 1108, 1038, 1074, 939, 949, 948, 429, 429, 429, 429, 429, 429, 429, 949, 951, 973, 1058, 1119, 1347, 1111, 1057, 1097, 1058, 951, 973, 949, 1057, 1097, 1111, 1119, 951, 973, 952, 429, 429, 429, 429, 429, 429, 432, 432, 952, 432, 432, 432, 432, 432, 432, 952, 432, 432, 949, 969, 952, 1057, 1282, 978, 1001, 979, 953, 432, 432, 432, 432, 432, 432, 432, 432, 953, 1105, 969, 1109, 432, 1190, 978, 1001, 979, 1105, 975, 952, 953, 978, 969, 1599, 1109, 969, 978, 975, 979, 432, 432, 432, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 975, 1190, 1283, 976, 953, 977, 435, 435, 435, 435, 435, 435, 976, 1018, 977, 1188, 1123, 1282, 984, 976, 1599, 1001, 1188, 1001, 976, 1123, 977, 984, 984, 984, 1243, 1018, 435, 435, 435, 435, 435, 435, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 984, 998, 976, 1090, 977, 1051, 439, 439, 439, 439, 439, 439, 1243, 1283, 1051, 1090, 3626, 439, 1090, 998, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1051, 1018, 1018, 439, 439, 439, 439, 439, 439, 444, 444, 998, 444, 444, 444, 444, 444, 444, 3626, 444, 444, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 444, 444, 444, 444, 444, 444, 444, 1120, 998, 1126, 1277, 983, 444, 1040, 1120, 1277, 1253, 1014, 1126, 1120, 983, 983, 983, 983, 983, 983, 983, 983, 983, 444, 444, 444, 445, 445, 1039, 445, 445, 445, 445, 445, 445, 983, 445, 445, 1040, 1041, 1087, 1040, 1089, 1253, 1042, 1039, 1022, 445, 445, 445, 445, 445, 445, 445, 445, 1040, 1041, 1049, 1087, 445, 1089, 1063, 1042, 1043, 1039, 1292, 1049, 2103, 1292, 1084, 1087, 2103, 1089, 1049, 1042, 1041, 445, 445, 445, 447, 447, 1043, 447, 447, 447, 447, 447, 447, 1273, 447, 447, 1042, 1063, 1043, 1256, 1063, 1273, 1044, 1052, 1084, 447, 447, 447, 447, 447, 447, 447, 1052, 1073, 1063, 1043, 1084, 447, 1121, 1052, 1044, 1045, 1073, 1361, 1052, 1102, 1361, 1044, 1287, 1073, 1121, 1063, 1044, 1121, 447, 447, 447, 448, 448, 1045, 448, 448, 448, 448, 448, 448, 1287, 448, 448, 1044, 1052, 1045, 1297, 1088, 1045, 1102, 1256, 1075, 448, 448, 448, 448, 448, 448, 448, 448, 1075, 1102, 1045, 1297, 448, 1088, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1075, 1281, 1088, 1641, 1641, 1088, 448, 448, 448, 450, 450, 1281, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 451, 451, 1055, 451, 451, 451, 451, 451, 451, 1053, 451, 451, 5386, 1374, 1169, 1298, 1054, 1085, 1053, 1374, 1055, 451, 451, 451, 451, 451, 451, 451, 1125, 1085, 1053, 1128, 1055, 451, 1054, 1065, 1065, 1125, 1134, 451, 1128, 1054, 1169, 1085, 1125, 1298, 1054, 1134, 1169, 1055, 451, 451, 451, 451, 453, 453, 1053, 453, 453, 453, 453, 453, 453, 1054, 453, 453, 1065, 1265, 1168, 1685, 1685, 1257, 1059, 1066, 1168, 453, 453, 453, 453, 453, 453, 453, 1145, 1065, 1137, 1168, 1150, 453, 1145, 1257, 1059, 1066, 1131, 1137, 1145, 1150, 1257, 1265, 1153, 1199, 1065, 1131, 1059, 1066, 453, 453, 453, 454, 454, 1067, 454, 454, 454, 454, 454, 454, 1131, 454, 454, 1153, 1199, 1593, 1348, 1265, 1068, 1086, 1103, 1067, 454, 454, 454, 454, 454, 454, 454, 454, 1059, 1066, 1593, 1067, 454, 1146, 1068, 1086, 1069, 1153, 1199, 1146, 5389, 1068, 1461, 1204, 1348, 1146, 1068, 1086, 1103, 454, 454, 454, 455, 455, 1069, 455, 455, 455, 455, 455, 455, 1086, 455, 455, 1204, 1067, 1069, 1267, 1267, 1069, 1216, 1078, 1076, 455, 455, 455, 455, 455, 455, 455, 1068, 1076, 1103, 1132, 1461, 455, 1192, 1103, 1076, 1078, 1204, 1216, 1132, 1076, 1363, 1192, 1078, 1267, 1135, 1132, 1069, 1078, 455, 455, 455, 456, 456, 1135, 456, 456, 456, 456, 456, 456, 1135, 456, 456, 1216, 1302, 1076, 1378, 1555, 1079, 1378, 1363, 1077, 456, 456, 456, 456, 456, 456, 456, 456, 1077, 1078, 1140, 1147, 456, 4623, 1079, 1157, 1195, 1147, 1147, 1140, 1077, 1157, 1157, 1147, 1302, 1195, 1079, 1157, 1597, 456, 456, 456, 457, 457, 1140, 457, 457, 457, 457, 457, 457, 1130, 457, 457, 4623, 1597, 1077, 1366, 1555, 1290, 1130, 1208, 1129, 457, 457, 457, 457, 457, 457, 457, 1079, 1129, 1130, 1141, 1158, 457, 1201, 1290, 1129, 1208, 1158, 1213, 1141, 1129, 1290, 1201, 1158, 1366, 1362, 1141, 1213, 1208, 457, 457, 457, 457, 458, 458, 1130, 458, 458, 458, 458, 458, 458, 1139, 458, 458, 1459, 1129, 1209, 1362, 1574, 1210, 1139, 1574, 1138, 458, 458, 458, 458, 458, 458, 458, 458, 1138, 1139, 1148, 1209, 458, 1459, 1210, 1138, 1148, 4215, 1229, 1232, 1138, 1210, 1148, 1209, 1368, 1148, 1210, 1229, 1232, 458, 458, 458, 458, 459, 459, 1139, 459, 459, 459, 459, 459, 459, 1143, 459, 459, 1266, 1138, 1368, 1727, 1211, 1727, 1143, 1152, 1154, 459, 459, 459, 459, 459, 459, 459, 1152, 1154, 1143, 1193, 1197, 459, 1211, 1152, 1291, 1266, 1304, 4215, 1193, 1197, 1266, 1304, 1154, 1291, 1211, 1193, 1197, 1211, 459, 459, 459, 459, 460, 460, 1143, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 460, 463, 463, 2316, 463, 463, 463, 463, 463, 463, 1295, 463, 463, 1220, 1221, 1258, 1617, 2316, 1295, 1617, 1142, 1155, 463, 463, 463, 463, 463, 463, 463, 1142, 1155, 1220, 1221, 1258, 463, 1346, 1142, 1155, 1220, 1311, 1346, 1142, 1155, 1220, 1221, 1350, 1455, 1198, 1311, 1301, 1350, 463, 463, 463, 464, 464, 1198, 464, 464, 464, 464, 464, 464, 1156, 464, 464, 1258, 1142, 1155, 1455, 4892, 1198, 1156, 1308, 1308, 464, 464, 464, 464, 464, 464, 464, 464, 1163, 1156, 1203, 1163, 464, 1163, 1205, 1301, 1308, 1163, 1215, 1203, 1163, 1163, 1163, 1205, 1230, 1163, 1203, 1215, 1217, 464, 464, 464, 465, 1230, 1215, 1156, 1819, 1217, 1205, 465, 1230, 465, 465, 465, 465, 465, 465, 465, 465, 465, 1469, 4892, 1217, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1469, 1819, 465, 466, 466, 1469, 466, 466, 466, 466, 466, 466, 1165, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 1245, 1245, 1245, 1245, 1245, 466, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1475, 1475, 1475, 1687, 1687, 1245, 466, 466, 466, 466, 471, 471, 1166, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 473, 1468, 1468, 1330, 1330, 1587, 2056, 1468, 5514, 473, 473, 473, 473, 473, 473, 473, 473, 473, 473, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1330, 2056, 1587, 1167, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 473, 473, 473, 473, 473, 473, 473, 473, 473, 473, 473, 473, 473, 473, 473, 473, 473, 473, 473, 473, 473, 473, 473, 473, 473, 475, 475, 475, 475, 475, 475, 475, 475, 475, 475, 1553, 2066, 2066, 1206, 1207, 1218, 475, 475, 475, 475, 475, 475, 1206, 1207, 1218, 1373, 1351, 1668, 1314, 1206, 1668, 1218, 1351, 1373, 1206, 1207, 1218, 1314, 1351, 1227, 1222, 1255, 475, 475, 475, 475, 475, 475, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 1222, 1255, 1206, 1207, 1218, 1219, 476, 476, 476, 476, 476, 476, 1227, 1305, 1219, 1236, 1322, 1553, 1227, 1255, 1375, 1222, 1305, 1270, 1236, 1322, 1219, 1411, 1825, 1227, 1305, 1236, 476, 476, 476, 476, 476, 476, 477, 477, 477, 477, 477, 477, 477, 477, 477, 477, 1411, 1375, 1375, 1416, 1219, 1270, 477, 477, 477, 477, 477, 477, 1224, 1224, 1224, 1224, 1224, 1224, 1224, 1224, 1224, 1334, 1270, 1483, 1416, 5516, 1411, 1825, 1563, 1669, 1334, 1270, 477, 477, 477, 477, 477, 477, 483, 483, 483, 483, 483, 483, 483, 483, 483, 483, 1285, 1483, 1416, 1233, 1234, 1235, 483, 483, 483, 483, 483, 483, 1233, 1234, 1235, 1420, 1421, 1337, 1285, 1233, 1563, 1420, 1421, 1669, 1233, 1234, 1337, 1420, 1421, 1235, 1285, 1289, 483, 483, 483, 483, 483, 483, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 1306, 1289, 1233, 1234, 1352, 1317, 485, 485, 485, 485, 485, 485, 1818, 1289, 1317, 1564, 1352, 1306, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1359, 1286, 1317, 1352, 1359, 485, 485, 485, 485, 485, 485, 488, 1244, 1306, 1564, 1376, 1359, 1818, 1484, 1286, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 1484, 1286, 1355, 1237, 1238, 1307, 488, 488, 488, 488, 488, 488, 1237, 1238, 1355, 1376, 5517, 1365, 1367, 1237, 1323, 1309, 1307, 1355, 1237, 1238, 1365, 1367, 1355, 1323, 1307, 1826, 488, 488, 488, 488, 488, 488, 496, 496, 1286, 496, 496, 496, 496, 496, 496, 1329, 496, 496, 1237, 1238, 1309, 1456, 1323, 1325, 1376, 1246, 1309, 496, 496, 496, 496, 496, 496, 496, 1246, 1246, 1246, 1309, 1312, 496, 1329, 1325, 1404, 1407, 1826, 1671, 1456, 1312, 1671, 1329, 1428, 1404, 1407, 1325, 1312, 1246, 496, 496, 496, 496, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 1326, 1428, 1246, 1315, 1316, 1318, 506, 506, 506, 506, 506, 506, 1315, 1316, 1318, 3038, 1422, 1325, 1326, 1315, 1413, 1318, 1422, 1422, 1315, 1316, 1324, 1428, 1422, 1413, 1326, 3038, 506, 506, 506, 506, 506, 506, 508, 508, 508, 508, 508, 508, 508, 508, 508, 1327, 1328, 1324, 1315, 1316, 1319, 1320, 508, 508, 508, 508, 508, 508, 1324, 1319, 1320, 1432, 1326, 1327, 1328, 1425, 1319, 1432, 1432, 1579, 1327, 1319, 1320, 1432, 1425, 1327, 1328, 1579, 508, 508, 508, 508, 508, 508, 514, 514, 514, 514, 514, 514, 514, 514, 514, 1729, 1360, 1485, 1729, 1319, 1320, 1340, 514, 514, 514, 514, 514, 514, 1360, 1485, 1340, 1327, 1328, 1328, 1360, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1934, 1340, 5534, 1934, 514, 514, 514, 514, 514, 514, 517, 517, 1296, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 547, 547, 1549, 547, 547, 547, 547, 547, 547, 547, 547, 547, 1331, 1353, 1549, 1600, 1356, 1452, 1353, 1335, 1338, 547, 547, 547, 547, 547, 547, 547, 1335, 1338, 1353, 1341, 1600, 547, 1356, 1335, 1338, 1356, 1452, 1332, 1341, 1338, 1536, 1331, 1353, 1339, 1356, 1341, 1342, 1331, 547, 547, 547, 547, 1339, 1616, 1405, 1342, 1452, 1435, 1331, 1576, 1438, 1536, 1342, 1405, 1339, 1338, 1435, 1342, 1332, 1438, 1405, 1526, 547, 551, 551, 1331, 551, 551, 551, 551, 551, 551, 551, 551, 551, 1332, 1354, 1536, 1616, 1576, 1339, 1354, 1576, 1342, 551, 551, 551, 551, 551, 551, 551, 1332, 1332, 1354, 1357, 1409, 551, 1343, 1582, 1526, 1451, 1358, 1595, 1377, 1409, 1451, 1343, 1354, 1357, 1464, 1584, 1409, 1357, 551, 551, 551, 551, 1410, 1343, 1358, 1464, 1584, 1595, 1489, 1357, 1464, 1410, 1598, 1582, 1795, 1451, 1358, 1489, 1377, 1417, 551, 560, 1358, 1357, 1377, 1466, 1410, 1554, 1417, 1343, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 1466, 1795, 1598, 1417, 1554, 1466, 560, 560, 560, 560, 560, 560, 1377, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1492, 1601, 1821, 1554, 1796, 1604, 560, 1683, 1604, 1492, 560, 560, 560, 560, 560, 560, 562, 562, 562, 562, 562, 562, 562, 562, 562, 1604, 1801, 1796, 1683, 1821, 1449, 1601, 562, 562, 562, 562, 562, 562, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1794, 1419, 5536, 1642, 1642, 1557, 1557, 562, 1487, 1415, 1419, 562, 562, 562, 562, 562, 562, 575, 1415, 1449, 1487, 1801, 1419, 1487, 1449, 1415, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 1557, 1642, 1794, 1830, 1674, 1427, 575, 575, 575, 575, 575, 575, 1419, 1423, 1427, 1429, 1674, 1433, 1441, 1423, 1606, 1427, 1418, 1433, 1429, 1423, 1606, 1441, 1423, 1433, 1674, 1418, 575, 575, 575, 575, 575, 575, 1418, 1429, 1467, 1607, 1441, 1418, 1830, 575, 577, 577, 577, 577, 577, 577, 577, 577, 577, 1467, 1477, 2070, 2070, 1430, 1467, 1431, 577, 577, 577, 577, 577, 577, 1430, 1418, 1431, 1607, 1486, 1477, 1440, 1430, 1444, 1494, 1436, 1486, 1430, 1477, 1431, 1440, 1486, 1444, 1494, 1436, 577, 577, 577, 577, 577, 577, 1436, 1440, 1500, 1444, 1497, 1684, 1503, 577, 592, 1797, 1845, 1500, 1430, 1497, 1431, 1503, 1684, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 1440, 1497, 1444, 2213, 1797, 1511, 1732, 1732, 1732, 1845, 2213, 592, 618, 618, 1511, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 619, 619, 1465, 619, 619, 619, 619, 619, 619, 1514, 619, 619, 1528, 1560, 1560, 2914, 2914, 1619, 1514, 1439, 1442, 619, 619, 619, 619, 619, 619, 619, 1439, 1442, 1528, 1817, 1465, 619, 1619, 1439, 1442, 1803, 1681, 619, 1439, 1798, 1528, 1465, 1560, 1619, 1506, 1529, 1465, 1575, 619, 619, 619, 619, 620, 1506, 620, 620, 620, 620, 620, 620, 620, 620, 620, 1529, 1439, 1491, 5537, 1496, 1506, 620, 1681, 1803, 1817, 1798, 1491, 1529, 1496, 1575, 620, 621, 621, 1491, 621, 621, 621, 621, 621, 621, 1496, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 1498, 1458, 1533, 1628, 1458, 621, 1458, 1496, 1575, 1498, 1458, 1533, 1628, 1458, 1458, 1458, 1498, 5601, 1458, 1443, 1811, 1835, 621, 621, 621, 621, 625, 625, 1443, 625, 625, 625, 625, 625, 625, 1443, 625, 625, 1679, 1835, 1443, 1618, 1618, 1811, 1679, 1501, 1507, 625, 625, 625, 625, 625, 625, 625, 1501, 1507, 1679, 1682, 1618, 625, 1688, 1501, 1507, 1527, 1527, 1646, 1443, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 625, 625, 625, 625, 626, 626, 1802, 626, 626, 626, 626, 626, 626, 1643, 626, 626, 1682, 1646, 1527, 1688, 1551, 1809, 1935, 1495, 1504, 626, 626, 626, 626, 626, 626, 626, 1495, 1504, 1512, 1527, 4219, 626, 1551, 1495, 1504, 1643, 1809, 1512, 1495, 1504, 1802, 1643, 1631, 1935, 1512, 1646, 1620, 1647, 626, 626, 626, 626, 629, 629, 629, 629, 629, 629, 629, 629, 629, 629, 1541, 1631, 1495, 1504, 1505, 1508, 629, 629, 629, 629, 629, 629, 1620, 1505, 1508, 1518, 1799, 1551, 1541, 1647, 1551, 1508, 4219, 1647, 1518, 1505, 1508, 1631, 1658, 1620, 1541, 1518, 629, 629, 629, 629, 629, 629, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 1799, 1658, 1799, 1505, 1508, 1509, 631, 631, 631, 631, 631, 631, 1621, 1734, 1509, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1890, 1734, 1509, 1658, 1958, 1621, 1531, 1603, 631, 631, 631, 631, 631, 631, 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, 1531, 1603, 1621, 2934, 1509, 634, 634, 634, 634, 634, 634, 634, 1531, 1603, 1890, 1531, 1735, 2934, 4914, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1735, 1804, 1806, 1958, 634, 634, 634, 634, 634, 634, 639, 639, 1448, 639, 639, 639, 639, 639, 639, 1655, 639, 639, 1530, 1540, 1567, 1804, 1918, 1806, 1655, 1515, 1516, 639, 639, 639, 639, 639, 639, 639, 1515, 1516, 1530, 1540, 1567, 639, 4914, 1515, 639, 1530, 1540, 1517, 1515, 1516, 1530, 1540, 1810, 1692, 1565, 1567, 1517, 3421, 639, 639, 639, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 1517, 1565, 3421, 1515, 1516, 1519, 641, 641, 641, 641, 641, 641, 1692, 1535, 1519, 1672, 1810, 2396, 1918, 1567, 1695, 1519, 1535, 1692, 1672, 1565, 1519, 1672, 1695, 1535, 1622, 1622, 641, 641, 641, 641, 641, 641, 643, 643, 643, 643, 643, 643, 643, 643, 643, 1572, 1737, 1971, 1850, 1565, 1519, 1537, 643, 643, 643, 643, 643, 643, 1737, 1622, 1537, 1737, 2396, 1572, 1971, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1850, 1537, 1622, 1822, 643, 643, 643, 643, 643, 643, 652, 652, 1457, 652, 652, 652, 652, 652, 652, 1812, 652, 652, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 652, 652, 652, 652, 652, 652, 652, 1691, 1572, 1739, 1572, 1822, 652, 1812, 1693, 1581, 1691, 1943, 1739, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 652, 652, 652, 653, 653, 4515, 653, 653, 653, 653, 653, 653, 1460, 653, 653, 1693, 1581, 1568, 1943, 4515, 1814, 1623, 1594, 1520, 653, 653, 653, 653, 653, 653, 653, 653, 1520, 1581, 1630, 1568, 653, 1539, 1693, 1623, 1594, 1950, 1581, 1630, 1520, 1814, 1539, 1862, 1836, 1800, 1630, 1623, 1889, 653, 653, 653, 657, 657, 1539, 657, 657, 657, 657, 657, 657, 1742, 657, 657, 1623, 1836, 1520, 1950, 1929, 1862, 1742, 1676, 1568, 657, 657, 657, 657, 657, 657, 657, 1539, 1568, 1594, 1800, 2354, 657, 1594, 1889, 2354, 1676, 1800, 657, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1676, 657, 657, 657, 658, 658, 1929, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 659, 659, 1677, 659, 659, 659, 659, 659, 659, 1820, 659, 659, 2014, 1956, 1677, 2014, 1780, 1820, 1556, 1538, 1677, 659, 659, 659, 659, 659, 659, 659, 1538, 1744, 1750, 1962, 1677, 659, 1956, 1538, 1556, 1780, 1744, 1750, 1538, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 659, 659, 659, 659, 661, 661, 1556, 661, 661, 661, 661, 661, 661, 1780, 661, 661, 1538, 1962, 1917, 1876, 1569, 1678, 1602, 1632, 1917, 661, 661, 661, 661, 661, 661, 661, 1632, 1657, 1736, 1753, 1556, 661, 1569, 1678, 1602, 1736, 1657, 1807, 1753, 1876, 1736, 1632, 1807, 1657, 1633, 1678, 1602, 1569, 661, 661, 661, 662, 662, 1633, 662, 662, 662, 662, 662, 662, 1633, 662, 662, 1602, 1916, 1633, 1967, 1807, 1906, 1906, 1906, 1741, 662, 662, 662, 662, 662, 662, 662, 662, 1741, 1761, 1569, 1580, 662, 1602, 1967, 1741, 1624, 1916, 1761, 1633, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 662, 662, 662, 664, 664, 1624, 664, 664, 664, 664, 664, 664, 1580, 664, 664, 1919, 2100, 1624, 2012, 2012, 2012, 2100, 1748, 1751, 664, 664, 664, 664, 664, 664, 664, 1748, 1751, 1764, 1624, 1823, 664, 5617, 1748, 1751, 1626, 1919, 1764, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 664, 664, 664, 665, 665, 1626, 665, 665, 665, 665, 665, 665, 1609, 665, 665, 2059, 1992, 1626, 2059, 1823, 1626, 1823, 1992, 1757, 665, 665, 665, 665, 665, 665, 665, 665, 1757, 1777, 1626, 1805, 665, 1648, 1648, 1757, 1636, 1964, 1777, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 665, 665, 665, 667, 667, 1636, 667, 667, 667, 667, 667, 667, 1610, 667, 667, 1648, 1964, 1636, 1805, 3337, 3337, 1675, 2040, 1805, 667, 667, 667, 667, 667, 667, 667, 1808, 1648, 1675, 1636, 5619, 667, 1931, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1675, 1930, 1648, 1675, 2040, 1808, 667, 667, 667, 667, 668, 668, 1611, 668, 668, 668, 668, 668, 668, 1634, 668, 668, 2037, 2037, 2037, 1808, 1625, 1673, 1634, 1635, 1673, 668, 668, 668, 668, 668, 668, 668, 668, 1673, 1634, 1762, 3338, 668, 1625, 1930, 1772, 1635, 1940, 1968, 1762, 1625, 1772, 1673, 1635, 1931, 1625, 1762, 1772, 1635, 668, 668, 668, 668, 669, 669, 1634, 669, 669, 669, 669, 669, 669, 1625, 669, 669, 1635, 1968, 1680, 1970, 1694, 1941, 1913, 1659, 1838, 669, 669, 669, 669, 669, 669, 669, 1659, 1838, 1913, 3338, 1680, 669, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1659, 1680, 1970, 1694, 1941, 2270, 1940, 669, 669, 669, 671, 671, 1694, 671, 671, 671, 671, 671, 671, 1974, 671, 671, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 671, 671, 671, 671, 671, 671, 671, 1991, 1941, 2270, 1974, 1996, 671, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1824, 2214, 5621, 2055, 1660, 2057, 1996, 671, 671, 671, 671, 672, 672, 1660, 672, 672, 672, 672, 672, 672, 1660, 672, 672, 1984, 1984, 1660, 2055, 1996, 1991, 1984, 2214, 1768, 672, 672, 672, 672, 672, 672, 672, 672, 1768, 1928, 2039, 1824, 672, 2175, 2057, 1768, 2039, 1928, 1824, 1660, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 672, 672, 672, 672, 673, 673, 2175, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 677, 677, 1644, 677, 677, 677, 677, 677, 677, 1939, 677, 677, 5622, 1922, 1922, 1922, 1920, 1920, 1645, 1939, 1644, 677, 677, 677, 677, 677, 677, 677, 677, 1779, 1839, 1841, 1644, 677, 1661, 1644, 1645, 1649, 1779, 1839, 1841, 2106, 1920, 1661, 1922, 1779, 1839, 1920, 1645, 2106, 677, 677, 677, 679, 679, 1661, 679, 679, 679, 679, 679, 679, 1746, 679, 679, 2188, 1644, 1988, 1649, 1854, 1855, 1746, 5627, 1988, 679, 679, 679, 679, 679, 679, 679, 1661, 1645, 1746, 1988, 1649, 679, 1854, 1855, 1649, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1854, 1855, 2188, 1649, 679, 679, 679, 679, 684, 684, 1746, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 685, 2042, 2062, 2536, 2397, 2062, 2186, 2042, 2536, 685, 685, 685, 685, 685, 685, 685, 685, 685, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 2170, 2170, 2170, 1670, 2186, 2397, 2179, 685, 685, 685, 685, 685, 685, 685, 685, 685, 685, 685, 685, 685, 685, 685, 685, 685, 685, 685, 685, 685, 685, 685, 685, 685, 687, 687, 687, 687, 687, 687, 687, 687, 687, 1650, 1651, 1652, 2179, 1747, 1745, 1843, 687, 687, 687, 687, 687, 687, 1747, 1745, 1843, 1847, 1773, 1650, 1651, 1652, 1745, 1843, 1773, 5628, 1847, 1745, 1652, 1747, 1773, 1650, 1651, 1652, 687, 687, 687, 687, 687, 687, 688, 688, 688, 688, 688, 688, 688, 688, 688, 2181, 1662, 1663, 1959, 1745, 1756, 1754, 688, 688, 688, 688, 688, 688, 1959, 1756, 1754, 1650, 1651, 1652, 1662, 1663, 1859, 1754, 2181, 2115, 2511, 1662, 1754, 2511, 1756, 1859, 1662, 1663, 688, 688, 688, 688, 688, 688, 691, 691, 691, 691, 691, 691, 691, 691, 691, 691, 1867, 2115, 2104, 1755, 1754, 1758, 691, 691, 691, 691, 691, 691, 1755, 1774, 1758, 2104, 1662, 1663, 1867, 1774, 1774, 1758, 1873, 2120, 1755, 1774, 1758, 2262, 2262, 2262, 1867, 1873, 691, 691, 691, 691, 691, 691, 698, 698, 698, 698, 698, 698, 698, 698, 698, 698, 1982, 2120, 1755, 1759, 1758, 1765, 698, 698, 698, 698, 698, 698, 1759, 1775, 1765, 1982, 2306, 1785, 1893, 1775, 1982, 1765, 4893, 1785, 1759, 1775, 1765, 1893, 1775, 1785, 1653, 1868, 698, 698, 698, 698, 698, 698, 701, 701, 701, 701, 701, 701, 701, 701, 701, 701, 1653, 1868, 1759, 2306, 1765, 1767, 701, 701, 701, 701, 701, 701, 1653, 1868, 1767, 1653, 1781, 1844, 1851, 1896, 2187, 1863, 1766, 4893, 1983, 1781, 1844, 1851, 1896, 1767, 1863, 1766, 701, 701, 701, 701, 701, 701, 703, 1983, 1781, 1844, 1851, 1766, 1983, 1863, 1653, 703, 703, 703, 703, 703, 703, 703, 703, 703, 1856, 1960, 1869, 2132, 2187, 1769, 1770, 703, 703, 703, 703, 703, 703, 1766, 1769, 1770, 1784, 2358, 1856, 1960, 1869, 1769, 1784, 1784, 2358, 1856, 1769, 1770, 1784, 2132, 1856, 1857, 1869, 703, 703, 703, 703, 703, 703, 707, 707, 707, 707, 707, 707, 707, 707, 707, 707, 1857, 1881, 2146, 1769, 1770, 1782, 707, 707, 707, 707, 707, 707, 1857, 1849, 1782, 1857, 1999, 1960, 2002, 1881, 2058, 1782, 1849, 1960, 2829, 1999, 1782, 2002, 2146, 1849, 1994, 1881, 707, 707, 707, 707, 707, 707, 709, 709, 709, 709, 709, 709, 709, 709, 709, 1994, 2067, 1994, 2058, 1783, 1782, 1925, 709, 709, 709, 709, 709, 709, 1783, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1925, 2829, 1783, 2180, 2177, 2189, 2178, 2178, 2067, 1925, 709, 709, 709, 709, 709, 709, 729, 729, 729, 729, 729, 729, 729, 729, 729, 729, 2177, 2178, 1783, 2189, 2180, 2197, 729, 729, 729, 729, 729, 729, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 2197, 1995, 729, 729, 729, 729, 729, 729, 732, 732, 732, 732, 732, 732, 732, 732, 732, 732, 1995, 2182, 4533, 1852, 1853, 1861, 732, 732, 732, 732, 732, 732, 1852, 1853, 1861, 1980, 1891, 4533, 2024, 1852, 2027, 1861, 1995, 2182, 1852, 1853, 1980, 2024, 2183, 2027, 1871, 1980, 732, 732, 732, 732, 732, 732, 740, 740, 740, 740, 740, 740, 740, 740, 740, 1891, 1871, 2068, 1852, 1853, 1877, 1891, 740, 740, 740, 740, 740, 740, 1871, 1877, 2183, 1871, 1891, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 2063, 1877, 2942, 2389, 2068, 740, 740, 740, 740, 740, 740, 744, 1792, 1911, 1911, 1911, 1911, 1911, 1911, 2190, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 1899, 2942, 2068, 2063, 1911, 2389, 744, 757, 757, 1899, 757, 757, 757, 757, 757, 757, 757, 757, 757, 1866, 1870, 2069, 1993, 2190, 1899, 1993, 1864, 1865, 757, 757, 757, 757, 757, 757, 757, 1864, 1865, 1866, 1870, 1993, 757, 2019, 1864, 2198, 1866, 1870, 757, 1864, 1865, 1866, 1870, 2069, 2069, 2223, 2198, 4135, 4135, 757, 757, 757, 757, 760, 760, 1985, 760, 760, 760, 760, 760, 760, 760, 760, 760, 1864, 1865, 2019, 1985, 2043, 2043, 2223, 2019, 1985, 760, 760, 760, 760, 760, 760, 760, 2043, 2300, 1880, 2300, 1942, 760, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 5634, 1875, 2305, 1989, 1880, 1894, 760, 760, 760, 760, 1875, 1880, 1793, 2108, 1894, 2403, 1880, 1875, 1942, 2305, 1989, 1894, 2108, 1997, 1942, 760, 763, 763, 1989, 763, 763, 763, 763, 763, 763, 763, 763, 763, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 763, 763, 763, 763, 763, 763, 763, 1997, 2425, 2360, 2403, 2317, 763, 1997, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 2208, 1997, 2425, 2185, 2290, 2317, 763, 763, 763, 763, 779, 779, 1813, 779, 779, 779, 779, 779, 779, 779, 779, 779, 2317, 2015, 2360, 2208, 2015, 2290, 2047, 1878, 1879, 779, 779, 779, 779, 779, 779, 779, 1878, 1879, 1900, 2185, 2098, 779, 2016, 1878, 2047, 2098, 2185, 1900, 1878, 1879, 3339, 1963, 1963, 1963, 1900, 2015, 2047, 2098, 779, 779, 779, 779, 781, 781, 1963, 781, 781, 781, 781, 781, 781, 2016, 781, 781, 1878, 1879, 2016, 1963, 1963, 2269, 2215, 2005, 2216, 781, 781, 781, 781, 781, 781, 781, 2005, 1963, 2215, 1932, 2216, 781, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 2005, 2269, 2502, 2000, 3339, 5635, 1932, 781, 781, 781, 782, 782, 2000, 782, 782, 782, 782, 782, 782, 2000, 782, 782, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 782, 782, 782, 782, 782, 782, 782, 782, 2313, 2313, 2390, 2502, 782, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1932, 2328, 2006, 2111, 1932, 2030, 2114, 782, 782, 782, 794, 2006, 2111, 2020, 2030, 2114, 2390, 2313, 2006, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 2030, 2114, 2328, 1897, 1898, 1901, 794, 794, 794, 794, 794, 794, 1897, 1898, 1901, 2099, 5151, 2124, 2020, 1897, 2099, 1901, 2020, 2124, 1897, 1898, 1901, 2099, 794, 2124, 2303, 5151, 794, 794, 794, 794, 794, 794, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 1981, 2375, 1897, 1898, 1901, 2303, 797, 797, 797, 797, 797, 797, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 2196, 1902, 2321, 2340, 2326, 2375, 2048, 2184, 2196, 1981, 1902, 797, 797, 797, 797, 797, 797, 815, 2340, 2049, 1981, 2326, 1902, 2340, 2048, 1981, 815, 815, 815, 815, 815, 815, 815, 815, 815, 815, 2048, 2049, 2326, 2184, 2380, 2184, 815, 815, 815, 815, 815, 815, 1902, 2049, 2048, 2226, 2218, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 2051, 2380, 2218, 2321, 2117, 2218, 815, 815, 815, 815, 815, 815, 1904, 2117, 2051, 2226, 2423, 2050, 2051, 815, 818, 818, 818, 818, 818, 818, 818, 818, 818, 818, 2051, 2484, 2567, 2234, 2121, 2050, 818, 818, 818, 818, 818, 818, 2050, 2121, 2053, 2567, 2423, 2050, 2053, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 2121, 2234, 2053, 2484, 818, 818, 818, 818, 818, 818, 843, 843, 1965, 843, 843, 843, 843, 843, 843, 843, 843, 843, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 843, 843, 843, 843, 843, 843, 843, 2129, 2054, 2025, 1973, 2324, 843, 1973, 2370, 1973, 2129, 1965, 2025, 1973, 2054, 2324, 1973, 1973, 1973, 2025, 2054, 1973, 5644, 843, 843, 843, 843, 858, 858, 2370, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 859, 859, 2244, 859, 859, 859, 859, 859, 859, 2378, 859, 859, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 859, 859, 859, 859, 859, 859, 859, 2244, 2341, 2378, 2953, 2379, 859, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 2341, 2255, 2384, 5645, 2953, 2341, 859, 859, 859, 859, 860, 860, 1975, 860, 860, 860, 860, 860, 860, 2143, 860, 860, 2017, 2379, 2384, 2454, 2018, 2255, 2143, 2003, 2004, 860, 860, 860, 860, 860, 860, 860, 2003, 2004, 2017, 2201, 2096, 860, 2018, 2003, 2157, 2096, 2160, 2201, 2003, 2004, 2017, 2096, 2096, 2157, 2018, 2160, 2017, 2454, 860, 860, 860, 860, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 2022, 5655, 2003, 2004, 2007, 2008, 864, 864, 864, 864, 864, 864, 2017, 2007, 2008, 2018, 2018, 2125, 2220, 2225, 2007, 2393, 2372, 2125, 2225, 2007, 2008, 2220, 2372, 2125, 2021, 2022, 864, 864, 864, 864, 864, 864, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 2022, 2392, 2225, 2007, 2008, 2028, 867, 867, 867, 867, 867, 867, 2393, 2021, 2028, 2031, 2102, 2022, 2230, 2021, 2240, 2028, 2280, 2022, 2031, 2381, 2028, 2230, 2392, 2240, 2021, 2031, 867, 867, 867, 867, 867, 867, 869, 869, 869, 869, 869, 869, 869, 869, 869, 2021, 2280, 5656, 2381, 2029, 2028, 869, 869, 869, 869, 869, 869, 869, 2029, 2109, 2113, 5666, 2102, 2689, 2251, 2217, 2102, 2102, 2109, 2113, 2029, 2102, 2217, 2251, 2500, 2109, 2113, 2217, 869, 869, 869, 869, 869, 869, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 2272, 2689, 2029, 2032, 2033, 2119, 873, 873, 873, 873, 873, 873, 2032, 2033, 2119, 2500, 2137, 2357, 2272, 2032, 2277, 2119, 2137, 2097, 2032, 2033, 2097, 2357, 2137, 2277, 2272, 2097, 873, 873, 873, 873, 873, 873, 875, 875, 875, 875, 875, 875, 875, 875, 875, 2097, 3652, 2338, 2032, 2033, 2133, 2147, 875, 875, 875, 875, 875, 875, 2338, 2133, 2147, 2374, 3652, 2338, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 2133, 2147, 2388, 2757, 875, 875, 875, 875, 875, 875, 881, 881, 1976, 881, 881, 881, 881, 881, 881, 2311, 881, 881, 2101, 2374, 2101, 2327, 2046, 2311, 2374, 2101, 2122, 881, 881, 881, 881, 881, 881, 881, 2046, 2122, 2785, 2757, 2127, 881, 2101, 2388, 2122, 2044, 2127, 881, 2401, 2122, 2046, 2044, 2127, 2327, 2052, 2127, 2046, 2044, 881, 881, 881, 882, 882, 882, 882, 882, 882, 882, 882, 882, 882, 2044, 2052, 2319, 2123, 2122, 2785, 882, 882, 882, 882, 882, 882, 2123, 2052, 2126, 2327, 2136, 2318, 2401, 2052, 2126, 2126, 2136, 2136, 2123, 2318, 2126, 2052, 2136, 2415, 2273, 2319, 882, 882, 882, 882, 882, 882, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 2273, 2415, 2123, 2409, 2163, 2227, 885, 885, 885, 885, 885, 885, 2273, 2163, 2227, 2409, 5667, 2319, 1977, 1977, 1977, 1977, 1977, 1977, 1977, 1977, 1977, 1977, 2163, 2227, 2485, 2864, 885, 885, 885, 885, 885, 885, 893, 893, 1977, 893, 893, 893, 893, 893, 893, 2135, 893, 893, 2864, 2342, 2342, 2485, 2275, 2285, 2135, 2342, 2131, 893, 893, 893, 893, 893, 893, 893, 1947, 2131, 2135, 2488, 2422, 893, 2275, 2285, 2131, 1947, 1947, 1947, 1947, 1947, 1947, 1947, 1947, 1947, 2275, 2285, 2138, 2275, 893, 893, 893, 893, 2138, 2041, 2135, 2422, 1947, 2513, 2138, 2488, 2095, 2426, 2041, 2041, 2041, 2041, 2041, 2041, 2041, 2041, 2041, 2505, 5674, 893, 894, 894, 2821, 894, 894, 894, 894, 894, 894, 2041, 894, 894, 2095, 2513, 2426, 2095, 2322, 2361, 2505, 2145, 2095, 894, 894, 894, 894, 894, 894, 894, 2145, 2361, 2095, 2426, 2312, 894, 2322, 2145, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2821, 2307, 2307, 2139, 2312, 894, 894, 894, 894, 2139, 2134, 2361, 2010, 2312, 2872, 2139, 894, 896, 896, 2134, 896, 896, 896, 896, 896, 896, 2134, 896, 896, 2010, 2322, 2134, 2307, 2486, 2322, 2307, 2158, 2164, 896, 896, 896, 896, 896, 896, 896, 2158, 2164, 2320, 2872, 2345, 896, 2345, 2158, 2164, 2345, 2320, 896, 2134, 2035, 2035, 2035, 2035, 2035, 2035, 2035, 2035, 2035, 896, 896, 896, 900, 900, 2486, 900, 900, 900, 900, 900, 900, 2035, 900, 900, 2153, 2153, 2153, 2153, 2153, 2153, 2153, 2153, 2153, 900, 900, 900, 900, 900, 900, 900, 2140, 2391, 2141, 3919, 2150, 900, 2140, 2140, 2141, 2391, 2150, 2150, 2140, 2452, 2141, 2035, 2150, 2141, 2402, 5676, 3919, 2452, 900, 900, 900, 901, 901, 2402, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 904, 904, 2540, 904, 904, 904, 904, 904, 904, 2434, 904, 904, 2784, 2540, 2793, 5677, 2501, 2784, 2434, 2148, 2149, 904, 904, 904, 904, 904, 904, 904, 2148, 2149, 2427, 2045, 2151, 904, 2162, 2148, 2045, 2466, 2151, 904, 2148, 2149, 2045, 2162, 2151, 2437, 2466, 2427, 2045, 2501, 904, 904, 904, 905, 905, 2162, 905, 905, 905, 905, 905, 905, 2045, 905, 905, 2427, 2148, 2149, 2447, 4009, 2343, 2437, 2455, 2222, 905, 905, 905, 905, 905, 905, 905, 2162, 2222, 2343, 4226, 4009, 905, 2793, 2343, 2222, 2455, 2447, 905, 2154, 2154, 2154, 2154, 2154, 2154, 2154, 2154, 2154, 2455, 905, 905, 905, 906, 906, 2447, 906, 906, 906, 906, 906, 906, 906, 906, 906, 2155, 2155, 2155, 2155, 2155, 2155, 2155, 2155, 2155, 906, 906, 906, 906, 906, 906, 906, 2377, 4226, 2455, 5756, 2363, 906, 2171, 2171, 2171, 2171, 2171, 2171, 2171, 2171, 2171, 2233, 2363, 2657, 2535, 2161, 2233, 2377, 906, 906, 906, 906, 907, 907, 2161, 907, 907, 907, 907, 907, 907, 2161, 907, 907, 2508, 2243, 2161, 2377, 2535, 2363, 2243, 2231, 2233, 907, 907, 907, 907, 907, 907, 907, 2231, 2174, 2469, 2657, 2174, 907, 2174, 2231, 907, 2411, 2174, 2411, 2161, 2174, 2174, 2174, 2243, 2508, 2174, 5154, 2411, 5154, 907, 907, 907, 907, 908, 908, 2469, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 909, 909, 2569, 909, 909, 909, 909, 909, 909, 2166, 909, 909, 2376, 5757, 2569, 2637, 2274, 2376, 2166, 2235, 2241, 909, 909, 909, 909, 909, 909, 909, 2235, 2241, 2166, 2252, 2489, 909, 2274, 2489, 2241, 2504, 2637, 2245, 2252, 2274, 2376, 2235, 2489, 2504, 2274, 2252, 2245, 2394, 909, 909, 909, 909, 911, 911, 2166, 911, 911, 911, 911, 911, 911, 2245, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 2647, 2323, 2325, 5763, 2394, 911, 2394, 2168, 2168, 2168, 2168, 2168, 2168, 2168, 2168, 2168, 2617, 2617, 2617, 2323, 2325, 2647, 911, 911, 911, 911, 912, 912, 2168, 912, 912, 912, 912, 912, 912, 2457, 912, 912, 912, 912, 912, 912, 912, 912, 912, 912, 912, 912, 912, 912, 912, 912, 912, 912, 2279, 3323, 2323, 2325, 3323, 912, 2575, 2254, 2457, 2279, 2323, 2325, 2254, 2332, 2271, 2575, 2279, 2825, 2479, 2165, 2578, 2332, 912, 912, 912, 912, 915, 915, 2165, 915, 915, 915, 915, 915, 915, 2165, 915, 915, 2254, 2395, 2165, 2479, 2457, 2332, 2825, 2271, 2578, 915, 915, 915, 915, 915, 915, 915, 2271, 2256, 2281, 2362, 2362, 915, 2362, 2804, 2271, 2284, 2256, 2281, 2165, 2195, 2195, 2195, 2195, 2195, 2195, 2195, 2195, 2479, 915, 915, 915, 2256, 2281, 2284, 2395, 2362, 2362, 2566, 2507, 2195, 2284, 2395, 2663, 2804, 2566, 2284, 2507, 915, 916, 916, 2663, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 917, 917, 2329, 917, 917, 917, 917, 917, 917, 917, 917, 917, 2263, 2263, 2263, 2263, 2263, 2263, 2263, 2263, 2263, 917, 917, 917, 917, 917, 917, 917, 5764, 2493, 2496, 2854, 2329, 917, 2176, 2176, 2176, 2176, 2176, 2176, 2176, 2176, 2176, 2176, 4254, 2570, 2436, 2493, 2496, 2329, 917, 917, 917, 917, 918, 2436, 2176, 2570, 2329, 2493, 2496, 2854, 2436, 918, 918, 918, 918, 918, 918, 918, 918, 918, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2288, 2288, 2288, 2288, 2288, 2288, 2288, 2288, 2288, 2752, 2752, 2752, 2752, 4254, 2823, 918, 918, 918, 918, 918, 918, 918, 918, 918, 918, 918, 918, 918, 918, 918, 918, 918, 918, 918, 918, 918, 918, 918, 918, 918, 921, 921, 2823, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 923, 2458, 2754, 2754, 2754, 2754, 5766, 2826, 2571, 923, 923, 923, 923, 923, 923, 923, 923, 923, 923, 2498, 2571, 2581, 2237, 2238, 2247, 923, 923, 923, 923, 923, 923, 2237, 2238, 2247, 2453, 2458, 2458, 2498, 2237, 2585, 2247, 2589, 2453, 2237, 2238, 2247, 2826, 2581, 2585, 2498, 2339, 923, 923, 923, 923, 923, 923, 932, 932, 932, 932, 932, 932, 932, 932, 932, 932, 2589, 2453, 2237, 2238, 2247, 2248, 932, 932, 932, 932, 932, 932, 5767, 2339, 2248, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2339, 3391, 2248, 2599, 3391, 2339, 2461, 2429, 932, 932, 932, 932, 932, 932, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 2461, 2429, 2367, 2367, 2248, 2599, 934, 934, 934, 934, 934, 934, 2461, 2429, 2369, 2369, 2291, 2367, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2822, 2367, 2367, 2429, 2491, 934, 934, 934, 934, 934, 934, 937, 2291, 2369, 2369, 2514, 2491, 2367, 2369, 2461, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 2491, 2610, 2822, 2258, 2259, 2282, 937, 937, 937, 937, 937, 937, 2258, 2259, 2282, 2514, 2572, 5773, 2514, 2258, 2595, 2282, 2606, 2572, 2258, 2259, 2282, 2610, 2572, 2595, 2430, 2606, 937, 937, 937, 937, 937, 937, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 2430, 2627, 2258, 2259, 2282, 2283, 943, 943, 943, 943, 943, 943, 2430, 2573, 2283, 2406, 2406, 2406, 2406, 2406, 2406, 2406, 2406, 2406, 2406, 2573, 2283, 2627, 2573, 2430, 2432, 2442, 943, 943, 943, 943, 943, 943, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 2432, 2442, 2696, 2412, 2283, 2412, 946, 946, 946, 946, 946, 946, 2432, 2442, 2412, 2432, 4225, 2292, 5774, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2696, 2432, 2442, 2649, 946, 946, 946, 946, 946, 946, 954, 954, 2292, 954, 954, 954, 954, 954, 954, 954, 954, 954, 2580, 2412, 2368, 2368, 2649, 2580, 2460, 2492, 2424, 954, 954, 954, 954, 954, 954, 954, 2424, 2368, 2619, 2492, 2648, 954, 2880, 4225, 2619, 2424, 2624, 954, 2368, 2368, 2619, 2580, 2492, 2492, 2644, 2624, 2655, 2460, 954, 954, 954, 954, 955, 955, 2368, 955, 955, 955, 955, 955, 955, 2879, 955, 955, 2460, 2648, 2880, 2588, 2655, 2644, 2460, 2438, 2588, 955, 955, 955, 955, 955, 955, 955, 2438, 2460, 5779, 2879, 2293, 955, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2438, 2835, 2885, 2588, 2771, 2771, 2771, 955, 955, 955, 956, 956, 2293, 956, 956, 956, 956, 956, 956, 2650, 956, 956, 2444, 2444, 2444, 2444, 2444, 2444, 2444, 2444, 2444, 956, 956, 956, 956, 956, 956, 956, 2885, 2652, 2652, 2835, 2778, 956, 2650, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2778, 2938, 4173, 4173, 2643, 2652, 956, 956, 956, 956, 957, 957, 2298, 957, 957, 957, 957, 957, 957, 2938, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 2468, 2383, 2643, 2670, 2383, 957, 2383, 2643, 2691, 2468, 2383, 2670, 2470, 2383, 2383, 2383, 2468, 2691, 2383, 2495, 2462, 2470, 957, 957, 957, 957, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 2470, 2495, 2462, 2704, 2556, 2949, 970, 970, 970, 970, 970, 970, 2556, 2495, 2462, 2949, 2495, 2347, 2407, 2407, 2407, 2407, 2407, 2407, 2407, 2407, 2407, 2407, 2556, 2704, 2428, 2459, 970, 970, 970, 970, 970, 970, 972, 972, 972, 972, 972, 972, 972, 972, 972, 2347, 2462, 2413, 2667, 2413, 2665, 2347, 972, 972, 972, 972, 972, 972, 2413, 2428, 2459, 2665, 2347, 2671, 2830, 2413, 2490, 2598, 2428, 2459, 2878, 2347, 2598, 2667, 2671, 2892, 2428, 2459, 972, 972, 972, 972, 972, 972, 980, 980, 980, 980, 980, 980, 980, 980, 980, 2878, 2459, 2413, 2490, 2714, 2598, 2688, 980, 980, 980, 980, 980, 980, 2645, 2464, 2490, 2830, 2892, 2645, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2494, 2490, 2714, 2688, 2464, 980, 980, 980, 980, 980, 980, 986, 2373, 2497, 2494, 2645, 2464, 2331, 2494, 2464, 986, 986, 986, 986, 986, 986, 986, 986, 986, 2609, 2494, 2497, 2656, 2656, 2609, 2726, 986, 986, 986, 986, 986, 986, 2331, 2497, 2494, 2331, 5780, 2331, 2760, 2440, 2464, 2331, 2497, 2656, 2331, 2331, 2331, 2760, 2440, 2331, 2609, 2726, 986, 986, 986, 986, 986, 986, 994, 994, 2440, 994, 994, 994, 994, 994, 994, 994, 994, 994, 2445, 2445, 2445, 2445, 2445, 2445, 2445, 2445, 2445, 994, 994, 994, 994, 994, 994, 994, 2440, 2968, 2968, 2968, 4380, 994, 2903, 2382, 2382, 2382, 2382, 2382, 2382, 2382, 2382, 2382, 2834, 2903, 994, 5785, 2876, 4380, 994, 994, 994, 994, 1005, 1005, 2382, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 2446, 2446, 2446, 2446, 2446, 2446, 2446, 2446, 2446, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 2654, 2654, 2654, 2834, 2876, 1005, 2385, 2385, 2385, 2385, 2385, 2385, 2385, 2385, 2385, 2385, 2883, 2827, 2993, 2993, 2993, 2654, 1005, 1005, 1005, 1005, 1007, 1007, 2385, 1007, 1007, 1007, 1007, 1007, 1007, 2884, 1007, 1007, 2476, 2476, 2476, 2476, 2476, 2476, 2476, 2476, 2476, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 2827, 3396, 2827, 5343, 2883, 1007, 2408, 2408, 2408, 2408, 2408, 2408, 2408, 2408, 2408, 2408, 2886, 3010, 2577, 3396, 5343, 2884, 1007, 1007, 1007, 1008, 1008, 2577, 1008, 1008, 1008, 1008, 1008, 1008, 2577, 1008, 1008, 2674, 2782, 2463, 2886, 2431, 2441, 2473, 2474, 2674, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 2410, 3010, 2410, 2463, 1008, 2431, 2441, 2473, 2474, 2782, 2463, 2410, 2431, 2441, 2473, 2463, 3185, 2431, 2441, 2473, 2474, 1008, 1008, 1008, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 5786, 2431, 2441, 1010, 2410, 2564, 2439, 1010, 1010, 1010, 1010, 1010, 1010, 2564, 2586, 2439, 2463, 2564, 2510, 3185, 2473, 2474, 2439, 2586, 2510, 2742, 2410, 2439, 2764, 2564, 2586, 2410, 2893, 1010, 1010, 1010, 1010, 1010, 1010, 1013, 1013, 2510, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 2742, 2891, 2439, 2764, 2893, 2794, 2456, 2471, 2472, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 2471, 2472, 2596, 2620, 2632, 1013, 2891, 2471, 2456, 2620, 2632, 2596, 2471, 2472, 2794, 2620, 2632, 2803, 2596, 2582, 2456, 3444, 1013, 1013, 1013, 1013, 1020, 1020, 2582, 1020, 1020, 1020, 1020, 1020, 1020, 2939, 1020, 1020, 2471, 2472, 2695, 2456, 2803, 2582, 2861, 2695, 2590, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 2456, 2590, 2939, 3444, 5579, 1020, 2477, 2477, 2477, 2477, 2477, 2477, 2477, 2477, 2477, 2861, 2590, 2695, 2863, 5579, 2863, 2555, 1020, 1020, 1020, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 1020, 1021, 1021, 2877, 1021, 1021, 1021, 1021, 1021, 1021, 2863, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 2621, 2877, 2824, 2555, 2487, 1021, 2621, 2621, 2788, 2788, 2824, 2555, 2621, 2487, 2487, 2487, 2487, 2487, 2487, 2487, 2487, 2487, 1021, 1021, 1021, 1025, 1025, 2555, 1025, 1025, 1025, 1025, 1025, 1025, 2487, 1025, 1025, 2703, 2951, 2788, 5791, 2499, 2703, 2813, 2951, 2592, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 2499, 2592, 5792, 2557, 3023, 1025, 2557, 2713, 2592, 2499, 2558, 2557, 2713, 2592, 2862, 2703, 2646, 2557, 2558, 2862, 2813, 2558, 1025, 1025, 1025, 1026, 1026, 2557, 1026, 1026, 1026, 1026, 1026, 1026, 2558, 1026, 1026, 2646, 2713, 2592, 2862, 2705, 3011, 2813, 3023, 2593, 1026, 1026, 1026, 1026, 1026, 1026, 1026, 1026, 2593, 2622, 2559, 2646, 1026, 2705, 2725, 2622, 2631, 3011, 2559, 2725, 2593, 2622, 2631, 2631, 2622, 2705, 2559, 5810, 2631, 1026, 1026, 1026, 1028, 1028, 2559, 1028, 1028, 1028, 1028, 1028, 1028, 2922, 1028, 1028, 2706, 2725, 2593, 3026, 2708, 2808, 2922, 2602, 2600, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 2602, 2600, 2706, 2560, 2607, 1028, 2708, 2602, 2758, 2881, 2560, 2560, 2602, 2607, 2706, 2560, 2600, 3026, 2708, 2808, 2607, 2708, 1028, 1028, 1028, 1029, 1029, 2560, 1029, 1029, 1029, 1029, 1029, 1029, 2888, 1029, 1029, 5811, 2602, 2758, 2758, 2881, 2707, 2881, 2808, 2890, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 2817, 2562, 2758, 2563, 1029, 2888, 2707, 2611, 2817, 2562, 2563, 2563, 2890, 2707, 2562, 2563, 2611, 2563, 2707, 2628, 2697, 1029, 1029, 1029, 1046, 2562, 3034, 2563, 2628, 2697, 2817, 2611, 2890, 1046, 1046, 1046, 1046, 1046, 1046, 1046, 1046, 1046, 1046, 2628, 2697, 2894, 2603, 2613, 2614, 1046, 1046, 1046, 1046, 1046, 1046, 2603, 2613, 2614, 3034, 2741, 2763, 3086, 2972, 2613, 2741, 2763, 2811, 2603, 2613, 2614, 2894, 1046, 3086, 2948, 2972, 1046, 1046, 1046, 1046, 1046, 1046, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 2741, 2763, 2871, 2603, 2613, 2614, 2811, 1048, 1048, 1048, 1048, 1048, 1048, 2618, 2618, 2618, 2618, 2618, 2618, 2618, 2618, 2618, 2950, 2630, 2948, 2871, 5818, 2811, 2871, 1048, 2810, 2626, 2630, 1048, 1048, 1048, 1048, 1048, 1048, 1070, 2626, 2716, 3472, 2717, 2630, 3472, 2950, 2626, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 2715, 2716, 2810, 2717, 3176, 2692, 1070, 1070, 1070, 1070, 1070, 1070, 2630, 2716, 2692, 2717, 2901, 2765, 2715, 2887, 2565, 2692, 2565, 2810, 2901, 2715, 2765, 2952, 2565, 2812, 2715, 2565, 1070, 1070, 1070, 1070, 1070, 1070, 2565, 2952, 3019, 2765, 3176, 2810, 2565, 1070, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 2887, 2952, 2836, 5819, 2812, 2887, 3019, 1072, 1072, 1072, 1072, 1072, 1072, 2634, 2634, 2634, 2634, 2634, 2634, 2634, 2634, 2634, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2841, 2836, 1072, 1072, 1072, 1072, 1072, 1072, 2812, 2629, 2836, 3045, 2977, 2978, 2718, 1072, 1098, 1098, 2629, 1098, 1098, 1098, 1098, 1098, 1098, 2629, 1098, 1098, 2847, 3081, 2629, 2841, 2718, 3045, 3045, 2847, 2761, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 2718, 2761, 2977, 2978, 2841, 1098, 2847, 2978, 2761, 3081, 2719, 2847, 2629, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 1098, 1098, 1098, 1098, 1099, 1099, 2719, 1099, 1099, 1099, 1099, 1099, 1099, 2719, 1099, 1099, 2906, 3082, 2719, 2814, 2720, 3008, 3082, 2927, 2906, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 2927, 3008, 2869, 3916, 3008, 1099, 2720, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2809, 2814, 2720, 2869, 3048, 2720, 1099, 1099, 1099, 1099, 1100, 1100, 2651, 1100, 1100, 1100, 1100, 1100, 1100, 2957, 1100, 1100, 3916, 2728, 2807, 2809, 2814, 3048, 2957, 2869, 2809, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 2733, 2943, 2728, 2638, 1100, 2638, 2638, 2638, 2638, 2638, 2638, 2638, 2638, 2638, 2728, 2807, 2809, 2882, 2733, 2902, 4216, 1100, 1100, 1100, 1100, 1107, 2638, 2727, 2943, 2734, 2733, 2639, 1107, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2744, 2997, 2902, 2727, 1107, 2734, 1107, 2997, 1107, 2807, 2727, 1107, 2639, 2882, 2807, 2727, 1107, 2734, 2744, 1107, 2882, 1107, 4216, 1107, 3180, 1107, 1107, 1107, 1110, 1110, 2744, 1110, 1110, 1110, 1110, 1110, 1110, 2640, 2940, 2640, 2640, 2640, 2640, 2640, 2640, 2640, 2640, 2640, 2913, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 3000, 2940, 3180, 2940, 2640, 1110, 3000, 2653, 2653, 2653, 2653, 2653, 2653, 2653, 2653, 2653, 3335, 2913, 3171, 3171, 3171, 3335, 1110, 1110, 1110, 1110, 1112, 1112, 2653, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1113, 2865, 3676, 2960, 5583, 3676, 2865, 1113, 2960, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 3273, 3273, 3273, 5583, 2955, 3398, 1113, 1114, 1114, 2865, 1114, 1114, 1114, 1114, 1114, 1114, 2960, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 2955, 2955, 3398, 2915, 2798, 1114, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2798, 3016, 2955, 2954, 4176, 4176, 2798, 1114, 1114, 1114, 1114, 1115, 1115, 2915, 1115, 1115, 1115, 1115, 1115, 1115, 2954, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 3189, 3189, 2954, 3016, 3181, 1115, 2731, 2731, 2731, 2731, 2731, 2731, 2731, 2731, 2731, 2828, 2933, 3284, 3284, 3284, 3189, 3341, 1115, 1115, 1115, 1115, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 3181, 2961, 3181, 2849, 3177, 2933, 1122, 1122, 1122, 1122, 1122, 1122, 2680, 2680, 2680, 2680, 2680, 2680, 2680, 2680, 2680, 2889, 2828, 2986, 2849, 2849, 2889, 2961, 2680, 2828, 2849, 3177, 1122, 1122, 1122, 1122, 1122, 1122, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 5832, 2986, 3341, 2889, 2680, 2998, 1124, 1124, 1124, 1124, 1124, 1124, 2732, 2732, 2732, 2732, 2732, 2732, 2732, 2732, 2732, 2746, 2746, 2746, 2746, 2746, 2746, 2746, 2746, 2746, 2998, 2736, 1124, 1124, 1124, 1124, 1124, 1124, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 2735, 2736, 2999, 2767, 2845, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 2767, 2736, 2982, 2845, 2736, 3202, 2735, 2767, 2935, 3012, 5840, 2982, 2767, 2735, 2845, 2999, 3202, 2935, 2735, 2845, 1127, 1127, 1127, 1127, 1127, 1127, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 2743, 3012, 2767, 2768, 2850, 2924, 1133, 1133, 1133, 1133, 1133, 1133, 2768, 2850, 2924, 3020, 2935, 2930, 2743, 2930, 3047, 2924, 2985, 3020, 2768, 2743, 2850, 2985, 2930, 3179, 2743, 2850, 1133, 1133, 1133, 1133, 1133, 1133, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 3047, 5897, 2768, 3179, 3105, 2985, 1136, 1136, 1136, 1136, 1136, 1136, 2747, 2747, 2747, 2747, 2747, 2747, 2747, 2747, 2747, 2748, 2748, 2748, 2748, 2748, 2748, 2748, 2748, 2748, 3105, 2958, 1136, 1136, 1136, 1136, 1136, 1136, 1144, 1144, 2958, 1144, 1144, 1144, 1144, 1144, 1144, 2958, 1144, 1144, 2755, 2755, 2755, 2755, 2755, 2755, 2755, 2755, 2755, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 3191, 3191, 3191, 3009, 5302, 1144, 2772, 2772, 2772, 2772, 2772, 2772, 2772, 2772, 2772, 3009, 3009, 3178, 3184, 3620, 5302, 3191, 1144, 1144, 1144, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 3908, 3340, 3620, 2779, 3908, 3178, 1149, 1149, 1149, 1149, 1149, 1149, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2870, 3184, 2774, 2870, 2774, 2774, 2774, 2774, 2774, 2774, 1149, 1149, 1149, 1149, 1149, 1149, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 2774, 2870, 3098, 3036, 2870, 2936, 2962, 1151, 1151, 1151, 1151, 1151, 1151, 3036, 2936, 2962, 3340, 2786, 2786, 3015, 2773, 2773, 2773, 2773, 2773, 2773, 2773, 2773, 2773, 2936, 2962, 3015, 3098, 1151, 1151, 1151, 1151, 1151, 1151, 1159, 1159, 2773, 1159, 1159, 1159, 1159, 1159, 1159, 2786, 1159, 1159, 3610, 5853, 5853, 2786, 3321, 3610, 3018, 3041, 3001, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 3001, 2941, 3018, 2973, 3001, 1159, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2973, 3041, 3321, 3113, 2987, 2937, 2846, 1159, 1159, 1159, 1159, 2941, 2664, 2987, 2937, 1159, 1160, 1160, 2941, 1160, 1160, 1160, 1160, 1160, 1160, 2846, 1160, 1160, 2987, 3113, 5902, 2664, 3025, 2976, 2973, 3183, 2846, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 2666, 2805, 2866, 2846, 2937, 1160, 3286, 2976, 2846, 2666, 2666, 2666, 2666, 2666, 2666, 2666, 2666, 2666, 3025, 2976, 2866, 3093, 1160, 1160, 1160, 1160, 3025, 2866, 2848, 3093, 2666, 2805, 2866, 3183, 3186, 2848, 3286, 2805, 3236, 5912, 1160, 1162, 1162, 2974, 1162, 1162, 1162, 1162, 1162, 1162, 2848, 1162, 1162, 2976, 3037, 2848, 5835, 2805, 3186, 2976, 2964, 3096, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 2964, 2974, 3096, 3037, 2806, 1162, 3418, 2964, 2974, 2974, 3236, 3037, 2964, 2806, 2806, 2806, 2806, 2806, 2806, 2806, 2806, 2806, 1162, 1162, 1162, 1171, 1171, 3418, 1171, 1171, 1171, 1171, 1171, 1171, 2806, 1171, 1171, 3097, 2964, 3097, 5916, 5835, 3384, 3097, 2816, 2983, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 2983, 3100, 1171, 3043, 1171, 3123, 3188, 2983, 1171, 3039, 3100, 1171, 1171, 1171, 3043, 2816, 1171, 3039, 2816, 3043, 2816, 1171, 1171, 1171, 2816, 3039, 3384, 2816, 2816, 2816, 3188, 3123, 2816, 2900, 2900, 2900, 2900, 2900, 2900, 2900, 2900, 3039, 3443, 1171, 1172, 1172, 3435, 1172, 1172, 1172, 1172, 1172, 1172, 2900, 1172, 1172, 2920, 2920, 2920, 2920, 2920, 2920, 2920, 2920, 2920, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 3040, 3094, 3160, 3094, 2815, 1172, 5854, 5854, 3040, 3094, 3443, 3160, 3435, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 1172, 1172, 1172, 1173, 1173, 3040, 1173, 1173, 1173, 1173, 1173, 1173, 2815, 1173, 1173, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 3182, 3402, 3051, 3592, 2971, 1173, 2971, 2971, 2971, 2971, 2971, 2971, 2874, 2874, 2874, 2874, 2874, 2874, 2874, 2874, 2874, 2874, 1173, 1173, 1173, 1174, 1174, 2971, 1174, 1174, 1174, 1174, 1174, 1174, 2874, 1174, 1174, 3309, 3182, 3051, 3402, 3592, 3052, 3621, 2971, 3182, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 3052, 3051, 3135, 5919, 5928, 1174, 3051, 3309, 3621, 3052, 2926, 1174, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 1174, 1174, 1174, 1174, 1175, 1175, 3135, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1176, 1176, 3151, 1176, 1176, 1176, 1176, 1176, 1176, 3403, 1176, 1176, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 3151, 3320, 5933, 5937, 3204, 1176, 2875, 2875, 2875, 2875, 2875, 2875, 2875, 2875, 2875, 2875, 3204, 3410, 3403, 3320, 3403, 4649, 1176, 1176, 1176, 1176, 1177, 1177, 2875, 1177, 1177, 1177, 1177, 1177, 1177, 3205, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 3434, 3434, 3320, 4649, 3410, 1177, 3205, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 3164, 3431, 3624, 3433, 3918, 3434, 1177, 1177, 1177, 1177, 1180, 1180, 2895, 1180, 1180, 1180, 1180, 1180, 1180, 3192, 1180, 1180, 3046, 3431, 3104, 3433, 3164, 3210, 3192, 3104, 3046, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 3210, 3918, 5837, 3624, 2928, 1180, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 3046, 3104, 4152, 3195, 5837, 4152, 1180, 1180, 1180, 1181, 1181, 3195, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1182, 3112, 3211, 3405, 3397, 3617, 3112, 3003, 3005, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 2929, 3003, 2929, 2929, 2929, 2929, 2929, 2929, 3005, 3211, 3198, 2929, 3101, 3003, 3112, 3003, 3095, 3095, 3198, 3209, 3005, 3101, 3095, 3214, 3095, 3095, 3005, 3209, 3101, 3397, 3617, 3214, 3405, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1184, 1184, 2975, 1184, 1184, 1184, 1184, 1184, 1184, 2965, 1184, 1184, 3437, 3248, 3438, 5940, 6073, 2979, 2965, 3439, 2975, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 3007, 2965, 1184, 2975, 1184, 4133, 3437, 3438, 1184, 2975, 3248, 1184, 1184, 1184, 3044, 2980, 1184, 2989, 3007, 2979, 2979, 1184, 1184, 1184, 3439, 3050, 2989, 2965, 3215, 3114, 3007, 3007, 3044, 2989, 3050, 3114, 2979, 2975, 2989, 3215, 3044, 3114, 4133, 1184, 1186, 1186, 2980, 1186, 1186, 1186, 1186, 1186, 1186, 2979, 1186, 1186, 3050, 3024, 3044, 3255, 6109, 3004, 3333, 2980, 2989, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 2990, 3004, 2980, 6114, 3115, 1186, 3218, 3004, 2980, 2990, 3115, 3106, 3342, 3255, 3218, 3024, 3115, 3333, 3006, 3004, 3106, 2990, 1186, 1186, 1186, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 3106, 3006, 3262, 3237, 3342, 3406, 1191, 1191, 1191, 1191, 1191, 1191, 2990, 3006, 3024, 3237, 3006, 3116, 3225, 3238, 3122, 3024, 3228, 3116, 3116, 3122, 3225, 3006, 3262, 3116, 3228, 3238, 1191, 1191, 1191, 1191, 1191, 1191, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 3134, 3399, 3406, 3122, 3165, 3134, 1194, 1194, 1194, 1194, 1194, 1194, 3150, 3165, 3270, 3240, 3281, 3150, 2970, 2970, 2970, 2970, 2970, 2970, 2970, 2970, 2970, 3240, 3165, 3399, 3240, 3134, 1194, 1194, 1194, 1194, 1194, 1194, 1196, 2970, 3270, 3163, 3281, 3150, 3976, 3290, 3163, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 2970, 3290, 3372, 3317, 4218, 3301, 3161, 1196, 1196, 1196, 1196, 1196, 1196, 3117, 3124, 3161, 3163, 3125, 3126, 3117, 3124, 3124, 3161, 3125, 3126, 3117, 3124, 3372, 3117, 3125, 3126, 3301, 3317, 1196, 1196, 1196, 1196, 1196, 1196, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 3317, 3324, 4218, 3976, 3383, 3168, 1200, 1200, 1200, 1200, 1200, 1200, 3127, 3128, 3168, 3129, 3136, 3368, 3127, 3128, 3128, 3129, 3136, 3136, 3127, 3128, 3168, 3129, 3136, 3383, 3129, 3324, 1200, 1200, 1200, 1200, 1200, 1200, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 3368, 3247, 3401, 6150, 3428, 3168, 3247, 1202, 1202, 1202, 1202, 1202, 1202, 3137, 3142, 3143, 3144, 3473, 3153, 3137, 3142, 3143, 3144, 3144, 3153, 3137, 3142, 3143, 3144, 3401, 3153, 3428, 3247, 1202, 1202, 1202, 1202, 1202, 1202, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 3254, 4195, 3473, 3436, 4195, 3254, 1212, 1212, 1212, 1212, 1212, 1212, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3436, 3254, 1212, 1212, 1212, 1212, 1212, 1212, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 3261, 3325, 3325, 3373, 3453, 3261, 3239, 1214, 1214, 1214, 1214, 1214, 1214, 3239, 3373, 3453, 4891, 6152, 3239, 3459, 2995, 2995, 2995, 2995, 2995, 2995, 2995, 2995, 2995, 3343, 3459, 3261, 3325, 1214, 1214, 1214, 1214, 1214, 1214, 1223, 1223, 2995, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 2996, 3593, 2996, 2996, 2996, 2996, 2996, 2996, 3343, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 3713, 3713, 3713, 6160, 4891, 1223, 3348, 2996, 2995, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3343, 3593, 3292, 3293, 1223, 1223, 1223, 1223, 1228, 1228, 1228, 1228, 1228, 1228, 1228, 1228, 1228, 1228, 3348, 3349, 3292, 3293, 3445, 2996, 1228, 1228, 1228, 1228, 1228, 1228, 3145, 3152, 3292, 3293, 3602, 3269, 3145, 3152, 3152, 3280, 3269, 3348, 3145, 3152, 3280, 3145, 3445, 6162, 3925, 3349, 1228, 1228, 1228, 1228, 1228, 1228, 1231, 1231, 1231, 1231, 1231, 1231, 1231, 1231, 1231, 1231, 3269, 3361, 3602, 3631, 3280, 3349, 1231, 1231, 1231, 1231, 1231, 1231, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3631, 3361, 1231, 1231, 1231, 1231, 1231, 1231, 1239, 1239, 1239, 1239, 1239, 1239, 1239, 1239, 1239, 3925, 3300, 3724, 3724, 3724, 3361, 3300, 1239, 1239, 1239, 1239, 1239, 1239, 3157, 3157, 3157, 3157, 3157, 3157, 3157, 3157, 3157, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3291, 3300, 1239, 1239, 1239, 1239, 1239, 1239, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 3303, 4019, 3327, 6177, 3167, 3319, 3523, 1240, 1240, 1240, 1240, 1240, 1240, 3167, 3291, 3002, 3442, 3291, 3303, 3327, 3167, 3002, 4019, 3319, 3350, 3167, 3347, 3002, 3327, 3346, 3303, 3291, 3523, 1240, 1240, 1240, 1240, 1240, 1240, 1247, 1247, 3002, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 3167, 3295, 6179, 3350, 4930, 3347, 3419, 3442, 3346, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 3319, 3455, 3331, 3295, 3507, 1247, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3295, 3347, 4930, 3295, 3331, 3419, 3350, 1247, 1247, 1247, 1247, 3455, 3173, 3331, 3507, 3346, 1247, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 3353, 3316, 3316, 3316, 3316, 3316, 3316, 1249, 1249, 1249, 1249, 1249, 1249, 3224, 3224, 3224, 3224, 3224, 3224, 3224, 3224, 3224, 3316, 3371, 3376, 3897, 3897, 3897, 3909, 3224, 3353, 3371, 3376, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 3174, 3224, 3174, 3174, 3174, 3174, 3174, 3174, 3489, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 3330, 3489, 3909, 6183, 3353, 1254, 3330, 3174, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3330, 4198, 3388, 3400, 4198, 1254, 1254, 1254, 1254, 3330, 3388, 3400, 3187, 3274, 3274, 3274, 3274, 3274, 3274, 3274, 3274, 3274, 1254, 3422, 1254, 1264, 1264, 3354, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 3285, 3285, 3285, 3285, 3285, 3285, 3285, 3285, 3285, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 3422, 3294, 3524, 3302, 3354, 1264, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 4084, 4084, 4084, 3351, 3294, 3492, 3302, 1264, 1264, 1264, 1264, 3294, 3190, 3302, 3492, 6186, 3294, 3524, 3302, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3440, 3354, 1264, 1268, 1268, 3351, 1268, 1268, 1268, 1268, 1268, 1268, 3203, 1268, 1268, 3289, 3289, 3289, 3289, 3289, 3289, 3289, 3289, 3289, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 3203, 3440, 3451, 3440, 3206, 1268, 3351, 3926, 3351, 4913, 3451, 4012, 3926, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 1268, 1268, 1268, 1269, 1269, 3623, 1269, 1269, 1269, 1269, 1269, 1269, 3206, 1269, 1269, 3305, 3305, 3305, 3305, 3305, 3305, 3305, 3305, 3305, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 4012, 3623, 4913, 3355, 1269, 3306, 3306, 3306, 3306, 3306, 3306, 3306, 3306, 3306, 3420, 3599, 3817, 3927, 4148, 4148, 4148, 1269, 1269, 1269, 1271, 1271, 3420, 1271, 1271, 1271, 1271, 1271, 1271, 3355, 1271, 1271, 3307, 3307, 3307, 3307, 3307, 3307, 3307, 3307, 3307, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 3927, 3420, 3817, 3599, 3310, 1271, 3310, 3310, 3310, 3310, 3310, 3310, 3310, 3310, 3310, 3356, 3675, 3355, 6187, 4909, 3998, 3356, 1271, 1271, 1271, 1272, 1272, 3310, 1272, 1272, 1272, 1272, 1272, 1272, 3749, 1272, 1272, 3506, 3675, 3358, 3550, 3362, 3363, 3359, 3506, 3356, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 3998, 4020, 3749, 3311, 1272, 3311, 3311, 3311, 3311, 3311, 3311, 3311, 3311, 3311, 3359, 3358, 3550, 3362, 3363, 3359, 4909, 1272, 1272, 1272, 1275, 1275, 3311, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 4020, 6189, 6196, 3352, 3358, 3363, 3357, 3364, 3359, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 3362, 3426, 3425, 3538, 3312, 1275, 3312, 3312, 3312, 3312, 3312, 3312, 3312, 3312, 3312, 3360, 3392, 3352, 3458, 3522, 3357, 3364, 1275, 1275, 1275, 1275, 3458, 3312, 3385, 3538, 3425, 3404, 1275, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 3392, 3426, 3522, 3360, 3364, 3392, 3754, 1276, 1276, 1276, 1276, 1276, 1276, 3352, 3357, 3425, 3385, 3385, 3462, 3357, 3352, 3479, 3392, 4221, 3360, 6198, 3462, 4221, 3426, 3479, 3754, 3494, 3404, 1276, 1276, 1276, 1276, 1276, 1276, 3404, 3494, 1276, 1278, 1278, 3360, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1279, 1279, 3370, 1279, 1279, 1279, 1279, 1279, 1279, 3427, 1279, 1279, 3370, 3370, 3370, 3370, 3370, 3370, 3370, 3370, 3650, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 3365, 3411, 3650, 3427, 3370, 1279, 3411, 3441, 3427, 3365, 3365, 3365, 3365, 3365, 3365, 3365, 3365, 3365, 3499, 3491, 3499, 3500, 1279, 1279, 1279, 1279, 3581, 3411, 3491, 3499, 3365, 6204, 1279, 1284, 1284, 3491, 1284, 1284, 1284, 1284, 1284, 1284, 3500, 1284, 1284, 3441, 3984, 3411, 3580, 3581, 4212, 3555, 3441, 3984, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 3496, 3430, 3555, 3502, 3430, 1284, 3430, 3500, 3509, 3496, 3430, 3497, 3502, 3430, 3430, 3430, 3496, 3580, 3430, 3509, 3497, 4212, 1284, 1284, 1284, 3432, 3432, 3432, 3432, 3432, 3432, 3432, 3432, 3432, 3432, 3497, 3555, 3759, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3432, 3759, 1284, 1288, 1288, 5949, 1288, 1288, 1288, 1288, 1288, 1288, 3452, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 3452, 3510, 3514, 3525, 3454, 1288, 4169, 4169, 4169, 3510, 3514, 5949, 3525, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 1288, 1288, 1288, 1293, 1293, 3567, 1293, 1293, 1293, 1293, 1293, 1293, 3454, 1293, 1293, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3579, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 3567, 3579, 4265, 3591, 3482, 1293, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3485, 3591, 4175, 4153, 3591, 6206, 4153, 4885, 1293, 1293, 1293, 1294, 1294, 3526, 1294, 1294, 1294, 1294, 1294, 1294, 4265, 1294, 1294, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 3486, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 4153, 4175, 3603, 3526, 1294, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3603, 3594, 3546, 3503, 4885, 6210, 3526, 1294, 1294, 1294, 1299, 1299, 3503, 1299, 1299, 1299, 1299, 1299, 1299, 3503, 1299, 1299, 3537, 4821, 3503, 3546, 3594, 3537, 3527, 3508, 3505, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 3508, 3505, 3527, 3566, 3546, 1299, 3528, 3582, 3566, 3508, 3597, 1299, 3503, 3505, 3997, 3537, 3582, 4821, 3597, 3527, 3628, 4867, 1299, 1299, 1299, 1300, 1300, 3529, 1300, 1300, 1300, 1300, 1300, 1300, 3566, 1300, 1300, 3528, 3628, 3505, 3528, 3530, 3540, 3628, 3590, 3529, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 4867, 3528, 3997, 3590, 3529, 1300, 3530, 3540, 3598, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3530, 3540, 3551, 3529, 1300, 1300, 1300, 3468, 3542, 3542, 3542, 3542, 3542, 3542, 3542, 3542, 3542, 3530, 3540, 3590, 3598, 3607, 3655, 1300, 1310, 3532, 3601, 3587, 4069, 3552, 3558, 3468, 3551, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 3532, 3531, 3587, 3607, 3655, 3558, 1310, 1310, 1310, 1310, 1310, 1310, 3532, 3601, 3587, 3532, 3552, 3558, 3911, 3531, 4086, 6213, 6214, 3551, 3911, 4069, 3531, 4086, 1310, 3532, 3556, 3531, 1310, 1310, 1310, 1310, 1310, 1310, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 3531, 3539, 3552, 3558, 3606, 3583, 1313, 1313, 1313, 1313, 1313, 1313, 3606, 3556, 3758, 3763, 3556, 3583, 3924, 3539, 3608, 3622, 3758, 3763, 3629, 3661, 3539, 3644, 3924, 3583, 3556, 3539, 1313, 1313, 1313, 1313, 1313, 1313, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 3556, 3539, 3575, 3608, 3622, 3629, 3661, 1321, 1321, 1321, 1321, 1321, 1321, 3543, 3543, 3543, 3543, 3543, 3543, 3543, 3543, 3543, 3645, 3644, 4350, 3575, 4192, 5857, 6216, 1321, 3645, 3644, 3584, 1321, 1321, 1321, 1321, 1321, 1321, 1333, 3659, 3584, 3608, 5857, 3584, 4350, 3645, 3644, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 3584, 3575, 4192, 3972, 3659, 3659, 1333, 1333, 1333, 1333, 1333, 1333, 3544, 3544, 3544, 3544, 3544, 3544, 3544, 3544, 3544, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3767, 3972, 1333, 1333, 1333, 1333, 1333, 1333, 3767, 3553, 3559, 3569, 3561, 3560, 4523, 1333, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 3554, 3553, 3559, 3569, 3561, 3560, 1336, 1336, 1336, 1336, 1336, 1336, 3560, 3553, 3559, 3569, 3561, 3560, 3554, 3561, 3660, 3780, 3553, 4337, 4337, 4337, 4523, 4644, 3660, 3780, 3554, 3557, 1336, 1336, 1336, 1336, 1336, 1336, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 3553, 3559, 3569, 3561, 3560, 3660, 3554, 1344, 1344, 1344, 1344, 1344, 1344, 3586, 4644, 3557, 3649, 3554, 3572, 3572, 3572, 3572, 3572, 3572, 3572, 3572, 3572, 3586, 3649, 3677, 3678, 3586, 3557, 1344, 1344, 1344, 1344, 1344, 1344, 3649, 3627, 3677, 3678, 3586, 3557, 3589, 1344, 1369, 1369, 3557, 1369, 1369, 1369, 1369, 1369, 1369, 3654, 1369, 1369, 3609, 3688, 3625, 3627, 3589, 3654, 3630, 3568, 3627, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 3589, 4094, 3609, 3589, 3625, 1369, 3679, 6232, 3654, 3568, 4094, 3688, 3630, 3679, 3609, 3625, 3568, 3630, 3679, 3630, 3785, 3568, 1369, 1369, 1369, 1369, 1370, 1370, 3785, 1370, 1370, 1370, 1370, 1370, 1370, 3662, 1370, 1370, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 3568, 3657, 3764, 3662, 1370, 4921, 4040, 3665, 3781, 3588, 3585, 4096, 3657, 3764, 3695, 3743, 3651, 3657, 4040, 3781, 4096, 1370, 1370, 1370, 1370, 1371, 1371, 3588, 1371, 1371, 1371, 1371, 1371, 1371, 3651, 1371, 1371, 3647, 3743, 3588, 3695, 3585, 3651, 3666, 3665, 3647, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 3585, 3666, 3632, 4921, 3790, 1371, 3665, 4104, 3647, 3664, 3666, 3665, 3790, 3702, 3585, 3710, 4104, 3632, 3664, 3632, 3588, 3774, 1371, 1371, 1371, 1371, 1372, 1372, 3632, 1372, 1372, 1372, 1372, 1372, 1372, 3632, 1372, 1372, 3658, 3702, 3664, 3710, 3633, 3668, 3786, 3721, 3774, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 3786, 3658, 3633, 3653, 1372, 3667, 3670, 3667, 3735, 3658, 4006, 3653, 3669, 3667, 3670, 3669, 3721, 3633, 3670, 3653, 3669, 1372, 1372, 1372, 1372, 1380, 3633, 3658, 3680, 3667, 3670, 3668, 1380, 3687, 3735, 3653, 3669, 3674, 3687, 3668, 3680, 4799, 6233, 3680, 4799, 3791, 1380, 3694, 1380, 3671, 1380, 4006, 3694, 1380, 3701, 3668, 3791, 3671, 1380, 3701, 3755, 1380, 3671, 1380, 3687, 1380, 3672, 1380, 1380, 1380, 1381, 3673, 3672, 3671, 3672, 1381, 3709, 3673, 3694, 3673, 3674, 3709, 1381, 3829, 3775, 3701, 3755, 3674, 3674, 3794, 3672, 3777, 3674, 3800, 3720, 3673, 1381, 3794, 1381, 3720, 1381, 3800, 6253, 1381, 3674, 3750, 3750, 3709, 1381, 3829, 3726, 1381, 3802, 1381, 3775, 1381, 3726, 1381, 1381, 1381, 1382, 3777, 3726, 3802, 3782, 3720, 3750, 1382, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3734, 3727, 3830, 3728, 1382, 3734, 1382, 3727, 1382, 3728, 3728, 1382, 3782, 3727, 4136, 3728, 1382, 4136, 3729, 1382, 3830, 1382, 3787, 1382, 3729, 1382, 1382, 1382, 1382, 1383, 3729, 3734, 3830, 3729, 4136, 3806, 1383, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3806, 3787, 3886, 3736, 1383, 3805, 1383, 1383, 1383, 3736, 3736, 1383, 3737, 3805, 3809, 3736, 1383, 3921, 3737, 1383, 3776, 1383, 3809, 1383, 3737, 1383, 1383, 1383, 1384, 3776, 3776, 3776, 3886, 3894, 3921, 1384, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3912, 3912, 3828, 6018, 1384, 3776, 1384, 3828, 1384, 3949, 1384, 1384, 4278, 3921, 3894, 3893, 1384, 3949, 4278, 1384, 3893, 1384, 6018, 1384, 4278, 1384, 1384, 1384, 1385, 3831, 3832, 3912, 3837, 3828, 3951, 1385, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3951, 3893, 3831, 3832, 1385, 3837, 1385, 3913, 1385, 3831, 4191, 1385, 3837, 3913, 3831, 3832, 1385, 3837, 3832, 1385, 3953, 1385, 3920, 1385, 4087, 1385, 1385, 1385, 1386, 3838, 3839, 4087, 3840, 3913, 4191, 1386, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3953, 3929, 3838, 3839, 1386, 3840, 1386, 3920, 1386, 3929, 4850, 1386, 3840, 4850, 3838, 3839, 1386, 3840, 1386, 1386, 4145, 1386, 3934, 1386, 3931, 1386, 1386, 1386, 1387, 3841, 3846, 3929, 3931, 3970, 3744, 1387, 3744, 3744, 3744, 3744, 3744, 3744, 3744, 3744, 3744, 3847, 4145, 3841, 3846, 1387, 3906, 1387, 3934, 1387, 3931, 3846, 1387, 3744, 3970, 3841, 3846, 1387, 3841, 3847, 1387, 4166, 1387, 3906, 1387, 3956, 1387, 1387, 1387, 1387, 1388, 3847, 3852, 3956, 3854, 3934, 3745, 1388, 3745, 3745, 3745, 3745, 3745, 3745, 3745, 3745, 3745, 4166, 3906, 3957, 3852, 1388, 3854, 1388, 6254, 1388, 4027, 3960, 1388, 3745, 3957, 6325, 3852, 1388, 3854, 3960, 1388, 3854, 1388, 3933, 1388, 4018, 1388, 1388, 1388, 1389, 3853, 3859, 4027, 3860, 3985, 3746, 1389, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 4018, 3935, 3853, 3859, 1389, 3860, 1389, 3933, 1389, 3853, 3859, 1389, 3746, 3985, 3853, 3859, 1389, 3860, 1389, 1389, 4018, 1389, 3940, 1389, 4134, 1389, 1389, 1389, 1390, 3866, 3867, 3935, 3868, 3937, 3747, 1390, 3747, 3747, 3747, 3747, 3747, 3747, 3747, 3747, 3747, 3933, 4134, 3866, 3867, 1390, 3868, 1390, 3940, 1390, 3935, 3867, 1390, 3747, 3986, 3866, 3867, 1390, 3868, 3937, 1390, 3868, 1390, 4910, 1390, 3986, 1390, 1390, 1390, 1390, 1391, 3751, 3751, 3751, 3751, 3751, 3751, 3751, 3751, 3751, 4635, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3752, 3940, 3942, 3751, 3937, 1391, 3873, 3874, 6020, 3996, 3941, 4635, 1391, 3752, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 4021, 3873, 3874, 1391, 6020, 1391, 4910, 1391, 3873, 3942, 1391, 3996, 3753, 3873, 3874, 1391, 3936, 3941, 1391, 3882, 1391, 4206, 1391, 4021, 1391, 1391, 1391, 1392, 3882, 3882, 3882, 3882, 3882, 3882, 1392, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3932, 3942, 3936, 3938, 1392, 3882, 1392, 3801, 1392, 3932, 3932, 1392, 3983, 3941, 3977, 3887, 1392, 3971, 4206, 1392, 3983, 1392, 6326, 1392, 3936, 1392, 1392, 1392, 1393, 4008, 3932, 3801, 4013, 3938, 4008, 1393, 3849, 3849, 3849, 3849, 3849, 3849, 3849, 3849, 3849, 3977, 3887, 3971, 3977, 1393, 3971, 1393, 3989, 1393, 3887, 4008, 1393, 4013, 4038, 6328, 3989, 1393, 3977, 3887, 1393, 3938, 1393, 3938, 1393, 4038, 1393, 1393, 1393, 1394, 3850, 3850, 3850, 3850, 3850, 3850, 3850, 3850, 3850, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 6329, 4015, 3900, 1394, 3900, 3900, 3900, 3900, 3900, 3900, 1394, 3862, 3862, 3862, 3862, 3862, 3862, 3862, 3862, 3862, 4024, 4024, 4046, 4051, 1394, 3900, 1394, 4031, 1394, 4028, 4028, 1394, 4638, 4046, 4051, 4031, 1394, 4015, 3943, 1394, 4024, 1394, 4015, 1394, 3943, 1394, 1394, 1394, 1396, 1396, 4028, 1396, 1396, 1396, 1396, 1396, 1396, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 4016, 4075, 3943, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 5603, 4638, 4075, 4022, 4489, 1396, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 4016, 4017, 4489, 4246, 4041, 4047, 4017, 1396, 1396, 1396, 1396, 1397, 1397, 4022, 1397, 1397, 1397, 1397, 1397, 1397, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 4041, 4047, 4017, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 5603, 4261, 4261, 4100, 1397, 3877, 3877, 3877, 3877, 3877, 3877, 3877, 3877, 3877, 4100, 4246, 4261, 4530, 6335, 4034, 4246, 1397, 1397, 1397, 1397, 1399, 1399, 4034, 1399, 1399, 1399, 1399, 1399, 1399, 4640, 1399, 1399, 3878, 3878, 3878, 3878, 3878, 3878, 3878, 3878, 3878, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 4026, 4026, 4026, 4530, 4118, 1399, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 4118, 4463, 4463, 4463, 4640, 4045, 4026, 1399, 1399, 1399, 1399, 1400, 1400, 4045, 1400, 1400, 1400, 1400, 1400, 1400, 5604, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 4343, 4343, 4262, 4188, 4262, 1400, 3898, 3898, 3898, 3898, 3898, 3898, 3898, 3898, 3898, 4188, 4262, 3980, 6336, 4107, 4343, 3939, 1400, 1400, 1400, 1400, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 4853, 5604, 4188, 4853, 4107, 4050, 1403, 1403, 1403, 1403, 1403, 1403, 3980, 4050, 4054, 3939, 4061, 4064, 4068, 4072, 4079, 4200, 4054, 4101, 4061, 4064, 4068, 4072, 4079, 3980, 4107, 4101, 1403, 1403, 1403, 1403, 1403, 1403, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 4111, 4112, 4190, 4200, 4199, 3939, 1406, 1406, 1406, 1406, 1406, 1406, 3939, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4116, 4122, 4277, 4111, 4112, 4190, 4199, 4211, 4116, 4122, 1406, 1406, 1406, 1406, 1406, 1406, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 4144, 4334, 4137, 4277, 4220, 4144, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 4132, 4193, 4196, 4211, 4223, 4334, 4894, 3966, 4132, 4144, 4137, 1408, 1408, 1408, 1408, 1408, 1408, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 4137, 4220, 4193, 4196, 3966, 4089, 1412, 1412, 1412, 1412, 1412, 1412, 4089, 4102, 4007, 4106, 4354, 4213, 4204, 4227, 4089, 4007, 4102, 4223, 4106, 4213, 4007, 4354, 4894, 4102, 4525, 4106, 1412, 1412, 1412, 1412, 1412, 1412, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 4007, 4204, 4154, 4345, 4345, 4345, 4007, 1414, 1414, 1414, 1414, 1414, 1414, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4227, 4525, 4345, 4871, 4204, 4227, 4871, 4060, 4227, 4138, 4154, 1414, 1414, 1414, 1414, 1414, 1414, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 4355, 4157, 4363, 4097, 4060, 4098, 1424, 1424, 1424, 1424, 1424, 1424, 4097, 4138, 4098, 4224, 4255, 4154, 4165, 4097, 4353, 4138, 6306, 4165, 4097, 4355, 4098, 4363, 4353, 6306, 4138, 4157, 1424, 1424, 1424, 1424, 1424, 1424, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 4205, 4184, 4165, 4097, 4108, 4098, 4109, 1426, 1426, 1426, 1426, 1426, 1426, 4108, 4714, 4109, 4361, 4224, 4157, 4184, 4243, 4255, 4109, 4714, 4361, 4224, 4255, 4109, 4108, 4387, 4205, 4184, 4647, 1426, 1426, 1426, 1426, 1426, 1426, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 4159, 4243, 4392, 4110, 4109, 4387, 1434, 1434, 1434, 1434, 1434, 1434, 4110, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4177, 4243, 4110, 4647, 4536, 4392, 4243, 5166, 4222, 4159, 1434, 1434, 1434, 1434, 1434, 1434, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 4159, 4189, 4110, 4362, 4177, 4263, 1437, 1437, 1437, 1437, 1437, 1437, 4263, 4189, 4362, 4366, 4177, 4159, 4536, 4263, 5166, 4189, 4179, 4366, 4151, 4222, 4151, 4151, 4151, 4151, 4151, 4151, 1437, 1437, 1437, 1437, 1437, 1437, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 4151, 4434, 4222, 4178, 4178, 4367, 4179, 1445, 1445, 1445, 1445, 1445, 1445, 4434, 6318, 4178, 4367, 4151, 4179, 4386, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 4178, 4386, 6318, 4179, 1445, 1445, 1445, 1445, 1445, 1445, 1446, 1446, 3899, 1446, 1446, 1446, 1446, 1446, 1446, 4622, 1446, 1446, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 4248, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 4472, 4472, 4472, 4436, 3982, 1446, 3904, 3904, 3904, 3904, 3904, 3904, 3904, 3904, 3904, 4436, 4181, 4182, 4436, 4449, 4197, 4622, 1446, 1446, 1446, 1446, 4197, 3904, 1446, 1447, 1447, 4449, 1447, 1447, 1447, 1447, 1447, 1447, 5149, 1447, 1447, 4197, 4181, 4182, 4248, 4641, 4158, 4181, 4182, 4248, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 4156, 3928, 4181, 4182, 4248, 1447, 4023, 4023, 4023, 4023, 4023, 4023, 4023, 4023, 4023, 4641, 4181, 4182, 4156, 5149, 4158, 4391, 1447, 1447, 1447, 1447, 3928, 4023, 4158, 3928, 4156, 3928, 4391, 4370, 4397, 3928, 4247, 4158, 3928, 3928, 3928, 4370, 4276, 3928, 1447, 1462, 1462, 4276, 1462, 1462, 1462, 1462, 1462, 1462, 4158, 1462, 1462, 5248, 4156, 4397, 4259, 4481, 4481, 4481, 4156, 4259, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 4276, 4259, 5752, 4253, 5752, 1462, 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4247, 4631, 4648, 6341, 5248, 4247, 4247, 1462, 1462, 1462, 1463, 1463, 4025, 1463, 1463, 1463, 1463, 1463, 1463, 4413, 1463, 1463, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 4418, 4155, 4253, 4631, 4648, 1463, 4413, 4253, 4253, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4385, 4155, 4390, 4591, 1463, 1463, 1463, 4418, 4385, 4591, 4390, 4333, 4039, 4155, 4155, 4172, 4333, 4172, 4172, 4172, 4172, 4172, 4172, 1463, 5049, 4244, 6305, 5049, 1463, 1470, 1470, 4039, 1470, 1470, 1470, 1470, 1470, 1470, 4172, 1470, 1470, 4395, 4333, 4532, 6305, 6342, 4505, 4155, 4532, 4395, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 4382, 4382, 4382, 4382, 4382, 1470, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4172, 4244, 1470, 4400, 4505, 4244, 4382, 1470, 1470, 1470, 4244, 4400, 4171, 4245, 4185, 1470, 4183, 4396, 4433, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 6347, 4396, 1470, 1471, 1471, 4185, 1471, 1471, 1471, 1471, 1471, 1471, 4174, 1471, 1471, 4186, 4433, 4185, 4404, 4171, 4183, 4404, 4512, 4185, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 4185, 4183, 4186, 4245, 5293, 1471, 4249, 4245, 4401, 4411, 4183, 4201, 4245, 4201, 4186, 4183, 4404, 1471, 4643, 4401, 4411, 4512, 1471, 1471, 1471, 4250, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4252, 4642, 4186, 5293, 6348, 4643, 4201, 4886, 4187, 1471, 1472, 1472, 4150, 1472, 1472, 1472, 1472, 1472, 1472, 4249, 1472, 1472, 4531, 4249, 4642, 4518, 4187, 4531, 4249, 4150, 4249, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 4187, 4865, 4201, 4531, 4250, 1472, 4280, 4865, 4187, 4250, 4252, 4256, 4280, 4250, 4252, 4252, 4518, 4518, 4280, 4252, 4407, 4280, 1472, 1472, 1472, 1472, 1473, 1473, 4407, 1473, 1473, 1473, 1473, 1473, 1473, 4886, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 4279, 6353, 4256, 4410, 4256, 1473, 4279, 4279, 4416, 4256, 4417, 4410, 4279, 4256, 4256, 4916, 4416, 4422, 4920, 4916, 4256, 4417, 1473, 1473, 1473, 1473, 1474, 1474, 4422, 1474, 1474, 1474, 1474, 1474, 1474, 4513, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 4653, 4653, 6313, 6313, 4713, 1474, 4513, 4264, 4264, 4264, 4264, 4264, 4264, 4264, 4264, 4264, 4713, 4960, 4960, 4960, 4653, 4920, 1474, 1474, 1474, 1474, 1478, 1478, 4264, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1479, 4340, 4862, 4340, 4340, 4340, 4340, 4340, 4340, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 4042, 5295, 4516, 4969, 4969, 4969, 4340, 4862, 4535, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4535, 4285, 6071, 4421, 5295, 6071, 4428, 4285, 4285, 4516, 4257, 4421, 4042, 4285, 4428, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 4203, 4526, 4203, 4560, 4915, 4257, 1488, 1488, 1488, 1488, 1488, 1488, 4257, 4286, 4560, 4287, 4288, 4257, 4543, 4286, 4257, 4287, 4288, 4288, 4918, 4286, 4563, 4287, 4288, 4257, 4203, 4526, 1488, 1488, 1488, 1488, 1488, 1488, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 4543, 4425, 4915, 4563, 4425, 4553, 1490, 1490, 1490, 1490, 1490, 1490, 4295, 4553, 4289, 4527, 4203, 4569, 4295, 4260, 4289, 4203, 4918, 4543, 4295, 4260, 4289, 4260, 4491, 4289, 4425, 4541, 1490, 1490, 1490, 1490, 1490, 1490, 1493, 4260, 4527, 4869, 4569, 4260, 4911, 4527, 4491, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 4634, 4491, 5170, 4604, 4541, 4556, 1493, 1493, 1493, 1493, 1493, 1493, 4294, 4556, 4300, 4301, 4869, 4308, 4294, 4294, 4300, 4301, 4301, 4308, 4294, 4541, 4300, 4301, 4604, 4308, 4634, 4911, 1493, 1493, 1493, 1493, 1493, 1493, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 4519, 4519, 5170, 4888, 6354, 4606, 1499, 1499, 1499, 1499, 1499, 1499, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4606, 4519, 1499, 1499, 1499, 1499, 1499, 1499, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 4888, 4639, 4633, 6362, 4633, 4887, 1502, 1502, 1502, 1502, 1502, 1502, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4310, 4310, 4310, 4310, 4310, 4310, 4310, 4310, 4310, 4633, 4639, 1502, 1502, 1502, 1502, 1502, 1502, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 4887, 4675, 4890, 6363, 4568, 4674, 1510, 1510, 1510, 1510, 1510, 1510, 4302, 4307, 4435, 4568, 4314, 4322, 4302, 4307, 4307, 4435, 4314, 4322, 4302, 4307, 4435, 4302, 4314, 4322, 4674, 4675, 1510, 1510, 1510, 1510, 1510, 1510, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 4890, 4677, 4978, 4978, 4978, 4890, 1513, 1513, 1513, 1513, 1513, 1513, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4490, 4677, 1513, 1513, 1513, 1513, 1513, 1513, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 4906, 4534, 4490, 4646, 5142, 5142, 5142, 1521, 1521, 1521, 1521, 1521, 1521, 4315, 4490, 4316, 4321, 4448, 4534, 4315, 4315, 4316, 4321, 4321, 4448, 4315, 4534, 4316, 4321, 4448, 4316, 4490, 4906, 1521, 1521, 1521, 1521, 1521, 1521, 1522, 1522, 4646, 1522, 1522, 1522, 1522, 1522, 1522, 4646, 1522, 1522, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 4655, 4655, 4655, 4801, 5304, 1522, 1522, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4801, 5304, 6411, 4567, 4801, 4655, 1522, 1522, 1522, 1523, 1523, 4567, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 5172, 5413, 5413, 5413, 5172, 6416, 1532, 1532, 1532, 1532, 1532, 1532, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4493, 4499, 1532, 1532, 1532, 1532, 1532, 1532, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 4538, 4493, 4499, 4682, 4573, 5155, 4603, 1534, 1534, 1534, 1534, 1534, 1534, 4493, 4499, 4573, 4493, 4603, 4610, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4682, 4610, 4538, 5155, 6426, 1534, 1534, 1534, 1534, 1534, 1534, 1542, 4339, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 4521, 4521, 4687, 4632, 4538, 4632, 1542, 1542, 1542, 1542, 1542, 1542, 4376, 4376, 4376, 4376, 4376, 4376, 4376, 4376, 4376, 4544, 4864, 4539, 4876, 4650, 4521, 4687, 4376, 4632, 4542, 4521, 1542, 1542, 1542, 1542, 1542, 1542, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 4562, 4539, 4650, 4659, 4544, 4376, 4539, 1546, 1546, 1546, 1546, 1546, 1546, 4542, 4659, 4864, 5597, 4876, 4562, 6430, 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4544, 4562, 4539, 5171, 1546, 1546, 1546, 1546, 1546, 1546, 1550, 1550, 4344, 1550, 1550, 1550, 1550, 1550, 1550, 4542, 1550, 1550, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 5597, 4652, 6433, 5171, 4664, 1550, 4346, 4346, 4346, 4346, 4346, 4346, 4346, 4346, 4346, 4664, 4721, 4540, 4537, 4741, 4492, 4498, 1550, 1550, 1550, 4652, 4681, 4346, 4348, 4348, 4348, 4348, 4348, 4348, 4348, 4348, 4348, 4681, 4492, 4498, 4741, 4721, 4750, 1550, 1552, 4492, 4498, 4540, 4537, 4348, 4492, 4498, 4529, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 4770, 6442, 6447, 4798, 4741, 4750, 4540, 1552, 1552, 1552, 1552, 1552, 1552, 4412, 4412, 4412, 4412, 4412, 4412, 4412, 4412, 4412, 4537, 4529, 4549, 4770, 4540, 4537, 4798, 4412, 4880, 4529, 4549, 1552, 1552, 1552, 1552, 1552, 1552, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 4572, 4645, 4412, 4549, 4817, 5565, 4546, 4686, 4572, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 4546, 4546, 4686, 4880, 4691, 1559, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4691, 4998, 4645, 4817, 4645, 4546, 5565, 1559, 1559, 1559, 1559, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 4817, 1561, 1561, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 4576, 4583, 4586, 4602, 4609, 1561, 6451, 4998, 4576, 4583, 4586, 4602, 4609, 4349, 4349, 4349, 4349, 4349, 4349, 4349, 4349, 4349, 1561, 1561, 1561, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 4349, 1562, 1562, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 5520, 5520, 5520, 4702, 1562, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4702, 5540, 5540, 5540, 5307, 6454, 4822, 1562, 1562, 1562, 1566, 1566, 4381, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 4822, 5307, 4822, 6461, 4706, 1566, 4485, 4485, 4485, 4485, 4485, 4485, 4485, 4485, 4485, 4706, 4746, 4868, 4613, 5001, 5556, 5557, 1566, 1566, 1566, 1566, 4613, 4485, 4503, 4503, 4503, 4503, 4503, 4503, 4503, 4503, 4503, 4746, 4994, 5308, 6462, 4658, 4868, 5001, 4994, 4590, 1566, 1577, 1577, 4658, 1577, 1577, 1577, 1577, 1577, 1577, 4548, 1577, 1577, 5508, 5556, 5308, 5557, 4746, 4895, 4548, 4548, 4548, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 4590, 4663, 4667, 4737, 4506, 1577, 4596, 5508, 4590, 4663, 4667, 4548, 4737, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 1577, 1577, 1577, 1578, 1578, 4718, 1578, 1578, 1578, 1578, 1578, 1578, 4506, 1578, 1578, 4596, 4718, 4895, 5003, 5003, 5003, 4596, 4895, 6507, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 4596, 4680, 4685, 4507, 1578, 5559, 6508, 5003, 4852, 4680, 4685, 4863, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 1578, 1578, 1578, 1583, 1583, 4727, 1583, 1583, 1583, 1583, 1583, 1583, 4507, 1583, 1583, 4690, 4727, 4852, 6513, 5559, 4863, 5598, 6514, 4690, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 4694, 4700, 4705, 4743, 4508, 1583, 6524, 5562, 4694, 4700, 4705, 1583, 4743, 4508, 4508, 4508, 4508, 4508, 4508, 4508, 4508, 4508, 1583, 1583, 1583, 1585, 1585, 4751, 1585, 1585, 1585, 1585, 1585, 1585, 4508, 1585, 1585, 4709, 4751, 5309, 5309, 5562, 4917, 4768, 4776, 4709, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 4528, 4768, 4776, 5598, 5007, 1585, 5012, 5309, 6553, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4717, 4725, 4728, 4766, 1585, 1585, 1585, 4545, 4717, 4725, 4728, 4766, 4528, 5012, 4917, 5007, 4545, 4545, 4545, 4545, 4545, 4545, 4545, 4545, 4545, 1585, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 5581, 5593, 4545, 4917, 4739, 4747, 4745, 1586, 1586, 1586, 1586, 1586, 1586, 4739, 4747, 4745, 4753, 4756, 4550, 5839, 4739, 4676, 4745, 5581, 5067, 4753, 4756, 4550, 4550, 4747, 4676, 4676, 4676, 1586, 1586, 1586, 1586, 1586, 1586, 1588, 1588, 4796, 1588, 1588, 1588, 1588, 1588, 1588, 4550, 1588, 1588, 4676, 4796, 5023, 5067, 6555, 5584, 5839, 5593, 4754, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 4754, 4769, 4759, 4547, 1588, 6630, 6683, 4754, 5584, 4769, 5023, 4759, 4547, 4547, 4547, 4547, 4547, 4547, 4547, 4547, 4547, 1588, 1588, 1588, 1589, 1589, 4759, 1589, 1589, 1589, 1589, 1589, 1589, 4547, 1589, 1589, 4730, 4730, 4730, 4730, 4730, 4730, 4730, 4730, 4730, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 4774, 4780, 4786, 4564, 5313, 1589, 6279, 6688, 4774, 4780, 4786, 6279, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4790, 1589, 1589, 1589, 6698, 6012, 4829, 5313, 4790, 1589, 1591, 1591, 4564, 1591, 1591, 1591, 1591, 1591, 1591, 4829, 1591, 1591, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 4749, 4803, 4829, 4823, 5028, 1591, 5544, 5844, 6012, 4749, 4582, 4582, 4582, 4582, 4582, 4582, 4582, 4582, 4582, 4803, 4800, 4749, 1591, 1591, 1591, 1591, 4582, 6085, 5844, 5028, 6085, 4803, 4802, 4823, 1591, 1592, 1592, 4800, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 4749, 4803, 5544, 4582, 4802, 4800, 4860, 4861, 4870, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 4802, 4870, 4860, 4861, 4823, 1592, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4825, 5055, 4802, 4908, 5680, 5680, 5680, 1592, 1592, 1592, 1592, 4908, 4651, 4654, 4654, 4654, 4654, 4654, 4654, 4654, 4654, 4654, 4860, 4919, 5833, 4825, 5055, 6010, 6702, 1592, 4825, 1592, 1596, 1596, 4654, 1596, 1596, 1596, 1596, 1596, 1596, 4824, 1596, 1596, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 4760, 4931, 6010, 5833, 4825, 1596, 4758, 4932, 4826, 4760, 4846, 4824, 4919, 4931, 4932, 4758, 4760, 5599, 5945, 4932, 4919, 5850, 1596, 1596, 1596, 1605, 1605, 4758, 1605, 1605, 1605, 1605, 1605, 1605, 4762, 1605, 1605, 4824, 4826, 4854, 4846, 5945, 4854, 4762, 4933, 4824, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 4758, 4854, 4762, 4933, 6277, 1605, 4933, 5599, 5850, 4858, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4826, 4826, 4846, 1605, 1605, 1605, 1605, 4701, 4858, 4762, 1605, 1608, 1608, 4872, 1608, 1608, 1608, 1608, 1608, 1608, 4858, 1608, 1608, 4859, 4882, 6277, 4874, 6705, 4946, 4804, 4748, 4701, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 4748, 4946, 4859, 6713, 4872, 1608, 5002, 4748, 4804, 4882, 4872, 1608, 4748, 4882, 4859, 4804, 4858, 4874, 5002, 5165, 4804, 6718, 1608, 1608, 1608, 1612, 1612, 4805, 1612, 1612, 1612, 1612, 1612, 1612, 5010, 1612, 1612, 4804, 4748, 5160, 5605, 4811, 5010, 5011, 5165, 4805, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 5011, 4874, 1612, 4805, 1612, 4811, 4805, 5015, 1612, 4757, 4761, 1612, 1612, 1612, 5160, 5015, 1612, 4811, 4757, 4761, 4805, 1612, 1612, 1612, 5018, 4757, 4761, 5022, 4810, 5026, 4757, 4761, 5018, 4929, 4811, 5605, 5133, 5026, 5022, 4929, 6320, 4830, 5133, 1612, 1613, 1613, 4810, 1613, 1613, 1613, 1613, 1613, 1613, 4810, 1613, 1613, 4757, 4761, 4810, 5683, 4830, 4855, 4929, 4875, 4855, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 4830, 4855, 6320, 4810, 5606, 1613, 4813, 4813, 4813, 4813, 4813, 4813, 4813, 4813, 4813, 4855, 5027, 4830, 4875, 5683, 6722, 4875, 1613, 1613, 1613, 1614, 1614, 5027, 1614, 1614, 1614, 1614, 1614, 1614, 4830, 1614, 1614, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 5606, 6725, 4875, 5852, 5050, 1614, 4815, 4815, 4815, 4815, 4815, 4815, 4815, 4815, 4815, 4980, 5050, 4883, 6885, 5167, 5208, 4980, 1614, 1614, 1614, 1615, 1615, 4980, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 4827, 5216, 4828, 5221, 5852, 5070, 4857, 5167, 5208, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 4832, 4831, 4827, 5031, 4828, 1615, 6887, 4883, 4857, 5264, 5216, 5031, 5221, 4922, 4827, 4883, 4828, 4827, 4832, 5070, 4857, 4988, 1615, 1615, 1615, 1615, 1627, 4988, 4856, 4857, 4832, 4883, 4831, 4988, 5264, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 4828, 4856, 5173, 4827, 4831, 4828, 1627, 1627, 1627, 1627, 1627, 1627, 6309, 4856, 4831, 6309, 4856, 4945, 4922, 4832, 4884, 4831, 4831, 4922, 4945, 5303, 4922, 4856, 1627, 4945, 5303, 5173, 1627, 1627, 1627, 1627, 1627, 1627, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 4833, 4839, 4840, 5032, 5303, 5035, 5054, 1629, 1629, 1629, 1629, 1629, 1629, 5035, 5032, 4981, 4884, 5054, 4833, 4839, 4840, 4981, 4981, 5152, 4884, 4833, 4839, 4981, 5292, 1629, 4833, 4839, 4840, 1629, 1629, 1629, 1629, 1629, 1629, 1637, 4884, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 5272, 5004, 5152, 6904, 6554, 5292, 1637, 1637, 1637, 1637, 1637, 1637, 4834, 4833, 4839, 4840, 4842, 4842, 4842, 4842, 4842, 4842, 4842, 4842, 4842, 5272, 5157, 5157, 5075, 5193, 4834, 5004, 1637, 1637, 1637, 1637, 1637, 1637, 1654, 6554, 5193, 5077, 4834, 5158, 5004, 4834, 5075, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 5157, 5075, 5077, 5157, 5042, 5045, 1654, 1654, 1654, 1654, 1654, 1654, 5042, 5045, 5077, 5301, 5158, 5077, 5858, 4834, 4843, 4843, 4843, 4843, 4843, 4843, 4843, 4843, 4843, 5168, 5053, 5169, 1654, 1654, 1654, 1654, 1654, 1654, 5053, 5858, 5169, 5168, 4907, 5301, 5198, 1654, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 5198, 5776, 5776, 5776, 5782, 5782, 5782, 1656, 1656, 1656, 1656, 1656, 1656, 4844, 4844, 4844, 4844, 4844, 4844, 4844, 4844, 4844, 5128, 5128, 5128, 5128, 5128, 5128, 5215, 5220, 4907, 5128, 4907, 1656, 1656, 1656, 1656, 1656, 1656, 5215, 5220, 4907, 6905, 5128, 6023, 6023, 1656, 1664, 4907, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 5161, 5176, 5788, 5788, 5788, 6023, 1664, 1664, 1664, 1664, 1664, 1664, 4961, 4961, 4961, 4961, 4961, 4961, 4961, 4961, 4961, 4970, 4970, 4970, 4970, 4970, 4970, 4970, 4970, 4970, 5161, 5176, 1664, 1664, 1664, 1664, 1664, 1664, 1686, 5225, 5415, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 5225, 5175, 5415, 6314, 5176, 6314, 5161, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1689, 1689, 5175, 1689, 1689, 1689, 1689, 1689, 1689, 5393, 1689, 1689, 4979, 4979, 4979, 4979, 4979, 4979, 4979, 4979, 4979, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 4982, 5175, 6924, 5236, 4987, 1689, 4982, 5393, 1689, 5192, 4987, 4987, 4982, 5197, 5236, 4982, 4987, 5192, 5062, 5600, 6898, 5197, 1689, 1689, 1689, 1689, 1690, 1690, 5062, 1690, 1690, 1690, 1690, 1690, 1690, 5062, 1690, 1690, 4990, 4990, 4990, 4990, 4990, 4990, 4990, 4990, 4990, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 5416, 5201, 5184, 5062, 4851, 1690, 5856, 6898, 5184, 5201, 5600, 1690, 5416, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 1690, 1690, 1690, 1690, 1696, 6925, 5076, 1696, 5082, 5178, 5184, 1696, 4851, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 5856, 5084, 5076, 1696, 5082, 1696, 5186, 1696, 5181, 5076, 1696, 5056, 5186, 5057, 5076, 1696, 5082, 5178, 1696, 5084, 1696, 5056, 1696, 5057, 1696, 1696, 1696, 1697, 5162, 5182, 5057, 5084, 1697, 5056, 5084, 5057, 5186, 5209, 5181, 1697, 4992, 4992, 4992, 4992, 4992, 4992, 4992, 4992, 4992, 7017, 5056, 5178, 5057, 1697, 5214, 1697, 5058, 1697, 5162, 5182, 1697, 5162, 5214, 5219, 5420, 1697, 5058, 5209, 1697, 7018, 1697, 5219, 1697, 5420, 1697, 1697, 1697, 1698, 5058, 5083, 5181, 5058, 5211, 5546, 1698, 5153, 4995, 4995, 4995, 4995, 4995, 4995, 4995, 4995, 4995, 5058, 5092, 5083, 1698, 5182, 1698, 4995, 1698, 5153, 5083, 1698, 5690, 4995, 5224, 5083, 1698, 5546, 5211, 1698, 5092, 1698, 5224, 1698, 5690, 1698, 1698, 1698, 1699, 5093, 5094, 6576, 5092, 5367, 6576, 1699, 5367, 4996, 4996, 4996, 4996, 4996, 4996, 4996, 4996, 4996, 5153, 5093, 5094, 1699, 5523, 1699, 4996, 1699, 5093, 5153, 1699, 1699, 4996, 5093, 5094, 1699, 5367, 5094, 1699, 5240, 1699, 5263, 1699, 5183, 1699, 1699, 1699, 1700, 5103, 5104, 5240, 5105, 5263, 5523, 1700, 7069, 4997, 4997, 4997, 4997, 4997, 4997, 4997, 4997, 4997, 5174, 5103, 5104, 1700, 5105, 1700, 4997, 1700, 5183, 5104, 1700, 5618, 4997, 5103, 5104, 1700, 5105, 5618, 1700, 5105, 1700, 5271, 1700, 5059, 1700, 1700, 1700, 1701, 5114, 5115, 5174, 5116, 5271, 5059, 1701, 5000, 5000, 5000, 5000, 5000, 5000, 5000, 5000, 5000, 5183, 5059, 5114, 5115, 1701, 5116, 1701, 5059, 1701, 5318, 5115, 1701, 5000, 5423, 5114, 5115, 1701, 5116, 5059, 1701, 5116, 1701, 5423, 1701, 5174, 1701, 1701, 1701, 1702, 5134, 5134, 7085, 5177, 5179, 5318, 1702, 5759, 5005, 5005, 5005, 5005, 5005, 5005, 5005, 5005, 5005, 5228, 5234, 5759, 1702, 7086, 1702, 1702, 1702, 5228, 5234, 1702, 1702, 5005, 5239, 5134, 1702, 5177, 5179, 1702, 5276, 1702, 5239, 1702, 5554, 1702, 1702, 1702, 1703, 5180, 5243, 5276, 5134, 1703, 5253, 5253, 5554, 5247, 5243, 5177, 1703, 5041, 5041, 5041, 5041, 5041, 5041, 5041, 5041, 5041, 5179, 7098, 5179, 5187, 1703, 5247, 1703, 5041, 1703, 5180, 5249, 1703, 5060, 5187, 5187, 5253, 1703, 5247, 5326, 1703, 5060, 1703, 1703, 1703, 5554, 1703, 1703, 1703, 1704, 5256, 5060, 5041, 5253, 5187, 5317, 1704, 6311, 5256, 5249, 5392, 5259, 6311, 5060, 5326, 5249, 5317, 5325, 5180, 5259, 1704, 5270, 1704, 5275, 1704, 5180, 5417, 1704, 5325, 5270, 5060, 5275, 1704, 5417, 1704, 1704, 5127, 1704, 5417, 1704, 5392, 1704, 1704, 1704, 1705, 5127, 5127, 5127, 5127, 5127, 5127, 1705, 5089, 5089, 5089, 5089, 5089, 5089, 5089, 5089, 5089, 7114, 5265, 5279, 5189, 1705, 5127, 1705, 5285, 1705, 5288, 5279, 1705, 5189, 5189, 5189, 5285, 1705, 5288, 7131, 1705, 5330, 1705, 5316, 1705, 5349, 1705, 1705, 1705, 1705, 1706, 5316, 5330, 5265, 5189, 5442, 5349, 1706, 5090, 5090, 5090, 5090, 5090, 5090, 5090, 5090, 5090, 5442, 5324, 5329, 5265, 1706, 5333, 1706, 5354, 1706, 5324, 5329, 1706, 5265, 5333, 5348, 5267, 1706, 5442, 5354, 1706, 5144, 1706, 5348, 1706, 1706, 1706, 1706, 1706, 1707, 5144, 5144, 5144, 5144, 5144, 5144, 1707, 5091, 5091, 5091, 5091, 5091, 5091, 5091, 5091, 5091, 7132, 5267, 5353, 5210, 1707, 5144, 1707, 5267, 1707, 5350, 5353, 1707, 5210, 5210, 5210, 7153, 1707, 6310, 5267, 1707, 5355, 1707, 5358, 1707, 5363, 1707, 1707, 1707, 1708, 5360, 5358, 6310, 5363, 5210, 5350, 1708, 5099, 5099, 5099, 5099, 5099, 5099, 5099, 5099, 5099, 5355, 5359, 5364, 7157, 1708, 5376, 1708, 5370, 1708, 5360, 5373, 1708, 5359, 5364, 5210, 5370, 1708, 5558, 5373, 1708, 5374, 1708, 5380, 1708, 5379, 1708, 1708, 1708, 1709, 5381, 5376, 5374, 5379, 5380, 5385, 1709, 5100, 5100, 5100, 5100, 5100, 5100, 5100, 5100, 5100, 5385, 5558, 5384, 5397, 1709, 1709, 1709, 5391, 1709, 5381, 5384, 1709, 5396, 5425, 5397, 5391, 1709, 7196, 5568, 1709, 5396, 1709, 5425, 1709, 5398, 1709, 1709, 1709, 1710, 5101, 5101, 5101, 5101, 5101, 5101, 5101, 5101, 5101, 5110, 5110, 5110, 5110, 5110, 5110, 5110, 5110, 5110, 5388, 5568, 5398, 5388, 5613, 1710, 5345, 5345, 5345, 5345, 5345, 5406, 1710, 5111, 5111, 5111, 5111, 5111, 5111, 5111, 5111, 5111, 5406, 5404, 5407, 5409, 1710, 5345, 1710, 5388, 1710, 5404, 5407, 1710, 5613, 5427, 5409, 5422, 1710, 5418, 5443, 1710, 5408, 1710, 5427, 1710, 5422, 1710, 1710, 1710, 1711, 5418, 5443, 5422, 5418, 5441, 5427, 1711, 5112, 5112, 5112, 5112, 5112, 5112, 5112, 5112, 5112, 5408, 5426, 5443, 5431, 1711, 5434, 1711, 1711, 1711, 5447, 5426, 1711, 5431, 5441, 5434, 5427, 1711, 5426, 5447, 1711, 6728, 1711, 5426, 1711, 5463, 1711, 1711, 1711, 1712, 5121, 5121, 5121, 5121, 5121, 5121, 5121, 5121, 5121, 5122, 5122, 5122, 5122, 5122, 5122, 5122, 5122, 5122, 5459, 5426, 5463, 1712, 5687, 5687, 5687, 6728, 5459, 5561, 1712, 5123, 5123, 5123, 5123, 5123, 5123, 5123, 5123, 5123, 5428, 5429, 5461, 5464, 1712, 5687, 1712, 5462, 1712, 5428, 5429, 1712, 5468, 5461, 5464, 5462, 1712, 5429, 5561, 1712, 5468, 1712, 5563, 1712, 5428, 1712, 1712, 1712, 1713, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 5143, 5143, 5143, 5143, 5143, 5143, 5143, 5143, 5143, 5471, 6022, 5185, 1713, 5563, 5794, 5794, 5794, 5471, 5470, 1713, 5185, 5185, 5185, 5185, 5185, 5185, 5185, 5185, 5185, 5470, 5432, 5478, 6222, 1713, 5437, 1713, 6022, 1713, 5436, 5432, 1713, 5185, 5478, 5437, 5472, 1713, 5432, 5436, 1713, 5564, 1713, 5188, 1713, 5944, 1713, 1713, 1713, 1714, 5437, 5436, 5188, 5188, 5188, 5188, 5188, 5188, 5188, 5188, 5188, 5472, 5444, 6574, 5455, 6574, 1714, 5476, 6222, 5444, 5564, 1714, 5944, 5188, 5444, 5476, 5455, 5436, 1714, 5235, 5235, 5235, 5235, 5235, 5235, 5235, 5235, 5235, 5445, 5438, 5489, 5444, 1714, 5455, 1714, 5235, 1714, 5440, 5438, 1714, 5445, 5489, 5482, 5445, 1714, 5438, 5440, 1714, 7353, 1714, 5482, 1714, 7375, 1714, 1714, 1714, 1715, 5445, 5440, 5235, 5310, 5310, 5310, 5310, 5310, 5310, 5310, 5310, 5310, 5311, 5311, 5311, 5311, 5311, 5311, 5311, 5311, 5311, 1715, 5449, 5451, 5310, 5495, 5488, 5440, 1715, 5493, 5576, 5449, 5451, 5311, 5488, 5499, 5495, 5493, 5449, 5510, 5505, 5450, 1715, 5499, 1715, 5509, 1715, 5451, 5505, 1715, 6729, 7417, 5543, 5509, 1715, 5576, 5510, 1715, 5524, 1715, 5543, 1715, 5450, 1715, 1715, 1715, 1715, 1716, 5510, 5312, 5312, 5312, 5312, 5312, 5312, 5312, 5312, 5312, 5339, 5339, 5339, 5339, 5339, 5339, 5339, 5339, 5339, 5524, 5450, 1716, 5312, 5511, 5524, 6729, 5339, 5836, 1716, 5511, 5344, 5344, 5344, 5344, 5344, 5344, 5344, 5344, 5344, 5435, 5511, 6015, 1716, 7422, 1716, 1716, 1716, 5530, 5435, 1716, 5339, 5344, 5570, 5530, 1716, 5435, 5836, 1716, 6015, 1716, 5435, 1716, 6015, 1716, 1716, 1716, 1717, 5375, 5375, 5375, 5375, 5375, 5375, 5375, 5375, 5375, 6261, 5454, 5569, 5804, 5570, 5530, 5547, 5375, 5454, 5573, 5435, 5525, 1717, 5454, 5547, 5804, 5526, 5573, 5577, 1717, 5414, 5414, 5414, 5414, 5414, 5414, 5414, 5414, 5414, 6261, 5454, 5375, 5569, 1717, 6806, 1717, 6806, 1717, 5453, 1717, 1717, 5525, 5439, 5577, 5452, 1717, 5526, 5453, 1717, 5526, 1717, 5439, 1717, 5452, 1717, 1717, 1717, 1718, 5439, 5453, 5452, 5512, 5512, 5439, 5569, 5452, 5521, 5521, 5521, 5521, 5521, 5521, 5521, 5521, 5521, 5525, 5525, 5594, 5527, 1718, 5526, 5529, 5531, 5531, 5522, 5453, 1718, 6274, 5528, 5439, 5838, 5452, 5512, 5522, 5522, 5522, 5522, 5522, 5522, 5529, 1718, 5594, 1718, 7432, 1718, 5594, 5528, 1718, 5527, 5512, 6274, 5529, 1718, 5531, 5522, 1718, 5578, 1718, 5528, 1718, 5838, 1718, 1718, 1718, 1719, 5552, 5528, 5532, 5532, 5585, 5531, 5522, 5541, 5541, 5541, 5541, 5541, 5541, 5541, 5541, 5541, 5578, 5527, 5552, 5548, 5529, 1719, 5531, 5553, 5560, 5542, 6550, 5528, 1719, 5585, 5552, 5548, 5696, 5532, 5542, 5542, 5542, 5542, 5542, 5542, 5696, 5553, 1719, 6550, 1719, 7436, 1719, 5607, 6550, 1719, 5532, 5548, 5560, 5553, 1719, 5542, 1719, 1719, 5560, 1719, 5545, 1719, 5551, 1719, 1719, 1719, 1720, 5532, 5552, 5545, 5545, 5545, 5545, 5545, 5545, 5545, 5545, 5545, 5550, 5549, 5551, 7022, 5555, 5580, 5566, 5615, 5582, 5549, 1720, 5542, 5545, 5549, 5551, 5551, 5595, 1720, 5550, 5607, 5582, 7439, 5555, 5580, 5607, 7022, 5596, 5549, 5582, 5602, 5550, 1720, 5615, 1720, 5555, 1720, 5566, 5580, 1720, 6558, 5567, 5608, 5567, 1720, 5582, 5608, 1720, 5693, 1720, 5608, 1720, 5623, 1720, 1720, 1720, 1720, 1721, 5623, 5611, 5595, 5610, 5609, 5609, 5623, 5550, 5608, 5610, 5595, 5610, 5596, 5567, 5566, 6577, 5612, 6558, 5602, 5567, 5596, 1721, 5693, 5602, 5612, 5692, 5595, 5610, 1721, 5630, 6086, 5612, 5697, 6909, 7448, 5630, 5596, 5691, 5691, 5691, 5612, 5630, 1721, 5697, 1721, 5611, 1721, 5567, 5609, 1721, 6577, 6086, 7453, 5611, 1721, 5692, 5609, 1721, 5691, 1721, 5698, 1721, 5701, 1721, 1721, 1721, 1722, 6909, 5692, 5611, 5701, 5702, 5609, 5614, 5614, 5614, 5614, 5614, 5614, 5614, 5614, 5614, 5702, 6011, 5624, 5698, 5625, 6739, 1722, 5705, 5624, 5624, 5625, 5631, 5614, 1722, 5624, 5705, 5625, 5631, 5631, 5625, 5632, 6739, 5706, 5631, 5640, 6011, 5632, 1722, 5761, 1722, 5640, 1722, 5632, 5706, 1722, 5632, 5640, 5709, 6808, 1722, 5761, 1722, 1722, 5761, 1722, 5709, 1722, 5716, 1722, 1722, 1722, 1723, 5637, 5637, 5637, 5637, 5637, 5637, 5637, 5637, 5637, 5638, 5638, 5638, 5638, 5638, 5638, 5638, 5638, 5638, 6808, 5719, 5716, 1723, 5689, 5689, 5689, 5689, 5689, 5719, 1723, 5639, 5639, 5639, 5639, 5639, 5639, 5639, 5639, 5639, 7457, 5651, 7460, 5641, 1723, 5689, 1723, 5651, 1723, 5641, 5641, 1723, 5724, 5651, 5729, 5641, 1723, 6273, 5642, 1723, 5724, 1723, 5729, 1723, 5642, 1723, 1723, 1723, 1723, 1724, 5642, 1724, 5721, 5642, 5647, 5647, 5647, 5647, 5647, 5647, 5647, 5647, 5647, 5648, 5648, 5648, 5648, 5648, 5648, 5648, 5648, 5648, 6290, 1724, 5758, 7484, 6273, 5721, 6290, 5720, 1724, 5649, 5649, 5649, 5649, 5649, 5649, 5649, 5649, 5649, 5720, 5662, 5826, 5652, 1724, 6019, 1724, 5662, 1724, 5652, 5652, 1724, 5758, 5662, 5826, 5652, 1724, 6019, 5653, 1724, 5725, 1724, 5726, 1724, 5653, 1724, 1724, 1724, 1725, 7489, 5653, 5725, 5730, 5653, 5658, 5658, 5658, 5658, 5658, 5658, 5658, 5658, 5658, 5730, 5733, 5739, 5744, 5726, 6307, 5851, 1725, 5806, 5733, 5739, 5744, 6307, 5741, 1725, 5659, 5659, 5659, 5659, 5659, 5659, 5659, 5659, 5659, 5741, 5745, 5806, 5663, 1725, 5748, 1725, 5851, 1725, 5663, 5663, 1725, 5745, 5748, 5806, 5663, 1725, 5842, 5842, 1725, 7547, 1725, 7604, 1725, 7694, 1725, 1725, 1725, 1726, 5660, 5660, 5660, 5660, 5660, 5660, 5660, 5660, 5660, 5842, 5664, 5760, 5805, 5828, 5869, 5828, 5664, 5845, 5760, 5842, 5807, 1726, 5664, 5760, 5828, 5664, 5846, 6223, 1726, 5669, 5669, 5669, 5669, 5669, 5669, 5669, 5669, 5669, 5807, 5869, 5805, 5868, 1726, 5805, 1726, 5807, 1726, 5845, 6223, 1726, 5807, 6308, 5868, 7695, 1726, 6559, 5846, 1726, 6308, 1726, 5805, 1726, 5846, 1726, 1726, 1726, 1728, 1728, 5808, 1728, 1728, 1728, 1728, 1728, 1728, 5670, 5670, 5670, 5670, 5670, 5670, 5670, 5670, 5670, 5855, 5845, 5808, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 6941, 6559, 5843, 7737, 5808, 1728, 6072, 5808, 1728, 5671, 5671, 5671, 5671, 5671, 5671, 5671, 5671, 5671, 6072, 5843, 5855, 6941, 1728, 1728, 1728, 1728, 1730, 1730, 5843, 1730, 1730, 1730, 1730, 1730, 1730, 7190, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 6025, 6025, 6025, 7189, 5876, 1730, 5681, 5681, 5681, 5681, 5681, 5681, 5681, 5681, 5681, 5876, 7190, 5829, 7189, 5829, 7608, 6025, 1730, 1730, 1730, 1730, 1731, 1731, 5829, 1731, 1731, 1731, 1731, 1731, 1731, 5829, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 6338, 6338, 6338, 7608, 5881, 1731, 5769, 5769, 5769, 5769, 5769, 5769, 5769, 5769, 5769, 5881, 7738, 5841, 5841, 5943, 6272, 6910, 1731, 1731, 1731, 1731, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 5682, 5682, 5682, 5682, 5682, 5682, 1738, 1738, 1738, 1738, 1738, 1738, 5841, 5943, 6272, 5682, 7740, 7783, 5841, 6910, 5900, 5682, 5770, 5770, 5770, 5770, 5770, 5770, 5770, 5770, 5770, 5900, 1738, 1738, 1738, 1738, 1738, 1738, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 5753, 5753, 5753, 5753, 5753, 5753, 1740, 1740, 1740, 1740, 1740, 1740, 5740, 5740, 5740, 5740, 5740, 5740, 5740, 5740, 5740, 5753, 5867, 5875, 5877, 5901, 5906, 7784, 5740, 7826, 5867, 5875, 1740, 1740, 1740, 1740, 1740, 1740, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 5971, 5877, 5901, 5906, 5740, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 5771, 5771, 5771, 5771, 5771, 5771, 5771, 5771, 5771, 5777, 5777, 5777, 5777, 5777, 5777, 5777, 5777, 5777, 6943, 5971, 1743, 1743, 1743, 1743, 1743, 1743, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 5971, 7830, 6280, 6943, 5971, 5911, 1749, 1749, 1749, 1749, 1749, 1749, 5783, 5783, 5783, 5783, 5783, 5783, 5783, 5783, 5783, 5789, 5789, 5789, 5789, 5789, 5789, 5789, 5789, 5789, 5911, 6280, 1749, 1749, 1749, 1749, 1749, 1749, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 5799, 5799, 5799, 5799, 5799, 5799, 1752, 1752, 1752, 1752, 1752, 1752, 5795, 5795, 5795, 5795, 5795, 5795, 5795, 5795, 5795, 5799, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 7831, 1752, 1752, 1752, 1752, 1752, 1752, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 7182, 5918, 5939, 7182, 5918, 5939, 1760, 1760, 1760, 1760, 1760, 1760, 5813, 5813, 5813, 5813, 5813, 5813, 5813, 5813, 5813, 5814, 5814, 5814, 5814, 5814, 5814, 5814, 5814, 5814, 5918, 5939, 1760, 1760, 1760, 1760, 1760, 1760, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 5973, 5973, 6344, 6344, 6344, 7833, 1763, 1763, 1763, 1763, 1763, 1763, 5815, 5815, 5815, 5815, 5815, 5815, 5815, 5815, 5815, 5823, 5823, 5823, 5823, 5823, 5823, 5823, 5823, 5823, 5823, 5973, 1763, 1763, 1763, 1763, 1763, 1763, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 6293, 5973, 6350, 6350, 6350, 6897, 6293, 1771, 1771, 1771, 1771, 1771, 1771, 5824, 5824, 5824, 5824, 5824, 5824, 5824, 5824, 5824, 5824, 5825, 5825, 5825, 5825, 5825, 5825, 5825, 5825, 5825, 5825, 1771, 1771, 1771, 1771, 1771, 1771, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 7609, 6897, 6293, 6275, 5880, 5884, 1776, 1776, 1776, 1776, 1776, 1776, 5880, 5884, 5899, 5904, 5909, 5848, 5859, 5860, 5905, 5864, 5899, 5904, 5909, 5848, 5859, 5864, 5860, 5860, 6275, 5905, 1776, 1776, 1776, 1776, 1776, 1776, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 5848, 5859, 5860, 5910, 5864, 5914, 5915, 1778, 1778, 1778, 1778, 1778, 1778, 5914, 5910, 7842, 7609, 5915, 5925, 5685, 5685, 5685, 5685, 5685, 5685, 5685, 5685, 5685, 5927, 5925, 6356, 6356, 6356, 1778, 1778, 1778, 1778, 1778, 1778, 1786, 5685, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 5894, 5947, 5927, 5931, 5921, 5924, 1786, 1786, 1786, 1786, 1786, 1786, 5921, 5924, 5931, 6471, 6471, 6471, 5936, 5686, 5686, 5686, 5686, 5686, 5686, 5686, 5686, 5686, 5932, 5936, 5894, 5947, 1786, 1786, 1786, 1786, 1786, 1786, 1790, 1790, 5686, 1790, 1790, 1790, 1790, 1790, 1790, 5894, 1790, 1790, 5930, 7846, 6185, 5932, 5947, 6185, 5894, 5896, 5930, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 5896, 5896, 5896, 5896, 5896, 1790, 5688, 5688, 5688, 5688, 5688, 5688, 5688, 5688, 5688, 6185, 7591, 6572, 5935, 6579, 5942, 5896, 1790, 1790, 1790, 1790, 5935, 5688, 5942, 5798, 5798, 5798, 5798, 5798, 5798, 5798, 5798, 5798, 6945, 7591, 1790, 1791, 1791, 5955, 1791, 1791, 1791, 1791, 1791, 1791, 5798, 1791, 1791, 5954, 5955, 6572, 6376, 6376, 6376, 6579, 5960, 5954, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 5861, 5847, 5960, 6945, 6731, 1791, 6224, 5970, 6376, 5861, 5861, 5861, 5861, 5861, 5861, 5861, 5861, 5861, 6224, 5959, 5963, 6989, 1791, 1791, 1791, 1791, 5847, 5959, 5963, 5847, 5861, 5847, 5970, 5977, 5974, 5847, 5979, 5978, 5847, 5847, 5847, 5977, 6989, 5847, 6731, 1791, 1815, 1815, 5978, 1815, 1815, 1815, 1815, 1815, 1815, 5982, 1815, 1815, 5984, 7549, 6009, 5979, 7549, 5982, 5983, 5974, 5988, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 5974, 5983, 5987, 5988, 5862, 1815, 6294, 7847, 5974, 5984, 5987, 6009, 6294, 5862, 5862, 5862, 5862, 5862, 5862, 5862, 5862, 5862, 1815, 1815, 1815, 1816, 1816, 5998, 1816, 1816, 1816, 1816, 1816, 1816, 5862, 1816, 1816, 5991, 5998, 7221, 6034, 6510, 6510, 6510, 7221, 5991, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 5997, 6001, 6005, 5863, 1816, 6827, 6827, 6827, 5997, 6001, 6005, 6034, 5863, 5863, 5863, 5863, 5863, 5863, 5863, 5863, 5863, 1816, 1816, 1816, 1827, 1827, 6002, 1827, 1827, 1827, 1827, 1827, 1827, 5863, 1827, 1827, 6032, 6002, 6045, 6050, 7849, 6033, 7839, 6226, 6032, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 6033, 6037, 6040, 6226, 5895, 1827, 7195, 7890, 6226, 6037, 6040, 6045, 6050, 5895, 5895, 5895, 5895, 5895, 5895, 5895, 5895, 5895, 1827, 1827, 1827, 1828, 1828, 6044, 1828, 1828, 1828, 1828, 1828, 1828, 5895, 1828, 1828, 6048, 6044, 7195, 6491, 6491, 6491, 6049, 7839, 6048, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 6049, 6053, 6054, 6057, 1828, 5972, 5972, 6491, 6076, 6053, 6064, 6057, 6067, 6054, 6077, 5972, 5972, 5972, 6064, 6076, 6067, 1828, 1828, 1828, 1829, 1829, 6090, 1829, 1829, 1829, 1829, 1829, 1829, 6075, 1829, 1829, 5972, 6090, 7808, 6077, 7573, 6075, 7895, 7573, 6089, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 6089, 5972, 6091, 6100, 7808, 1829, 6457, 1829, 6024, 6024, 6024, 6024, 6024, 6024, 6024, 6024, 6024, 6096, 6099, 6098, 6101, 6155, 1829, 1829, 1829, 6096, 6099, 6091, 6100, 6024, 6098, 6101, 6155, 1829, 1831, 1831, 6457, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1832, 6291, 6907, 6907, 6907, 7905, 7909, 6291, 6291, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 6026, 6026, 6026, 6026, 6026, 6026, 6026, 6026, 6026, 6028, 6028, 6028, 6028, 6028, 6028, 6028, 6028, 6028, 6111, 6117, 6129, 6026, 6139, 6142, 6927, 6927, 6927, 6111, 6117, 6129, 6028, 6139, 6142, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 6102, 6115, 6120, 6551, 7912, 7575, 1837, 1837, 1837, 1837, 1837, 1837, 5890, 5890, 5890, 5890, 5890, 5890, 5890, 5890, 5890, 6153, 6115, 6120, 6315, 6102, 7575, 6551, 5890, 6153, 6132, 6315, 1837, 1837, 1837, 1837, 1837, 1837, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 6115, 6120, 6124, 6132, 5890, 6078, 1840, 1840, 1840, 1840, 1840, 1840, 6227, 6548, 6124, 6078, 6125, 7191, 6029, 6029, 6029, 6029, 6029, 6029, 6029, 6029, 6029, 6078, 6125, 6132, 6137, 6124, 1840, 1840, 1840, 1840, 1840, 1840, 1842, 6029, 6227, 6548, 6137, 6227, 6078, 6125, 6158, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 6157, 6158, 6159, 6137, 6227, 7921, 7191, 1842, 1842, 1842, 1842, 1842, 1842, 5926, 5926, 5926, 5926, 5926, 5926, 5926, 5926, 5926, 6156, 6163, 6166, 6157, 6167, 6159, 6734, 5926, 6156, 6163, 6166, 1842, 1842, 1842, 1842, 1842, 1842, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 6176, 6195, 6167, 7926, 5926, 6734, 1846, 1846, 1846, 1846, 1846, 1846, 6063, 6063, 6063, 6063, 6063, 6063, 6063, 6063, 6063, 6172, 6175, 6180, 6192, 6176, 6195, 6192, 6063, 6172, 6175, 6180, 1846, 1846, 1846, 1846, 1846, 1846, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 6203, 6239, 6276, 6278, 6284, 6063, 6192, 1848, 1848, 1848, 1848, 1848, 1848, 6084, 6104, 6104, 6104, 6104, 6104, 6104, 6104, 6104, 6104, 6084, 6190, 6203, 6239, 6276, 6278, 6284, 6084, 7930, 6190, 1848, 1848, 1848, 1848, 1848, 1848, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 7933, 6212, 6219, 6084, 6212, 6219, 1858, 1858, 1858, 1858, 1858, 1858, 6105, 6105, 6105, 6105, 6105, 6105, 6105, 6105, 6105, 6106, 6106, 6106, 6106, 6106, 6106, 6106, 6106, 6106, 6212, 6219, 1858, 1858, 1858, 1858, 1858, 1858, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 7577, 6379, 7939, 7577, 6113, 6119, 6121, 1860, 1860, 1860, 1860, 1860, 1860, 6113, 6119, 6121, 6131, 6165, 6168, 6193, 6113, 6119, 6571, 6199, 6384, 6131, 6379, 6193, 6165, 6168, 6121, 6199, 6131, 1860, 1860, 1860, 1860, 1860, 1860, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 6384, 6571, 6127, 6122, 6123, 6174, 1872, 1872, 1872, 1872, 1872, 1872, 6122, 6123, 6127, 6182, 6174, 6127, 6194, 6122, 6202, 6578, 6207, 6389, 6122, 6123, 6182, 6578, 6202, 6194, 6207, 6127, 1872, 1872, 1872, 1872, 1872, 1872, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 6742, 6389, 6201, 6122, 6123, 6133, 6134, 1874, 1874, 1874, 1874, 1874, 1874, 6201, 6133, 6134, 6140, 6209, 6217, 6998, 6998, 6998, 6134, 6220, 6742, 6140, 6217, 6134, 6209, 6133, 6080, 6220, 6140, 1874, 1874, 1874, 1874, 1874, 1874, 1882, 6080, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 6225, 6080, 6134, 6135, 6080, 6145, 1882, 1882, 1882, 1882, 1882, 1882, 6135, 6531, 6145, 6221, 6260, 6225, 6080, 6246, 6248, 6248, 6531, 8037, 6135, 6225, 6221, 6319, 6260, 6145, 6079, 6246, 1882, 1882, 1882, 1882, 1882, 1882, 1886, 1886, 6079, 1886, 1886, 1886, 1886, 1886, 1886, 6079, 1886, 1886, 6135, 6248, 6079, 6246, 7366, 6263, 6319, 6146, 6264, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 6146, 6263, 6248, 6079, 6264, 1886, 6321, 6146, 1886, 6235, 6235, 6235, 6235, 6235, 6235, 6235, 6235, 6235, 6321, 6248, 8083, 6264, 1886, 1886, 1886, 1887, 1887, 7366, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 6241, 6271, 7627, 6144, 6143, 6271, 1892, 1892, 1892, 1892, 1892, 1892, 6144, 6143, 6271, 6292, 6322, 6271, 6383, 6126, 6143, 6292, 7627, 6322, 6144, 6143, 6126, 6240, 6322, 6383, 6241, 6126, 1892, 1892, 1892, 1892, 1892, 1892, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 6126, 6228, 6144, 6143, 6240, 6147, 1895, 1895, 1895, 1895, 1895, 1895, 6270, 6240, 6147, 6520, 6241, 6388, 6136, 6228, 6281, 6147, 7548, 6241, 6270, 6136, 6147, 6520, 6388, 6292, 6136, 6228, 1895, 1895, 1895, 1895, 1895, 1895, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 6136, 6228, 6229, 6281, 6148, 6147, 6323, 1903, 1903, 1903, 1903, 1903, 1903, 6148, 7548, 6270, 6947, 6358, 6323, 8127, 6229, 6323, 6289, 6358, 6369, 6148, 6644, 6229, 6289, 6358, 6281, 6644, 6229, 1903, 1903, 1903, 1903, 1903, 1903, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 6229, 6947, 6148, 6289, 6369, 6644, 1905, 1905, 1905, 1905, 1905, 1905, 6236, 6236, 6236, 6236, 6236, 6236, 6236, 6236, 6236, 6237, 6237, 6237, 6237, 6237, 6237, 6237, 6237, 6237, 6230, 6242, 1905, 1905, 1905, 1905, 1905, 1905, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 6394, 6230, 7764, 6415, 6393, 7764, 8135, 1908, 1908, 1908, 1908, 1908, 1908, 6230, 6242, 6393, 6230, 6298, 6382, 6387, 6242, 6243, 6464, 6298, 6392, 6394, 6382, 6387, 6415, 6420, 6230, 6081, 6392, 1908, 1908, 1908, 1908, 1908, 1908, 1912, 1912, 6081, 1912, 1912, 1912, 1912, 1912, 1912, 6242, 1912, 1912, 6243, 6464, 6081, 6420, 6247, 6737, 6265, 6244, 6081, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 6283, 6737, 6265, 6081, 6425, 1912, 6295, 6082, 6249, 6244, 6243, 8027, 6295, 6245, 6265, 6082, 6247, 6243, 6243, 6247, 6298, 6244, 1912, 1912, 1912, 6082, 6249, 6296, 6265, 6425, 6283, 6245, 6432, 6296, 8027, 6432, 6247, 6082, 6249, 6875, 1912, 1914, 1914, 6245, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 6247, 6082, 6244, 6441, 6250, 6268, 6283, 6875, 6432, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 6295, 6245, 6397, 6249, 6398, 1914, 6250, 6268, 6245, 6245, 6397, 6282, 6441, 6250, 8145, 6398, 6296, 6875, 6250, 6268, 6267, 6266, 1914, 1914, 1914, 1914, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 7033, 8156, 6930, 6267, 6266, 7199, 6282, 1915, 1915, 1915, 1915, 1915, 1915, 6297, 6414, 6267, 6266, 6250, 6267, 6297, 6401, 6312, 6268, 6413, 7033, 6414, 6251, 6312, 6401, 6312, 6419, 6413, 6282, 1915, 1915, 1915, 1915, 1915, 1915, 6266, 6282, 6419, 6930, 7199, 6251, 6312, 1915, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 6251, 1923, 1923, 6251, 7466, 6900, 6453, 6466, 6467, 6453, 6424, 6418, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 6418, 6297, 6424, 6900, 6473, 1923, 6256, 6256, 6256, 6256, 6256, 6256, 6256, 6256, 6256, 6251, 6453, 7466, 6466, 6467, 6900, 6466, 1923, 1923, 1923, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 6473, 1924, 1924, 6257, 6257, 6257, 6257, 6257, 6257, 6257, 6257, 6257, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 7020, 7020, 7020, 6429, 1924, 6258, 6258, 6258, 6258, 6258, 6258, 6258, 6258, 6258, 6429, 6990, 7220, 8238, 8238, 6959, 8254, 1924, 1924, 1924, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 6439, 1926, 1926, 6262, 6262, 6262, 6262, 6262, 6262, 6262, 6262, 6439, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 6287, 6959, 7220, 6990, 6262, 1926, 7124, 6445, 6450, 6287, 6287, 6287, 6287, 6287, 6287, 6287, 6287, 6287, 6445, 6450, 8276, 8281, 1926, 1926, 1926, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 7124, 1927, 1927, 6331, 6331, 6331, 6331, 6331, 6331, 6331, 6331, 6331, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 7119, 7119, 7119, 7119, 1927, 6332, 6332, 6332, 6332, 6332, 6332, 6332, 6332, 6332, 6446, 6374, 6374, 6374, 6374, 6374, 7214, 1927, 1927, 1927, 1936, 1936, 6269, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 6374, 6477, 8291, 6446, 6269, 6481, 6743, 6465, 6269, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 8295, 6269, 6743, 7214, 6269, 1936, 6333, 6333, 6333, 6333, 6333, 6333, 6333, 6333, 6333, 6477, 6465, 6590, 6269, 6481, 6359, 6465, 1936, 1936, 1936, 1936, 6359, 6359, 6590, 1936, 1944, 1944, 6359, 1944, 1944, 1944, 1944, 1944, 1944, 6549, 1944, 1944, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 6378, 6378, 6378, 6378, 6378, 1944, 6591, 6602, 8298, 7734, 6549, 1944, 6345, 6345, 6345, 6345, 6345, 6345, 6345, 6345, 6345, 6378, 1944, 1944, 1944, 1945, 8307, 6485, 6504, 7292, 7734, 6591, 6602, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 6351, 6351, 6351, 6351, 6351, 6351, 6351, 6351, 6351, 6423, 6428, 6435, 1945, 1946, 6485, 6504, 6468, 6423, 6428, 6435, 7292, 1946, 1946, 1946, 1946, 1946, 1946, 1946, 1946, 1946, 1946, 6357, 6357, 6357, 6357, 6357, 6357, 6357, 6357, 6357, 7364, 6468, 8312, 1946, 1948, 1948, 6468, 1948, 1948, 1948, 1948, 1948, 1948, 6474, 1948, 1948, 6365, 6365, 6365, 6365, 6365, 6365, 6365, 6365, 6365, 1948, 1948, 1948, 1948, 1948, 1948, 1948, 1948, 7372, 6607, 1948, 6360, 1948, 6474, 6438, 7364, 1948, 6360, 6474, 1948, 1948, 1948, 6438, 6360, 1948, 6444, 6360, 6449, 6456, 1948, 1948, 1948, 6643, 6444, 6607, 6449, 6456, 6601, 1948, 6366, 6366, 6366, 6366, 6366, 6366, 6366, 6366, 6366, 6601, 7372, 6469, 1948, 1949, 1949, 6561, 1949, 1949, 1949, 1949, 1949, 1949, 6643, 1949, 1949, 6367, 6367, 6367, 6367, 6367, 6367, 6367, 6367, 6367, 1949, 1949, 1949, 1949, 1949, 1949, 1949, 6469, 7376, 7765, 6469, 6561, 1949, 6371, 6371, 6371, 6371, 6371, 6371, 6371, 6371, 6371, 6979, 7376, 7765, 8316, 7365, 7589, 6979, 1949, 1949, 1949, 1951, 1951, 6371, 1951, 1951, 1951, 1951, 1951, 1951, 8319, 1951, 1951, 6472, 6472, 6472, 6472, 6472, 6472, 6472, 6472, 6472, 1951, 1951, 1951, 1951, 1951, 1951, 1951, 7365, 7589, 6475, 6478, 6482, 1951, 6373, 6373, 6373, 6373, 6373, 6373, 6373, 6373, 6373, 6606, 6375, 6375, 6375, 6375, 6375, 6375, 1951, 1951, 1951, 6375, 6606, 6373, 6478, 6482, 1951, 1952, 6475, 6478, 6482, 6475, 7377, 6375, 6479, 6483, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 6377, 6377, 6377, 6377, 6377, 6377, 6377, 6377, 6377, 6458, 6458, 6458, 6458, 6458, 6458, 6458, 6458, 6458, 6536, 6479, 6483, 6377, 6479, 6483, 6589, 6983, 8326, 6536, 7377, 8327, 6458, 6983, 6589, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1953, 1953, 6487, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 6486, 6744, 6744, 6744, 8357, 6521, 6522, 6521, 6522, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 6521, 6522, 8375, 6533, 6487, 1953, 6744, 6487, 6522, 6486, 6563, 6495, 6533, 6594, 6486, 6495, 6495, 6495, 6495, 6533, 7370, 6594, 1953, 1953, 1953, 1953, 1954, 1954, 6568, 1954, 1954, 1954, 1954, 1954, 1954, 6573, 1954, 1954, 6597, 7293, 6563, 6495, 7293, 6539, 6573, 6539, 6597, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 6539, 6605, 6610, 6495, 6568, 1954, 7370, 8376, 7293, 6605, 6610, 6563, 1954, 6492, 6492, 6492, 6492, 6492, 6492, 6492, 6492, 6492, 1954, 1954, 1954, 1955, 1955, 6568, 1955, 1955, 1955, 1955, 1955, 1955, 6492, 1955, 1955, 6503, 6503, 6503, 6503, 6503, 6503, 6503, 6503, 6503, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 6505, 6634, 7545, 7545, 7545, 1955, 7944, 6556, 6556, 6407, 6407, 6407, 6407, 6407, 6407, 6407, 6407, 6407, 6543, 6655, 6663, 7557, 1955, 1955, 1955, 6407, 6634, 6543, 1955, 1957, 1957, 6505, 1957, 1957, 1957, 1957, 1957, 1957, 6556, 1957, 1957, 6991, 6543, 7944, 6655, 6663, 6611, 6991, 6505, 6407, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 6611, 6614, 6621, 6624, 7557, 1957, 6505, 8390, 6566, 6614, 6621, 6624, 6440, 6440, 6440, 6440, 6440, 6440, 6440, 6440, 6440, 7596, 1957, 1957, 1957, 1957, 6557, 6557, 6440, 6511, 6511, 6511, 6511, 6511, 6511, 6511, 6511, 6511, 6566, 1957, 1961, 1961, 6629, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 6440, 7586, 6628, 7596, 6730, 6557, 6580, 6566, 6629, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 6580, 6580, 6687, 7151, 6629, 1961, 6517, 6517, 6517, 6517, 6517, 6517, 6517, 6517, 6517, 6517, 6628, 6730, 6557, 6628, 6580, 8391, 1961, 1961, 1961, 1961, 7586, 6687, 1961, 1966, 1966, 7151, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1969, 1969, 6560, 1969, 1969, 1969, 1969, 1969, 1969, 7829, 1969, 1969, 6529, 6529, 6529, 6529, 6529, 6529, 6529, 6529, 6529, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 7025, 7025, 7025, 8481, 6560, 1969, 6518, 6518, 6518, 6518, 6518, 6518, 6518, 6518, 6518, 6518, 6564, 7588, 8501, 6692, 7829, 7025, 1969, 1969, 1969, 1969, 1972, 1972, 6562, 1972, 1972, 1972, 1972, 1972, 1972, 6632, 1972, 1972, 8505, 6560, 6569, 6564, 6567, 6632, 6692, 6582, 6564, 1972, 1972, 1972, 1972, 1972, 1972, 1972, 6582, 6582, 6582, 7588, 6562, 1972, 6519, 6519, 6519, 6519, 6519, 6519, 6519, 6519, 6519, 6519, 6569, 6564, 6567, 7299, 8516, 6582, 1972, 1972, 1972, 1978, 1978, 6633, 1978, 1978, 1978, 1978, 1978, 1978, 7299, 1978, 1978, 8519, 6633, 7299, 6562, 6569, 6642, 6654, 6662, 6562, 1978, 1978, 1978, 1978, 1978, 1978, 1978, 6567, 6654, 6662, 7958, 6535, 1978, 6535, 6535, 6535, 6535, 6535, 6535, 6535, 6535, 6535, 6535, 6642, 6641, 7587, 6642, 8570, 6645, 1978, 1978, 1978, 1979, 1979, 6641, 1979, 1979, 1979, 1979, 1979, 1979, 6641, 1979, 1979, 8249, 6682, 8647, 7958, 6565, 7587, 6667, 6645, 6642, 1979, 1979, 1979, 1979, 1979, 1979, 1979, 6645, 6667, 7590, 6641, 6537, 1979, 6537, 6537, 6537, 6537, 6537, 6537, 6537, 6537, 6537, 6537, 6682, 6682, 6565, 6697, 7945, 8249, 1979, 1979, 1979, 6538, 6653, 6538, 6538, 6538, 6538, 6538, 6538, 6682, 6653, 6661, 6538, 6666, 6686, 6565, 6712, 1979, 7590, 6661, 6697, 6666, 1979, 1986, 1986, 6686, 1986, 1986, 1986, 1986, 1986, 1986, 6670, 1986, 1986, 6565, 7380, 7380, 7380, 7945, 6670, 6712, 6691, 6685, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 6685, 6690, 6691, 6696, 6695, 1986, 7380, 6635, 6700, 6690, 6636, 6638, 6695, 6639, 6696, 6635, 6700, 1986, 6636, 6638, 8652, 6639, 1986, 1986, 1986, 6635, 6707, 6701, 6636, 6638, 1986, 6639, 6679, 6704, 6707, 6636, 6704, 6635, 6701, 7490, 6636, 6638, 8662, 6639, 1986, 1987, 1987, 6638, 1987, 1987, 1987, 1987, 1987, 1987, 6635, 1987, 1987, 6636, 6638, 6736, 6639, 6717, 6704, 6679, 6711, 7490, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 6637, 6710, 6711, 6715, 6716, 1987, 6720, 6679, 6637, 6710, 6721, 6715, 6727, 6717, 6720, 6716, 6736, 1987, 6637, 6679, 6727, 6721, 1987, 1987, 1987, 6751, 6750, 6755, 6756, 6829, 6637, 6760, 6759, 6637, 6750, 6755, 6751, 6736, 8666, 6756, 6759, 6829, 6760, 8669, 1987, 1990, 1990, 6637, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1998, 6980, 6724, 8224, 8412, 6724, 8677, 6980, 6980, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 6740, 6752, 6770, 8412, 7174, 8224, 1998, 1998, 1998, 1998, 1998, 1998, 6724, 6620, 6620, 6620, 6620, 6620, 6620, 6620, 6620, 6620, 6745, 6763, 6775, 7174, 6752, 6770, 1998, 6620, 6740, 6763, 1998, 1998, 1998, 1998, 1998, 1998, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 6780, 6775, 6774, 7174, 6745, 6620, 2001, 2001, 2001, 2001, 2001, 2001, 6773, 6774, 6778, 6783, 6681, 6745, 6994, 6809, 6773, 7219, 6778, 6783, 6994, 6780, 6681, 6681, 6681, 6681, 6681, 7219, 2001, 2001, 2001, 2001, 2001, 2001, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 6681, 6809, 6779, 6784, 6795, 6799, 6814, 2009, 2009, 2009, 2009, 2009, 2009, 6779, 6784, 6795, 6799, 6681, 6830, 6741, 6741, 6741, 6741, 6741, 6741, 6741, 6741, 6741, 6822, 2009, 6830, 6814, 7950, 2009, 2009, 2009, 2009, 2009, 2009, 2011, 6741, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 7550, 8682, 6822, 6813, 6820, 6787, 2011, 2011, 2011, 2011, 2011, 2011, 6570, 6787, 6813, 6820, 6824, 7550, 6892, 6823, 7950, 6570, 6570, 6570, 6570, 6570, 6570, 6570, 6570, 6570, 6823, 6793, 2011, 2011, 2011, 2011, 2011, 2011, 2023, 6793, 7550, 6824, 6570, 6892, 6899, 6832, 6867, 2023, 2023, 2023, 2023, 2023, 2023, 2023, 2023, 2023, 2023, 6832, 6867, 8686, 6832, 6890, 6798, 2023, 2023, 2023, 2023, 2023, 2023, 6581, 6798, 6929, 6890, 6894, 6899, 6867, 8250, 7610, 6581, 6581, 6581, 6581, 6581, 6581, 6581, 6581, 6581, 6802, 6812, 2023, 2023, 2023, 2023, 2023, 2023, 6802, 6812, 7825, 6894, 6581, 7592, 6929, 2023, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 6807, 6807, 6807, 6807, 6807, 6807, 2026, 2026, 2026, 2026, 2026, 2026, 6794, 6794, 6794, 6794, 6794, 6794, 6794, 6794, 6794, 6807, 6818, 6821, 6942, 7602, 8250, 7592, 6794, 7610, 6818, 6821, 2026, 2026, 2026, 2026, 2026, 2026, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 8689, 7825, 6942, 6893, 6939, 6794, 6834, 2034, 2034, 2034, 2034, 2034, 2034, 6583, 6893, 6834, 6939, 6951, 7602, 7779, 7779, 7779, 6583, 6583, 6583, 6583, 6583, 6583, 6583, 6583, 6583, 6837, 6831, 2034, 2034, 2034, 2034, 2034, 2034, 6831, 6837, 6939, 6951, 6583, 6831, 6932, 2034, 2036, 6868, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 8770, 6868, 8775, 8776, 6836, 6839, 2036, 2036, 2036, 2036, 2036, 2036, 6585, 6836, 6839, 6901, 6932, 7495, 6868, 7959, 6836, 6585, 6585, 6585, 6585, 6585, 6585, 6585, 6585, 6585, 6843, 6845, 2036, 2036, 2036, 2036, 2036, 2036, 2060, 6843, 6845, 7300, 6585, 7495, 2060, 6901, 6843, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 7300, 8779, 6944, 8780, 7959, 7300, 6901, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2064, 2064, 6944, 2064, 2064, 2064, 2064, 2064, 2064, 8033, 2064, 2064, 6828, 6828, 6828, 6828, 6828, 6828, 6828, 6828, 6828, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 6846, 6848, 8789, 6852, 6842, 2064, 6856, 7037, 6859, 6846, 6848, 2064, 6852, 6842, 6946, 6856, 6846, 6859, 7037, 6852, 8790, 8033, 2064, 2064, 2064, 2064, 2065, 2065, 6842, 2065, 2065, 2065, 2065, 2065, 2065, 6841, 2065, 2065, 8801, 7834, 7384, 7384, 7384, 6946, 6841, 6870, 6857, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 6586, 6857, 6841, 6870, 8039, 2065, 6870, 7384, 6857, 6586, 6586, 6586, 6586, 6586, 6586, 6586, 6586, 6586, 6872, 6880, 6870, 6888, 2065, 2065, 2065, 2065, 2071, 6872, 6841, 6888, 6586, 6880, 2071, 2071, 6746, 6746, 6746, 6746, 6746, 6746, 6746, 6746, 6746, 8039, 6840, 8593, 8802, 2071, 6880, 2071, 7834, 2071, 6851, 6840, 2071, 6746, 6948, 6953, 6849, 2071, 6840, 6851, 2071, 6850, 2071, 6840, 2071, 6849, 2071, 2071, 2071, 2072, 6850, 6952, 6849, 6891, 6851, 6853, 2072, 6849, 6854, 6860, 8593, 6891, 6850, 6948, 6853, 6953, 6935, 6854, 6860, 6840, 2072, 6853, 2072, 2072, 2072, 6860, 6853, 2072, 6911, 6854, 6860, 6952, 2072, 6849, 6935, 2072, 6861, 2072, 6850, 2072, 6862, 2072, 2072, 2072, 2073, 6861, 6935, 8817, 8818, 6862, 6863, 2073, 6853, 6865, 6864, 6854, 6860, 6861, 6911, 6863, 6952, 8835, 6865, 6864, 6862, 2073, 6863, 2073, 2073, 2073, 6864, 7036, 2073, 6912, 6865, 6864, 6914, 2073, 6869, 7036, 2073, 6935, 2073, 6861, 2073, 6869, 2073, 2073, 2073, 2074, 6869, 6987, 6911, 6874, 6914, 6876, 2074, 6987, 8526, 6877, 6865, 6864, 6874, 6912, 6876, 6977, 6914, 6869, 6877, 6874, 2074, 6977, 2074, 7042, 2074, 6877, 6879, 2074, 2074, 6876, 6877, 6878, 2074, 6879, 7042, 2074, 6895, 2074, 6879, 2074, 6878, 2074, 2074, 2074, 2074, 2075, 6895, 6912, 6949, 8909, 6914, 8526, 6878, 6895, 6940, 6879, 6877, 6882, 6882, 6882, 6882, 6882, 6882, 6882, 6882, 6882, 6940, 8911, 6902, 2075, 6915, 6987, 6950, 6977, 6916, 6895, 2075, 6949, 6878, 6883, 6883, 6883, 6883, 6883, 6883, 6883, 6883, 6883, 6915, 6913, 2075, 6949, 2075, 6896, 2075, 7047, 6950, 2075, 6940, 6902, 6915, 6950, 2075, 6896, 6916, 2075, 7047, 2075, 6933, 2075, 6896, 2075, 2075, 2075, 2076, 6917, 6902, 6918, 6918, 6913, 6933, 2076, 6884, 6884, 6884, 6884, 6884, 6884, 6884, 6884, 6884, 6902, 6896, 6933, 6915, 2076, 6955, 2076, 6916, 2076, 6913, 8927, 2076, 7024, 6961, 6961, 6917, 2076, 6918, 6921, 2076, 6961, 2076, 6913, 2076, 7024, 2076, 2076, 2076, 2076, 2077, 6955, 7367, 6917, 6934, 6918, 6955, 2077, 6908, 6908, 6908, 6908, 6908, 6908, 6908, 6908, 6908, 7824, 6917, 6921, 6917, 2077, 6918, 2077, 2077, 2077, 7038, 7027, 2077, 6936, 7367, 6920, 6920, 2077, 6934, 2077, 2077, 7052, 2077, 7027, 2077, 7041, 2077, 2077, 2077, 2078, 6934, 6936, 7052, 7041, 6954, 7038, 2078, 6921, 6958, 6919, 6919, 6920, 6984, 6936, 6934, 7824, 6920, 6978, 6984, 7026, 2078, 6936, 2078, 6978, 2078, 6922, 6922, 2078, 6937, 6956, 6938, 2078, 2078, 6920, 6954, 2078, 7043, 2078, 6958, 2078, 6919, 2078, 2078, 2078, 2079, 7046, 6937, 6978, 6938, 7026, 6920, 2079, 7644, 7046, 7048, 6957, 6922, 6919, 6937, 6956, 6938, 7043, 7026, 6958, 6981, 2079, 6919, 2079, 6954, 2079, 6981, 8944, 2079, 6922, 6919, 6984, 7644, 2079, 7200, 7048, 2079, 2079, 2079, 6937, 2079, 6957, 2079, 2079, 2079, 2080, 6922, 6922, 6938, 7574, 6956, 7072, 2080, 6928, 6928, 6928, 6928, 6928, 6928, 6928, 6928, 6928, 7072, 7200, 7051, 6985, 2080, 7082, 2080, 6982, 2080, 6985, 7051, 2080, 6986, 6982, 6957, 7574, 2080, 7082, 6986, 2080, 6981, 2080, 7095, 2080, 7095, 2080, 2080, 2080, 2081, 2081, 6931, 6992, 6992, 7095, 2081, 8945, 8701, 6992, 8946, 6931, 6931, 6931, 6931, 6931, 6931, 6931, 6931, 6931, 6964, 6964, 6964, 6964, 6964, 6964, 6964, 6964, 6964, 7055, 6982, 2081, 6931, 6985, 6993, 6995, 6995, 7055, 2081, 6996, 6993, 6995, 7062, 6993, 6964, 6996, 8701, 6986, 6996, 7105, 7062, 7000, 2081, 7065, 2081, 2081, 2081, 7000, 7071, 2081, 2081, 7065, 7001, 7001, 2081, 7827, 7071, 2081, 7001, 2081, 7073, 2081, 7002, 2081, 2081, 2081, 2082, 7194, 7002, 7105, 7953, 7002, 7194, 2082, 6966, 6966, 6966, 6966, 6966, 6966, 6966, 6966, 6966, 7194, 7004, 7073, 7710, 2082, 7185, 2082, 7004, 2082, 7005, 7005, 2082, 7008, 7185, 7012, 7005, 2082, 2082, 7008, 2082, 7012, 2082, 7126, 2082, 7006, 2082, 2082, 2082, 2083, 7465, 7006, 7710, 7127, 7006, 7953, 2083, 7827, 6966, 6967, 6967, 6967, 6967, 6967, 6967, 6967, 6967, 6967, 6967, 6967, 2083, 7139, 2083, 7126, 2083, 7009, 7009, 2083, 7127, 7465, 7139, 7009, 2083, 7127, 2083, 2083, 7111, 2083, 7111, 2083, 7010, 2083, 2083, 2083, 2084, 7128, 7010, 7111, 8955, 7010, 7234, 2084, 6968, 6968, 6968, 6968, 6968, 6968, 6968, 6968, 6968, 7234, 7013, 7013, 7014, 2084, 8961, 2084, 7013, 2084, 7014, 7233, 2084, 7014, 7144, 7128, 7165, 2084, 7128, 7233, 2084, 8697, 2084, 7144, 2084, 7165, 2084, 2084, 2084, 2085, 7029, 7029, 7029, 7029, 7029, 7029, 2085, 8181, 7192, 6969, 6968, 6969, 6969, 6969, 6969, 6969, 6969, 6969, 6969, 6969, 2085, 7029, 2085, 7147, 2085, 7147, 8697, 2085, 7238, 8976, 8181, 2085, 2085, 7192, 7147, 2085, 7238, 2085, 2085, 2085, 7074, 2085, 2085, 2085, 2086, 7031, 7031, 7031, 7031, 7031, 7074, 2086, 6970, 6970, 6970, 6970, 6970, 6970, 6970, 6970, 6970, 7149, 7074, 7242, 7168, 2086, 7031, 2086, 7246, 2086, 7149, 7242, 2086, 7168, 7176, 8977, 7246, 2086, 8987, 7074, 2086, 7203, 2086, 7176, 2086, 7149, 2086, 2086, 2086, 2086, 2087, 6999, 6999, 6999, 6999, 6999, 6999, 6999, 6999, 6999, 7021, 7021, 7021, 7021, 7021, 7021, 7021, 7021, 7021, 6970, 7256, 7203, 2087, 7100, 7100, 7100, 7100, 7100, 7256, 2087, 7028, 7028, 7028, 7028, 7028, 7028, 7028, 7028, 7028, 7215, 8988, 7239, 9174, 2087, 7100, 2087, 7075, 2087, 7215, 7261, 2087, 7028, 7239, 7198, 7198, 2087, 7075, 7261, 2087, 7203, 2087, 7201, 2087, 7075, 2087, 2087, 2087, 2088, 7075, 7030, 7030, 7030, 7030, 7030, 7030, 7030, 7030, 7030, 7032, 7032, 7032, 7032, 7032, 7032, 7198, 7075, 7173, 7032, 7173, 2088, 7030, 7201, 2088, 8979, 7634, 7125, 2088, 7173, 7243, 7032, 7061, 7061, 7061, 7061, 7061, 7061, 7061, 7061, 7061, 7243, 2088, 8979, 2088, 7076, 2088, 7210, 7061, 2088, 7198, 7217, 7077, 7634, 2088, 7076, 7201, 2088, 7125, 2088, 7078, 2088, 7077, 2088, 2088, 2088, 2089, 7076, 7078, 7080, 7076, 7096, 7061, 7096, 7077, 7125, 7141, 7210, 7078, 7080, 7077, 7217, 7096, 2089, 7076, 7141, 7080, 7125, 2089, 7096, 7078, 7077, 7141, 7212, 7848, 2089, 7081, 7081, 7081, 7081, 7081, 7081, 7081, 7081, 7081, 7171, 7166, 7078, 7080, 2089, 7266, 2089, 7270, 2089, 7171, 7166, 2089, 7081, 7266, 7210, 7270, 2089, 7166, 7212, 2089, 9177, 2089, 7204, 2089, 7171, 2089, 2089, 2089, 2090, 7092, 7092, 7092, 7092, 7092, 7092, 7092, 7092, 7092, 7092, 7093, 7093, 7093, 7093, 7093, 7093, 7093, 7093, 7093, 7093, 7222, 2090, 7211, 7204, 7848, 7212, 7235, 8025, 2090, 7094, 7094, 7094, 7094, 7094, 7094, 7094, 7094, 7094, 7094, 7170, 7302, 7197, 2090, 8251, 2090, 7222, 2090, 7197, 7170, 2090, 7204, 7235, 7211, 7302, 2090, 7170, 8025, 2090, 7302, 2090, 7206, 2090, 7253, 2090, 2090, 2090, 2091, 7197, 7099, 7099, 7099, 7099, 7099, 7099, 7099, 7099, 7099, 7108, 7108, 7108, 7108, 7108, 7108, 7108, 7108, 7108, 7108, 7253, 2091, 7099, 7206, 7960, 7211, 7205, 7258, 2091, 7109, 7109, 7109, 7109, 7109, 7109, 7109, 7109, 7109, 7109, 7177, 7257, 8251, 2091, 9322, 2091, 7206, 2091, 7213, 7177, 2091, 2091, 7257, 7258, 7213, 2091, 7177, 7205, 2091, 7960, 2091, 7177, 2091, 7263, 2091, 2091, 2091, 2092, 7110, 7110, 7110, 7110, 7110, 7110, 7110, 7110, 7110, 7110, 7213, 7112, 7205, 7112, 7121, 7121, 7121, 7121, 7121, 7177, 7263, 2092, 7112, 7121, 7486, 7122, 7207, 7314, 2092, 7112, 7262, 7216, 7216, 7486, 7122, 7122, 7122, 7122, 7122, 7178, 7267, 7262, 2092, 7122, 2092, 7276, 2092, 7278, 7178, 2092, 9283, 7267, 7314, 7276, 2092, 7208, 7207, 2092, 7278, 2092, 7178, 2092, 7216, 2092, 2092, 2092, 2093, 7123, 7123, 7123, 7123, 7123, 7123, 7123, 7123, 7123, 7137, 7137, 7137, 7137, 7137, 7137, 7137, 7137, 7137, 7208, 7178, 7630, 2093, 9283, 7207, 8372, 7225, 7630, 7143, 2093, 7143, 7143, 7143, 7143, 7143, 7143, 7143, 7143, 7143, 7143, 7281, 7282, 9350, 2093, 7225, 2093, 7285, 2093, 7281, 7312, 2093, 7208, 7282, 7208, 7285, 2093, 7225, 7312, 2093, 8372, 2093, 7949, 2093, 7224, 2093, 2093, 2093, 2094, 7145, 7224, 7145, 7145, 7145, 7145, 7145, 7145, 7145, 7145, 7145, 7145, 7146, 7289, 7146, 7146, 7146, 7146, 7146, 7146, 7949, 2094, 7291, 7146, 7294, 7224, 7209, 7313, 2094, 7161, 7161, 7161, 7161, 7161, 7161, 7161, 7161, 7161, 7313, 9371, 7317, 7289, 2094, 7289, 2094, 2094, 2094, 7294, 7317, 2094, 2094, 7324, 7291, 7294, 2094, 7227, 7209, 2094, 8601, 2094, 7320, 2094, 7324, 2094, 2094, 2094, 2105, 2105, 7320, 2105, 2105, 2105, 2105, 2105, 2105, 7162, 7162, 7162, 7162, 7162, 7162, 7162, 7162, 7162, 7291, 7227, 7297, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 7209, 8601, 7328, 7297, 7227, 2105, 7946, 7209, 7297, 7298, 7328, 2105, 7163, 7163, 7163, 7163, 7163, 7163, 7163, 7163, 7163, 9376, 2105, 2105, 2105, 2105, 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, 7325, 7329, 7946, 7298, 9386, 7330, 2107, 2107, 2107, 2107, 2107, 2107, 7329, 7304, 7298, 7301, 7301, 7304, 7226, 7298, 7463, 7301, 7304, 7333, 7724, 7325, 7357, 7226, 7226, 7226, 7330, 7333, 2107, 2107, 2107, 2107, 2107, 2107, 2110, 2110, 2110, 2110, 2110, 2110, 2110, 2110, 2110, 2110, 7226, 7334, 7463, 7357, 7724, 7337, 2110, 2110, 2110, 2110, 2110, 2110, 7334, 7337, 7343, 7346, 7355, 7388, 7228, 7356, 7389, 7600, 7343, 7346, 7355, 7388, 7226, 7228, 7228, 7228, 7356, 7389, 2110, 2110, 2110, 2110, 2110, 2110, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 7390, 7228, 7395, 7400, 7600, 9390, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 7277, 7277, 7277, 7277, 7277, 7277, 7277, 7277, 7277, 7385, 9393, 7393, 7390, 7947, 7395, 7400, 7277, 7352, 7351, 7393, 2112, 2112, 2112, 2112, 2112, 2112, 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, 7350, 7351, 7383, 7385, 7277, 7947, 2116, 2116, 2116, 2116, 2116, 2116, 7352, 7351, 7383, 7352, 7385, 7202, 7398, 7403, 7407, 9402, 7553, 9407, 7421, 8879, 7398, 7403, 7407, 7352, 7351, 7350, 2116, 2116, 2116, 2116, 2116, 2116, 2118, 2118, 2118, 2118, 2118, 2118, 2118, 2118, 2118, 7202, 7350, 7421, 7394, 7399, 7553, 7202, 2118, 2118, 2118, 2118, 2118, 2118, 7363, 7394, 7399, 7350, 7404, 7420, 7419, 7425, 8879, 7553, 7363, 7424, 7426, 7202, 7419, 7404, 7420, 7363, 7425, 7424, 2118, 2118, 2118, 2118, 2118, 2118, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 7431, 7426, 7430, 7363, 7429, 7435, 2128, 2128, 2128, 2128, 2128, 2128, 7429, 7430, 7434, 7441, 7435, 7290, 7631, 7631, 9411, 9414, 7434, 7441, 7631, 7431, 7290, 7290, 7290, 7290, 7290, 7290, 2128, 2128, 2128, 2128, 2128, 2128, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 7290, 7382, 7382, 7382, 7382, 7382, 7447, 2130, 2130, 2130, 2130, 2130, 2130, 7413, 7413, 7413, 7413, 7413, 7413, 7413, 7413, 7413, 7382, 7438, 7444, 7459, 7438, 9427, 7459, 7413, 9429, 7447, 7444, 2130, 2130, 2130, 2130, 2130, 2130, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 7452, 7445, 7471, 7438, 7413, 7459, 2142, 2142, 2142, 2142, 2142, 2142, 7445, 7446, 7446, 7446, 7446, 7446, 7446, 7446, 7446, 7446, 7450, 7455, 8703, 7452, 7479, 7471, 9430, 7446, 7450, 7455, 2142, 2142, 2142, 2142, 2142, 2142, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 7481, 9434, 7451, 7456, 7479, 8703, 7446, 2144, 2144, 2144, 2144, 2144, 2144, 7451, 7456, 7462, 7469, 7470, 7475, 7478, 7477, 7358, 8221, 7462, 7469, 7481, 7475, 7478, 7470, 7507, 7358, 7477, 9436, 2144, 2144, 2144, 2144, 2144, 2144, 2152, 7358, 2152, 2152, 2152, 2152, 2152, 2152, 2152, 2152, 2152, 2152, 8221, 7358, 7480, 7488, 7507, 7492, 2152, 2152, 2152, 2152, 2152, 2152, 7488, 7480, 7492, 7494, 7504, 7518, 7358, 7488, 7532, 7535, 7521, 9437, 7494, 7504, 7518, 8265, 8608, 7532, 7535, 7494, 2152, 2152, 2152, 2152, 2152, 2152, 2156, 2156, 2156, 2156, 2156, 2156, 2156, 2156, 2156, 2156, 7521, 7551, 8265, 7496, 7497, 7498, 2156, 2156, 2156, 2156, 2156, 2156, 7496, 7497, 7498, 7632, 7578, 8608, 7551, 7499, 7497, 7632, 9441, 9443, 7632, 7497, 7498, 7496, 7578, 7551, 7555, 7499, 2156, 2156, 2156, 2156, 2156, 2156, 2159, 2159, 2159, 2159, 2159, 2159, 2159, 2159, 2159, 2159, 7499, 7500, 7578, 7497, 7498, 7506, 2159, 2159, 2159, 2159, 2159, 2159, 7555, 7500, 7506, 7555, 7641, 7647, 7701, 7501, 7628, 7506, 7593, 7593, 8413, 7647, 7501, 7701, 7641, 7555, 7500, 7501, 2159, 2159, 2159, 2159, 2159, 2159, 2167, 2167, 2167, 2167, 2167, 2167, 2167, 2167, 2167, 7559, 7501, 7502, 7628, 7508, 7593, 7509, 2167, 2167, 2167, 2167, 2167, 2167, 7508, 7502, 7509, 7652, 7502, 7648, 8036, 7512, 8413, 7509, 9444, 7652, 7649, 8036, 7509, 7508, 7648, 7559, 7502, 7512, 2167, 2167, 2167, 2167, 2167, 2167, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 7512, 7649, 7513, 7510, 7509, 7559, 2169, 2169, 2169, 2169, 2169, 2169, 7510, 7520, 7513, 7559, 7559, 7653, 7657, 7662, 9449, 7359, 7520, 7564, 7510, 8227, 7657, 7662, 7653, 7520, 7359, 7513, 2169, 2169, 2169, 2169, 2169, 2169, 2172, 2172, 7359, 2172, 2172, 2172, 2172, 2172, 2172, 7359, 2172, 2172, 7510, 7564, 7359, 9451, 8227, 7514, 8227, 7564, 7516, 2172, 2172, 2172, 2172, 2172, 2172, 2172, 7223, 7514, 7654, 7359, 7516, 2172, 7835, 7516, 7526, 7223, 7223, 7223, 7223, 7223, 7223, 7223, 7223, 7223, 7514, 7522, 7526, 7516, 2172, 2172, 2172, 2172, 7533, 7654, 7522, 7360, 7223, 7538, 7511, 7612, 8504, 7533, 7835, 7526, 7360, 7511, 7538, 8504, 7533, 7522, 7511, 2172, 2173, 2173, 7360, 2173, 2173, 2173, 2173, 2173, 2173, 7538, 2173, 2173, 7581, 7599, 7360, 7511, 9452, 7360, 7582, 7523, 7524, 2173, 2173, 2173, 2173, 2173, 2173, 2173, 7523, 7524, 7581, 7360, 9460, 2173, 7658, 7523, 7582, 7361, 7659, 7598, 7523, 7524, 7581, 7599, 7612, 7658, 7361, 8590, 7582, 7612, 2173, 2173, 2173, 2173, 2191, 2191, 7361, 2191, 2191, 2191, 2191, 2191, 2191, 7659, 2191, 2191, 7523, 7524, 7361, 7598, 8590, 7582, 7598, 7539, 7361, 2191, 2191, 2191, 2191, 2191, 2191, 2191, 7539, 7663, 7599, 7361, 7229, 2191, 7758, 7539, 8161, 8161, 8161, 9462, 7663, 7229, 7229, 7229, 7229, 7229, 7229, 7229, 7229, 7229, 2191, 2191, 2191, 2192, 2192, 7758, 2192, 2192, 2192, 2192, 2192, 2192, 7229, 2192, 2192, 7528, 7528, 7528, 7528, 7528, 7528, 7528, 7528, 7528, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 7758, 7558, 7668, 7667, 9463, 2192, 7362, 7362, 7584, 7515, 7569, 7667, 7597, 7668, 7664, 7362, 7515, 2192, 9476, 9477, 7584, 7515, 2192, 2192, 2192, 7362, 7378, 7378, 7378, 7378, 7378, 7378, 7378, 7378, 7378, 7558, 7558, 7362, 7515, 7664, 7569, 7558, 7597, 7584, 2192, 2194, 2194, 7378, 2194, 2194, 2194, 2194, 2194, 2194, 7362, 2194, 2194, 7529, 7529, 7529, 7529, 7529, 7529, 7529, 7529, 7529, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 7569, 9491, 7597, 7561, 2194, 7379, 7379, 7379, 7379, 7379, 7379, 7379, 7379, 7379, 8696, 7951, 8386, 8386, 8386, 8509, 9496, 2194, 2194, 2194, 2199, 2199, 7379, 2199, 2199, 2199, 2199, 2199, 2199, 7561, 2199, 2199, 7530, 7530, 7530, 7530, 7530, 7530, 7530, 7530, 7530, 2199, 2199, 2199, 2199, 2199, 2199, 2199, 7951, 8509, 7951, 8696, 7601, 2199, 7381, 7381, 7381, 7381, 7381, 7381, 7381, 7381, 7381, 7561, 8209, 8219, 8973, 9528, 8523, 7561, 2199, 2199, 2199, 2200, 2200, 7381, 2200, 2200, 2200, 2200, 2200, 2200, 7601, 2200, 2200, 7546, 7546, 7546, 7546, 7546, 7546, 7546, 7546, 7546, 2200, 2200, 2200, 2200, 2200, 2200, 2200, 2200, 8523, 8973, 8209, 8219, 2200, 7464, 7464, 7464, 7464, 7464, 7464, 7464, 7464, 7464, 7601, 7636, 7636, 7636, 8840, 8840, 8840, 2200, 2200, 2200, 2202, 2202, 7464, 2202, 2202, 2202, 2202, 2202, 2202, 7671, 2202, 2202, 7636, 7594, 9530, 7579, 7580, 7671, 7579, 7536, 7537, 2202, 2202, 2202, 2202, 2202, 2202, 2202, 7536, 7537, 7579, 7677, 9562, 2202, 7580, 7536, 7525, 7552, 7679, 7677, 7536, 7537, 7594, 7525, 7579, 7952, 7580, 9577, 7525, 7679, 2202, 2202, 2202, 2203, 2203, 7594, 2203, 2203, 2203, 2203, 2203, 2203, 7560, 2203, 2203, 7525, 7536, 7537, 7552, 7841, 7841, 7696, 7562, 7540, 2203, 2203, 2203, 2203, 2203, 2203, 2203, 2203, 7540, 7696, 7580, 7552, 2203, 7541, 7952, 7540, 7562, 7571, 7560, 7595, 7540, 7952, 7541, 7552, 7560, 7562, 7841, 9578, 7562, 2203, 2203, 2203, 2204, 2204, 7541, 2204, 2204, 2204, 2204, 2204, 2204, 7682, 2204, 2204, 7560, 9594, 7540, 7571, 7595, 7682, 7571, 7595, 7560, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 7541, 7563, 7562, 8767, 7585, 2204, 2204, 7543, 7543, 7543, 7543, 7543, 7543, 7543, 7543, 7543, 7585, 7686, 7683, 7563, 8241, 7571, 2204, 2204, 2204, 7686, 7702, 8767, 7543, 7683, 8241, 7563, 2204, 2205, 2205, 7702, 2205, 2205, 2205, 2205, 2205, 2205, 7702, 2205, 2205, 7585, 2205, 2205, 2205, 2205, 2205, 2205, 2205, 2205, 2205, 2205, 2205, 2205, 2205, 2205, 2205, 8229, 7605, 8502, 9595, 7563, 2205, 7565, 7566, 7566, 7554, 7605, 7605, 7605, 7605, 7605, 7605, 7605, 7605, 7605, 7772, 7801, 9619, 2205, 2205, 2205, 2206, 2206, 7772, 2206, 2206, 2206, 2206, 2206, 2206, 7554, 2206, 2206, 7565, 7566, 7554, 8229, 7801, 8502, 7568, 7568, 7813, 2206, 2206, 2206, 2206, 2206, 2206, 2206, 7813, 7565, 7566, 7554, 7814, 2206, 7567, 7567, 7715, 7570, 8595, 7832, 7832, 7565, 7801, 7814, 7863, 7715, 7565, 7566, 7566, 7568, 2206, 2206, 2206, 2207, 2207, 7844, 2207, 2207, 2207, 2207, 2207, 2207, 7570, 2207, 2207, 7567, 7568, 7570, 7567, 7863, 7832, 8880, 8595, 7862, 2207, 2207, 2207, 2207, 2207, 2207, 2207, 7576, 7567, 7568, 7862, 7844, 2207, 2207, 9561, 9620, 7576, 7576, 7576, 7576, 7576, 7576, 7576, 7576, 7576, 7567, 7716, 7570, 7817, 2207, 2207, 2207, 8880, 9561, 9706, 7716, 7817, 7576, 7832, 2207, 2209, 2209, 7716, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2210, 7840, 7840, 7857, 9551, 7868, 7873, 7840, 8921, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 7619, 7619, 7619, 7619, 7619, 7619, 7619, 7619, 7619, 8189, 8518, 7611, 7868, 7873, 7840, 7857, 7706, 7611, 7706, 7706, 7706, 7706, 7706, 7706, 7619, 8921, 8189, 7706, 7857, 9551, 8189, 8518, 9722, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2219, 2219, 2219, 2219, 2219, 2219, 2219, 2219, 2219, 2219, 7611, 7583, 7707, 7749, 7707, 7611, 2219, 2219, 2219, 2219, 2219, 2219, 7749, 7707, 9081, 9081, 9081, 9730, 7867, 7583, 7618, 7618, 7618, 7618, 7618, 7618, 7618, 7618, 7618, 7867, 8980, 7583, 2219, 2219, 2219, 2219, 2219, 2219, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 7894, 7638, 7638, 7638, 7638, 7638, 2221, 2221, 2221, 2221, 2221, 2221, 7583, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7638, 7861, 9737, 7894, 8980, 7618, 7855, 8187, 8207, 7861, 2221, 2221, 2221, 2221, 2221, 2221, 2224, 7639, 7639, 7639, 7639, 7639, 7639, 8096, 7855, 2224, 2224, 2224, 2224, 2224, 2224, 2224, 2224, 2224, 2224, 8096, 7855, 7621, 7639, 8187, 8207, 2224, 2224, 2224, 2224, 2224, 2224, 7622, 7622, 7622, 7622, 7622, 7622, 7622, 7622, 7622, 7622, 7622, 7623, 7623, 7623, 7623, 7623, 7623, 7623, 7623, 7623, 2224, 2224, 2224, 2224, 2224, 2224, 2229, 2229, 2229, 2229, 2229, 2229, 2229, 2229, 2229, 2229, 7843, 7843, 7899, 8122, 7708, 7904, 2229, 2229, 2229, 2229, 2229, 2229, 7624, 7708, 7624, 7624, 7624, 7624, 7624, 7624, 7624, 7624, 7624, 7623, 9752, 9763, 7843, 7899, 7708, 8122, 7904, 7843, 2229, 2229, 2229, 2229, 2229, 2229, 2232, 2232, 2232, 2232, 2232, 2232, 2232, 2232, 2232, 2232, 7643, 7643, 7643, 7643, 7643, 7643, 2232, 2232, 2232, 2232, 2232, 2232, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7643, 7733, 7733, 7733, 7733, 7733, 7733, 7733, 7733, 7733, 8868, 2232, 2232, 2232, 2232, 2232, 2232, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 7911, 7920, 7925, 7911, 9768, 7969, 2239, 2239, 2239, 2239, 2239, 2239, 7678, 7678, 7678, 7678, 7678, 7678, 7678, 7678, 7678, 7625, 7752, 8868, 7987, 7941, 7920, 7925, 7678, 7911, 7969, 7752, 2239, 2239, 2239, 2239, 2239, 2239, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 7941, 7987, 7941, 9181, 7678, 7866, 2242, 2242, 2242, 2242, 2242, 2242, 7704, 7866, 7704, 7704, 7704, 7704, 7704, 7704, 7704, 7704, 7704, 7704, 9181, 9863, 7691, 7691, 7691, 7691, 7691, 7691, 2242, 2242, 2242, 2242, 2242, 2242, 2249, 2249, 2249, 2249, 2249, 2249, 2249, 2249, 2249, 7691, 7932, 7936, 7721, 7932, 7721, 7992, 2249, 2249, 2249, 2249, 2249, 2249, 7705, 7721, 7705, 7705, 7705, 7705, 7705, 7705, 7705, 7705, 7705, 7705, 7997, 8028, 8031, 9871, 8052, 7932, 7992, 7936, 2249, 2249, 2249, 2249, 2249, 2249, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 8026, 7997, 8028, 8031, 7722, 8052, 2250, 2250, 2250, 2250, 2250, 2250, 7718, 7722, 7718, 7718, 7718, 7718, 7718, 7718, 7718, 7718, 7718, 7718, 8057, 7940, 8062, 8125, 7722, 9874, 8026, 7940, 2250, 2250, 2250, 2250, 2250, 2250, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 7940, 8057, 8087, 8062, 7755, 8125, 2253, 2253, 2253, 2253, 2253, 2253, 7719, 7755, 7719, 7719, 7719, 7719, 7719, 7719, 7719, 7719, 7719, 7719, 9900, 9180, 9905, 8087, 7755, 8045, 8045, 8045, 2253, 2253, 2253, 2253, 2253, 2253, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 8191, 8208, 7757, 8045, 7757, 7760, 7786, 2260, 2260, 2260, 2260, 2260, 2260, 7757, 7760, 7786, 9180, 7872, 7877, 7637, 7637, 7637, 7637, 7637, 7637, 7637, 7637, 7637, 7872, 7877, 8191, 8208, 8202, 2260, 2260, 2260, 2260, 2260, 2260, 2261, 7637, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 9915, 8220, 8202, 7789, 7791, 7794, 2261, 2261, 2261, 2261, 2261, 2261, 7789, 7791, 7794, 8202, 7798, 7838, 8114, 7640, 7640, 7640, 7640, 7640, 7640, 7798, 7838, 7838, 7640, 7794, 8114, 8220, 2261, 2261, 2261, 2261, 2261, 2261, 2264, 2264, 7640, 2264, 2264, 2264, 2264, 2264, 2264, 7838, 2264, 2264, 7745, 7745, 7745, 7745, 7745, 7745, 7745, 7745, 7745, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 9457, 9457, 9457, 7750, 7720, 2264, 7720, 7720, 7720, 7720, 7720, 7720, 7750, 2264, 7836, 7720, 8097, 9553, 7802, 7750, 9553, 8610, 2264, 2264, 2264, 2265, 2265, 7802, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 7735, 8097, 7802, 7893, 7836, 7898, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 7836, 7893, 8610, 7898, 8115, 2265, 7903, 7642, 7642, 7642, 7642, 7642, 7642, 7642, 7642, 7642, 8115, 7903, 7735, 8098, 9919, 9608, 2265, 2265, 2265, 2265, 2266, 2266, 7642, 2266, 2266, 2266, 2266, 2266, 2266, 7735, 2266, 2266, 7871, 9608, 9922, 7938, 8210, 7735, 8098, 7852, 7871, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 7852, 7852, 7852, 8883, 7908, 2266, 7746, 7746, 7746, 7746, 7746, 7746, 7746, 7746, 7746, 7908, 8103, 7938, 2266, 7754, 8210, 7852, 2266, 2266, 2266, 2266, 2267, 2267, 7754, 2267, 2267, 2267, 2267, 2267, 2267, 7754, 2267, 2267, 2267, 2267, 2267, 8103, 9931, 8883, 8188, 7854, 7938, 2267, 2267, 2267, 2267, 2267, 2267, 2267, 7854, 7854, 7854, 7854, 7854, 2267, 7747, 7747, 7747, 7747, 7747, 7747, 7747, 7747, 7747, 8043, 8043, 8043, 8043, 8043, 8188, 7854, 2267, 2267, 2267, 2267, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 8043, 8188, 8235, 7761, 7762, 7788, 2276, 2276, 2276, 2276, 2276, 2276, 7761, 7762, 7788, 7876, 7918, 9936, 7837, 7761, 7880, 7788, 7892, 7876, 7761, 7762, 7837, 7918, 7880, 8695, 7892, 8235, 2276, 2276, 2276, 2276, 2276, 2276, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 8111, 7837, 8113, 7761, 7762, 8695, 8894, 2278, 2278, 2278, 2278, 2278, 2278, 7780, 7780, 7780, 7780, 7780, 7780, 7780, 7780, 7780, 7897, 7902, 7907, 8111, 8186, 8113, 9243, 8894, 7897, 7902, 7907, 2278, 2278, 2278, 2278, 2278, 2278, 2286, 2286, 2286, 2286, 2286, 2286, 2286, 2286, 2286, 2286, 9243, 9940, 8186, 7792, 7793, 7796, 2286, 2286, 2286, 2286, 2286, 2286, 7792, 7793, 7796, 7914, 9943, 8119, 7858, 7792, 7924, 7796, 7917, 7914, 7792, 7793, 8119, 7858, 7858, 7858, 7917, 7924, 2286, 2286, 2286, 2286, 2286, 2286, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 7858, 7929, 7792, 7793, 7800, 7803, 2294, 2294, 2294, 2294, 2294, 2294, 7929, 7800, 7803, 7923, 7928, 7935, 7856, 8698, 7800, 7803, 7948, 7923, 7928, 7935, 7803, 7856, 7856, 7856, 7948,10095, 2294, 2294, 2294, 2294, 2294, 2294, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 8133, 7856, 8143, 8154, 7804, 7803, 8698, 2295, 2295, 2295, 2295, 2295, 2295, 7804, 7886, 7886, 7886, 7886, 7886, 7886, 7886, 7886, 7886, 7967, 7972, 7804, 8133, 7856, 8143, 8154, 7886, 7967, 7972, 2295, 2295, 2295, 2295, 2295, 2295, 2299, 2299, 7968, 2299, 2299, 2299, 2299, 2299, 2299, 7954, 2299, 2299, 7804, 7968,10113, 7886,10116,10117, 7973, 7977, 7991, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 7690, 7973, 7977, 7991, 9344, 2299, 8022, 8255, 8171, 7690, 7690, 7690, 7690, 7690, 7690, 7690, 7690, 7690, 7954, 7976, 7980, 7990, 2299, 2299, 2299, 7995, 7954, 7976, 7980, 7990, 7690, 9344, 8270, 7995, 8171,10120, 8255, 8022, 2299, 2301, 2301, 7996, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 8000, 7996, 9554, 8022, 8222, 8001, 8270, 8223, 8000, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 8001, 8004, 8010, 8011, 8014, 2301, 8015, 8018, 8050, 8004, 8010, 8022, 8014, 8038, 8011, 8018, 8050, 8015, 8222, 9554, 8038, 8223, 2301, 2301, 2301, 2301, 2302, 2302, 8038, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 8055, 8047, 8047, 8047, 8047, 8047, 8051, 8056, 8055, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 8060, 8051, 8056, 8061, 8065, 2302, 8047, 8024, 8060, 8066, 8069, 8076, 8065, 8079, 8061, 8275, 8280, 8086, 8069, 8076, 8066, 8079, 2302, 2302, 2302, 2302, 2304, 2304, 8086, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 8024, 8899, 8275, 8280, 9468, 9468, 9468, 8102, 8024, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 7711, 8024, 8102, 8878,10121, 2304, 8109, 8085, 9176, 7711, 7711, 7711, 7711, 7711, 7711, 8085, 8094, 8109, 7711, 8101, 8107, 8110, 2304, 2304, 2304, 2304, 8094, 8101, 8107, 8110, 7711, 8878, 8117, 8094, 2304, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 8117, 2309, 2309, 8117, 8613, 9176, 8899, 8899, 8112, 8217, 8613, 8094, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 8112, 8129, 8217, 9247, 7850, 2309, 8124, 8132, 8613, 8225, 8129, 8124, 8132, 7850, 7850, 7850, 7850, 7850, 7850, 7850, 7850, 7850, 2309, 2309, 2309, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 7850, 2310, 2310, 8124, 8132, 8225, 9247,10129, 8217,10130, 8710, 8121, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 8121, 8139, 8710, 7851, 2310, 9251, 8142, 8121, 8230, 8256, 8139, 8142, 7851, 7851, 7851, 7851, 7851, 7851, 7851, 7851, 7851, 2310, 2310, 2310, 2314, 2314, 2314, 2314, 2314, 2314, 2314, 2314, 2314, 7851, 2314, 2314, 8910, 8142, 8230, 8256,10138, 8910, 9251, 8269, 8130, 2314, 2314, 2314, 2314, 2314, 2314, 2314, 8116, 8130, 8269, 8766, 7853, 2314, 8699, 8116, 8130, 8234, 8192, 2314, 8116, 7853, 7853, 7853, 7853, 7853, 7853, 7853, 7853, 7853, 2314, 2314, 2314, 2315, 2315, 2315, 2315, 2315, 2315, 2315, 2315, 2315, 7853, 2315, 2315, 8766, 8699, 8234, 8192,10139,10151, 8713, 8140, 8150, 2315, 2315, 2315, 2315, 2315, 2315, 2315, 8140, 8150, 8713, 10152,10165, 2315, 9337, 8140, 8285, 7919, 7919, 7919, 7919, 7919, 7919, 7919, 7919, 7919, 8168, 8126, 8134, 8192, 2315, 2315, 2315, 7919, 8234, 8168, 8126, 8134, 2315, 2330, 2330, 8285, 2330, 2330, 2330, 2330, 2330, 2330, 8088, 2330, 2330, 8126, 8134, 9337, 8242, 8214, 8237, 7919, 8088, 8151, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 7937, 8151, 8237, 8088, 8290, 2330, 8214, 8913, 8151, 7937, 7937, 7937, 7937, 7937, 7937, 7937, 7937, 7937, 8214, 8913, 8088, 8237, 2330, 2330, 2330, 2333, 8153, 8242, 8328, 8290, 7937, 8153, 8242, 2333, 2333, 2333, 2333, 2333, 2333, 2333, 2333, 2333, 2333, 8075, 8075, 8075, 8075, 8075, 8075, 8075, 8075, 8075, 8144, 8155, 8172, 2333, 2334, 8153, 8328, 8075, 8306, 8144, 8155, 8172, 2334, 2334, 2334, 2334, 2334, 2334, 2334, 2334, 2334, 2334, 8248, 8248, 8144, 8155, 8172, 8023, 8268, 8248, 8311, 8075, 8483, 8306, 2334, 2335, 8268, 8023, 8023, 8023, 8023, 8023, 8023, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335,10166,10175, 8311,10177, 8483, 8023, 8044, 8044, 8044, 8044, 8044, 8044, 2335, 2336, 2336, 8044, 2336, 2336, 2336, 2336, 2336, 2336, 8023, 2336, 2336, 8273, 8213, 8044, 8226, 8163, 8164, 8176, 8193, 8273, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 8163, 8164, 8176, 8213, 8195, 2336, 8040, 8040, 8040, 8040, 8040, 8040, 8040, 8040, 8040, 8213, 8226, 8163, 8164, 8176,10178, 8193, 2336, 2336, 2336, 2337, 2337, 8040, 2337, 2337, 2337, 2337, 2337, 2337, 8195, 2337, 2337, 8162, 8162, 8162, 8162, 8162, 8162, 8162, 8162, 8162, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 8213, 8226, 8193, 9261, 8195, 2337, 8042, 8042, 8042, 8042, 8042, 8042, 8042, 8042, 8042, 8195, 8137, 8147, 8346, 8365,10187, 9336, 2337, 2337, 2337, 8137, 8147, 8042, 8046, 8046, 8046, 8046, 8046, 8046, 8046, 8046, 8046, 8137, 8147, 9487, 9261, 2337, 9336, 8847, 8346, 8365, 2337, 2344, 2344, 8046, 2344, 2344, 2344, 2344, 2344, 2344, 8090, 2344, 2344, 8539, 8847, 8228, 9487, 8137, 8147, 8089, 8090, 8136, 2344, 2344, 2344, 2344, 2344, 2344, 2344, 8089, 8136, 8847, 8090, 8091, 2344, 8090, 8089, 8136, 8539, 8092, 8232, 8089, 8136, 8091, 8228, 8158, 2344, 8092, 8211, 8090, 8228, 2344, 2344, 2344, 8158, 8091, 8274, 8092, 8089, 2344, 8211, 8091,10228, 8585, 8165, 8544, 8158, 8274, 8136, 8092, 8232, 8165, 8091, 2344, 2346, 2346, 8165, 2346, 2346, 2346, 2346, 2346, 2346, 8279, 2346, 2346, 8092, 8216, 8211, 8585, 8544, 8166, 8158, 8165, 8279, 2346, 2346, 2346, 2346, 2346, 2346, 2346, 8194, 8166, 8232, 8216, 8166, 2346, 8095, 8095, 8095, 8095, 8095, 8095, 8095, 8095, 8095, 8216, 8146, 2346, 8166,10275, 8170, 8218, 2346, 2346, 2346, 8146, 8157, 8095, 8190, 8170, 8194, 8175, 8146, 8218,10287, 8157, 8170, 8146, 8175, 8194, 8216, 8408, 8157, 8175, 2346, 2348, 2348, 8157, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 8231, 8218, 8190, 8175, 8215, 8408, 8146, 8194, 8173, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 8157, 8173, 9493, 8190, 8278, 2348, 8215, 8174, 8173, 8205, 8205, 8190, 8278, 8173, 8231, 8408, 8174,10288, 8215, 9493, 8231,10321, 2348, 2348, 2348, 2348, 2349, 2349, 8174, 2349, 2349, 2349, 2349, 2349, 2349, 8336, 2349, 2349, 9340, 8173, 8205, 8253, 8233, 8212, 8336, 8284, 8205, 2349, 2349, 2349, 2349, 2349, 2349, 2349, 8174, 8212, 8284, 8205, 8215, 2349, 8178, 8178, 8178, 8178, 8178, 8178, 8178, 8178, 8178, 8212,10322, 8774, 8233, 9340, 8205, 8212, 2349, 2349, 2349, 8179, 8179, 8179, 8179, 8179, 8179, 8179, 8179, 8179, 8180, 8180, 8180, 8180, 8180, 8180, 8180, 8180, 8180, 8774, 8253, 8283, 8288, 8289, 8293, 8253, 2349, 2350, 8233, 8283, 8288, 8549, 8293, 8233, 8289, 8294, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 8182, 8294, 8182, 8182, 8182, 8182, 8182, 8182, 8182, 8182, 8182, 8549, 8300, 8252, 8303, 8304, 8309, 8310, 8339, 8252, 8300, 8314, 8303, 8182, 8309, 8959, 8304, 8339, 8310, 8314,10244, 9339, 8959, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2351, 2351, 2351, 2351, 2351, 2351, 2351, 2351, 2351, 8315, 2351, 2351, 8252, 9339,10244, 8297, 9352, 8252, 8297, 8861, 8315, 2351, 2351, 2351, 2351, 2351, 2351, 2351, 2351, 8318, 8321, 2351, 8318, 2351, 8356, 8344, 8363, 2351, 8321, 8338, 2351, 2351, 2351, 8356, 8297, 2351, 8344, 8363, 8338, 8428, 2351, 2351, 2351, 8861, 9352, 8338, 8500, 8196, 8318, 8183, 8428, 8183, 8183, 8183, 8183, 8183, 8183, 8183, 8183, 8183, 9182, 8197, 2351, 2352, 2352, 8196, 2352, 2352, 2352, 2352, 2352, 2352, 8183, 2352, 2352, 8773, 8500, 8196, 8612, 8197, 8773, 8524, 8482, 8340, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 8197, 8340, 8482, 9182, 8184, 2352, 8184, 8184, 8184, 8184, 8184, 8184, 8184, 8184, 8184, 8773, 8340, 8612, 8196, 8524, 8196, 9579, 2352, 2352, 2352, 2353, 2353, 8184, 2353, 2353, 2353, 2353, 2353, 2353, 8197, 2353, 2353, 8198, 8199, 8200, 8258, 8258, 8258, 8258, 8258, 8345, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 8345, 8358, 8198, 8199, 8200, 2353, 9579, 8343, 8258, 8343, 8358, 8200, 8203, 8364, 8198, 8199, 8200, 8358, 8343, 8393, 8360, 8364, 2353, 2353, 2353, 8450, 8455, 9254, 8393, 8360, 2353, 2355, 2355, 8201, 2355, 2355, 2355, 2355, 2355, 2355, 8198, 2355, 2355, 8203, 8360,10421, 8450, 8455, 8198, 8199, 8200, 8201, 2355, 2355, 2355, 2355, 2355, 2355, 2355, 10241, 8203, 9254, 8359, 8201, 2355, 8362, 8396, 8362, 8203, 8204, 8204, 8359, 8450, 8455, 8574, 8396, 8362, 8203, 8398, 8867, 8359, 2355, 2355, 2355, 2355, 2356, 2356, 8398, 2356, 2356, 2356, 2356, 2356, 2356, 2356, 2356, 2356, 8201, 8201, 8574, 8204, 8584,10241, 8867, 8401, 8405, 2356, 2356, 2356, 2356, 2356, 2356, 2356, 8401, 8405, 9616,10443, 8204, 2356, 8257, 8257, 8257, 8257, 8257, 8257, 8257, 8257, 8257, 8401, 8206, 8206, 8584, 8487, 8443, 8204, 2356, 2356, 2356, 2356, 8373, 8257, 8204, 8443, 8487, 8420, 8427, 8259, 8259, 8259, 8259, 8259, 8259, 8420, 8427, 9616, 8259, 8584, 2356, 2359, 2359, 8206, 2359, 2359, 2359, 2359, 2359, 2359, 8259, 2359, 2359, 8373, 8262, 8262, 8262, 8262, 8262, 8262, 8206, 8538, 2359, 2359, 2359, 2359, 2359, 2359, 2359, 8206, 8373, 8984, 8538,10451, 2359, 8262, 8206, 8206, 8260, 8260, 8260, 8260, 8260, 8260, 8260, 8260, 8260, 8373, 8409, 9267, 8431, 2359, 2359, 2359, 8511, 8984, 8543, 8409, 8431, 8260, 8480, 8263, 8263, 8263, 8263, 8263, 8263, 8543, 8480, 2359, 2365, 2365, 8409, 2365, 2365, 2365, 2365, 2365, 2365, 8400, 2365, 2365, 8263, 8510, 8511, 8511, 9267, 8844, 8400, 8446, 8452, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 8446, 8452, 8400,10459, 10480, 2365, 8261, 8261, 8261, 8261, 8261, 8261, 8261, 8261, 8261, 8510, 8395, 2365, 8486, 8844, 8461,10578, 2365, 2365, 2365, 8395, 8486, 8261, 8400, 8461, 2365, 8403, 8395, 8264, 8264, 8264, 8264, 8264, 8264, 9419, 8403, 8510, 8264, 9263, 2365, 2366, 2366, 8403, 2366, 2366, 2366, 2366, 2366, 2366, 8264, 2366, 2366, 8342, 8342, 8342, 8342, 8342, 8342, 8342, 8342, 8342, 2366, 2366, 2366, 2366, 2366, 2366, 2366, 8490, 8596, 2366, 2366, 9263, 2366, 9419, 8916, 8490, 8305, 8305, 8305, 8305, 8305, 8305, 8305, 8305, 8305, 8449, 8916,10583, 8548, 2366, 2366, 2366, 8305, 8596, 8449, 2366, 2366, 2371, 2371, 8548, 2371, 2371, 2371, 2371, 2371, 2371, 2371, 2371, 2371, 8449, 8348, 8348, 8348, 8348, 8348, 8348, 8305, 8456, 2371, 2371, 2371, 2371, 2371, 2371, 2371, 9513, 8456, 9641, 9641, 9641, 2371, 8348, 8323, 8323, 8323, 8323, 8323, 8323, 8323, 8323, 8323, 8456,10183,10183,10183,10593, 9513, 2371, 2371, 2371, 2371, 2386, 2386, 8323, 2386, 2386, 2386, 2386, 2386, 2386, 9272, 2386, 2386, 8371, 8371, 8371, 8371, 8371, 8371, 8371, 8371, 8371, 2386, 2386, 2386, 2386, 2386, 2386, 2386, 8711, 8711, 8711, 8507, 8507, 2386, 8347, 8347, 8347, 8347, 8347, 8347, 8347, 8347, 8347,10070,10597,10600, 9272, 10608,10070, 8711, 2386, 2386, 2386, 2387, 2387, 8347, 2387, 2387, 2387, 2387, 2387, 2387, 8507, 2387, 2387, 8387, 8387, 8387, 8387, 8387, 8387, 8387, 8387, 8387, 2387, 2387, 2387, 2387, 2387, 2387, 2387, 2387, 8464, 8507, 8407, 8350, 2387, 8520, 8520, 9277, 8586, 8464, 8444, 8407, 8350, 8350, 8350, 8350, 8350, 8350, 8407, 8444, 9555, 2387, 2387, 2387, 2398, 2398, 8444, 2398, 2398, 2398, 2398, 2398, 2398, 8350, 2398, 2398, 8520, 8522, 8586, 8520,10613, 9277,10617, 8399, 8410, 2398, 2398, 2398, 2398, 2398, 2398, 2398, 8399, 8410, 8522, 9555, 9281, 2398, 9953, 8399, 8410, 8586, 8888, 8522, 8399, 8410, 8419, 8419, 8419, 8419, 8419, 8419, 8419, 8419, 2398, 2398, 2398, 2399, 2399, 8851, 2399, 2399, 2399, 2399, 2399, 2399, 8419, 2399, 2399, 8611, 8399, 8410, 8888, 9281,10620, 9953, 8553, 8411, 2399, 2399, 2399, 2399, 2399, 2399, 2399, 2399, 8411, 8553, 8467, 8851, 2399,10634, 9877, 8845, 8611, 8508, 8508, 8467, 8411, 8426, 8426, 8426, 8426, 8426, 8426, 8426, 8426, 2399, 2399, 2399, 2400, 2400, 8467, 2400, 2400, 2400, 2400, 2400, 2400, 8458, 2400, 2400, 8845, 8851, 8411, 8521, 8508, 9877, 8458, 8508, 8521, 2400, 2400, 2400, 2400, 2400, 2400, 2400, 8515, 8515, 8458, 8521, 8782, 2400, 8515, 2400, 8439, 8439, 8439, 8439, 8439, 8439, 8439, 8439, 8439, 8508, 8537, 8542, 8448, 8573, 2400, 2400, 2400, 9873, 8537, 8542, 8458, 8448, 8782, 8515, 8573, 2400, 2404, 2404, 8448, 2404, 2404, 2404, 2404, 2404, 2404, 8587, 2404, 2404, 8440, 8440, 8440, 8440, 8440, 8440, 8440, 8440, 8440, 2404, 2404, 2404, 2404, 2404, 2404, 2404, 9353, 9353, 9353, 9873, 8587, 2404, 8441, 8441, 8441, 8441, 8441, 8441, 8441, 8441, 8441, 8587,10491,10491,10491,10637, 8547, 9353, 2404, 2404, 2404, 2404, 2405, 2405, 8547, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2414, 8598, 2414, 2414, 2414, 2414, 2414, 2414, 2414, 2414, 2414, 2414, 8598,10658, 8621, 8454, 8457, 8462, 2414, 2414, 2414, 2414, 2414, 2414, 8454, 8457, 8462, 8552, 8556, 8620, 8563, 8454, 8457, 8462, 8566, 8552, 8556, 8457, 8563, 8621, 8620, 8792, 8566, 8465, 2414, 2414, 2414, 2414, 2414, 2414, 2419, 2419, 8465, 2419, 2419, 2419, 2419, 2419, 2419, 8465, 2419, 2419, 8626, 8457, 8465,10785, 8583, 8792,10790, 8468, 8466, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 8468, 8466, 8517, 8517, 8512, 2419, 8583, 8468, 8517, 8626, 8469, 8470, 8465, 8466, 8512, 8512, 8631, 2419, 8583, 8469, 8470, 8572, 2419, 2419, 2419, 2419, 8469, 8594, 8517, 8572, 2419, 8469, 8470, 8517, 8512, 8594, 8625, 8651,10188, 8466, 9514, 8631, 9338,10188, 2419, 2421, 2421, 8625, 2421, 2421, 2421, 2421, 2421, 2421, 8514, 2421, 2421, 8469, 8470, 8874, 8597, 9514, 8651, 8514, 8514, 8514, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 8602, 8619, 8630, 9338, 8874, 2421, 8624, 8629, 8602, 8619, 8532, 8514, 8597, 8630, 8624, 8629, 8874, 2421, 8513, 8532, 8532, 8532, 2421, 2421, 2421, 2421, 8581, 8513, 8513, 8513, 8513, 8513, 8513, 8513, 8513, 8513, 8581, 8890, 8634, 8635, 8532, 8650, 8655, 8581, 2421, 2433, 8634,10242, 8513, 8597, 8635,10800, 8650, 8655, 2433, 2433, 2433, 2433, 2433, 2433, 2433, 2433, 2433, 2433, 8656, 8581, 8661, 8890, 8638, 10242, 2433, 2433, 2433, 2433, 2433, 2433, 8638, 8562, 8562, 8562, 8562, 8562, 8562, 8562, 8562, 8562, 8649, 8654, 8676, 8656, 8681, 8661, 2433, 8562, 8649, 8654, 2433, 2433, 2433, 2433, 2433, 2433, 2435, 2435, 2435, 2435, 2435, 2435, 2435, 2435, 2435,10252,10804, 8676, 8660, 8681, 8659, 8562, 2435, 2435, 2435, 2435, 2435, 2435, 8659, 8660, 8664, 8665,10807, 8671,10252, 8675, 8891, 8575, 8664, 8674, 8668, 8671, 8665, 8668, 2435, 8575, 8675, 8674, 2435, 2435, 2435, 2435, 2435, 2435, 2443, 8575, 2443, 2443, 2443, 2443, 2443, 2443, 2443, 2443, 2443, 2443, 8891, 8575, 8680, 8668, 8679, 8685, 2443, 2443, 2443, 2443, 2443, 2443, 8679, 8680, 8684, 8708, 8685, 8691, 8575, 8706, 8688, 8577, 8684, 8688, 8891, 8691, 8708, 8706, 8709, 8577, 8849,10815, 2443, 2443, 2443, 2443, 2443, 2443, 2448, 8577, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 8688, 8712, 8577, 8877, 8709, 8577, 8721, 8722, 8726, 8731, 8849, 8527, 2448,10820, 8721, 8877, 8726, 8731, 8722, 8577, 8527, 8527, 8527, 8527, 8527, 8527, 8527, 8527, 8527, 2448, 2449, 8712, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 8527, 8579, 8727, 8712, 8732, 8737, 8736, 9881, 8877, 8579, 9970, 8529, 2449, 8727, 8736, 8732, 8737, 8723, 8728, 8579, 8529, 8529, 8529, 8529, 8529, 8529, 8529, 8529, 8529, 2449, 2450, 8579, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 8529, 8723, 8728, 8742,10824, 8741, 9881, 8579, 9970, 8745, 8530, 8692, 2450, 8741, 8742, 8534, 8733, 8745, 8738, 8530, 8530, 8530, 8530, 8530, 8534, 8534, 8534, 8534, 8534, 2450, 2451, 2451, 2451, 2451, 2451, 2451, 2451, 2451, 2451, 2451, 8530, 8733, 8692, 8738, 8753, 8534, 2451, 2451, 2451, 2451, 2451, 2451, 8531,10827,10873, 8753, 8926, 8804, 8757, 8692, 8751, 8531, 8531, 8531, 8531, 8531, 8531, 8694, 8751, 8757, 8531, 8756, 2451, 2451, 2451, 2451, 2451, 2451, 2465, 8756, 8692, 8926, 8531, 8804, 8866, 8783, 8694, 2465, 2465, 2465, 2465, 2465, 2465, 2465, 2465, 2465, 2465, 8783, 8694, 8784,10875, 8820, 8760, 2465, 2465, 2465, 2465, 2465, 2465, 8533, 8760, 8784, 8833, 8866, 8783, 8694, 9527,10876, 8533, 8533, 8533, 8533, 8533, 8533, 8533, 8533, 8533, 8820, 8784, 2465, 2465, 2465, 2465, 2465, 2465, 8893, 8781, 9527, 8833, 8533, 8869, 8781, 2465, 2467, 2467, 2467, 2467, 2467, 2467, 2467, 2467, 2467, 8715, 8715, 8715, 8715, 8715, 8715, 9497, 2467, 2467, 2467, 2467, 2467, 2467, 8893, 8576, 8781, 8881, 8869, 8931, 8794, 8829, 8715, 8576,10011, 8717, 8717, 8717, 8717, 8717, 8829, 8925, 8794, 8576, 2467, 2467, 2467, 2467, 2467, 2467, 8576, 9497, 8925, 8881, 8931, 8576, 8717, 2467, 2475, 8794, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 8791, 8972, 8576,10011,10878, 8791, 2475, 2475, 2475, 2475, 2475, 2475, 8752, 8752, 8752, 8752, 8752, 8752, 8752, 8752, 8752, 8578, 8803,10263, 8853, 8819, 8972, 8803, 8752, 8578, 8819, 8791, 2475, 2475, 2475, 2475, 2475, 2475, 2480, 8578, 2480, 2480, 2480, 2480, 2480, 2480, 2480, 2480, 2480, 8853, 8924, 8578, 8752, 8803, 8853, 8832, 8819, 8578, 8924,10263, 8832, 2480, 8765, 8765, 8765, 8765, 8765, 8765, 8578, 8592, 8592, 8592, 8592, 8592, 8592, 8592, 8592,10880, 8785, 8786, 8793, 8795, 8850, 8765, 8852, 8785, 8832, 8793, 8853, 8592, 8785, 8786, 8793, 8795, 8786, 2480, 2481, 9540, 2481, 2481, 2481, 2481, 2481, 2481, 2481, 2481, 2481, 8785, 8786, 8793, 8795, 8850, 8592, 8882, 8852, 8884, 8886, 8886, 9540, 2481, 8714, 8714, 8714, 8714, 8714, 8714, 8714, 8714, 8714, 8716, 8716, 8716, 8716, 8716, 8716, 8716, 8716, 8716, 8930, 9083, 8852, 8714, 8882, 8796, 8884, 8850, 8886, 8885, 8852, 8930, 8716, 9083, 8846, 2481, 2482, 8796, 2482, 2482, 2482, 2482, 2482, 2482, 2482, 2482, 2482, 8718, 8718, 8718, 8718, 8718, 8718, 8806, 8796, 8797, 8718, 8834, 8885, 2482, 8764,10881, 8797, 8846, 9420, 8806, 8834, 8797, 8718, 8764, 8764, 8764, 8764, 8764, 8764, 8764, 8764, 8764, 8960, 8805, 8846, 8834, 8806, 8885, 8797, 8960, 8805, 9163, 9420, 8870, 8764, 8805, 8798, 2482, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 8798, 8811, 8812, 8798, 8805, 8966, 2483, 2483, 2483, 2483, 2483, 2483, 9163, 8811, 8812, 8870, 8966, 8798, 8808, 8808, 8808, 8808, 8808, 8808, 8808, 8808, 8808, 8870,10064,10234, 8811, 8812, 2483, 2483, 2483, 2483, 2483, 2483, 2503, 2503, 8941, 2503, 2503, 2503, 2503, 2503, 2503, 2503, 2503, 2503, 8809, 8809, 8809, 8809, 8809, 8809, 8809, 8809, 8809, 2503, 2503, 2503, 2503, 2503, 2503, 2503, 9526,10885,10064,10234, 8941, 2503, 8810, 8810, 8810, 8810, 8810, 8810, 8810, 8810, 8810, 8814,10887, 8822, 9164, 8871, 9184, 8813, 2503, 2503, 2503, 2503, 2506, 8814, 8813, 8822, 8814, 8871, 2506, 8813, 9526, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 8814, 8871, 8822, 9164, 8871, 9184, 8813, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2509, 2509, 8821, 2509, 2509, 2509, 2509, 2509, 2509, 8821, 2509, 2509,10016, 8892, 8821, 8887, 8887, 8932, 8854, 8963, 8912, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 8963, 8932,10888, 8821, 9084, 2509, 8824, 8824, 8824, 8824, 8824, 8824, 8824, 8824, 8824, 8892, 9084, 8887, 8932,10016, 8854, 8912, 2509, 2509, 2509, 2509, 2512, 2512, 8912, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 8825, 8825, 8825, 8825, 8825, 8825, 8825, 8825, 8825, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 8854, 8854, 8892, 9525, 9044, 2512, 8826, 8826, 8826, 8826, 8826, 8826, 8826, 8826, 8826, 9044,10274, 8830,10891, 8929, 8836, 8837, 2512, 2512, 2512, 2512, 8830, 8929, 9006, 8836, 8837, 9525, 8855, 8830,10893,10274, 8836, 9006,10894, 2512, 2516, 8836, 8837, 8841, 8841, 8841, 8841, 8841, 8841, 8841, 8841, 8841, 8842, 8842, 8842, 8842, 8842, 8842, 8842, 8842, 8842, 8848, 8855, 8855, 9013, 8938, 8956, 8836, 8837, 9880, 2516, 8856, 8938, 8842, 8956, 9009, 8843, 2516, 8843, 8843, 8843, 8843, 8843, 8843, 9009, 9013, 8857, 8876, 9958, 8967, 9880, 2516, 8848, 2516, 8938, 2516, 8855, 8967, 2516, 8843, 8858, 8856, 8860, 2516, 8857, 8876, 2516, 9018, 2516, 8848, 2516, 9013, 2516, 2516, 2516, 2517, 8857, 8876, 8858, 8873, 8860, 8862, 2517, 8994,10111, 9958, 8848, 8933, 9018, 8856, 8858, 8994, 8860, 8873, 8933, 8856, 2517, 8873, 2517, 8933, 2517, 8863, 8863, 2517, 8859, 8857, 8873,10111, 2517, 8873, 8857, 2517, 8862, 2517, 9018, 2517, 8933, 2517, 2517, 2517, 2518, 8934, 8859, 8873, 8858, 8858, 8860, 2518, 9529, 8862, 8864, 8864, 8863, 8934, 8859, 9015, 8934, 8859, 8964, 8865, 8865, 2518, 9963, 2518, 9015, 2518, 8862, 8964, 2518, 8863, 8934, 8872, 9552, 2518, 8964, 8875, 2518, 9529, 2518, 8889, 2518, 8864, 2518, 2518, 2518, 2519, 8863, 9007, 8859, 8872, 8865, 9024, 2519, 8875, 9552, 9552, 9007, 8965, 8864, 9963, 9024, 8872, 8935, 9007, 8965, 8875, 2519, 8865, 2519, 8889, 2519, 8865, 8965, 2519, 8935, 8864, 9056, 9244, 2519, 2519, 8935, 2519, 9955, 2519, 8865, 2519, 8872, 2519, 2519, 2519, 2520, 8935, 8936, 8985, 9042, 8889, 9137, 2520,10900, 8875, 9244, 9056, 9042, 8889, 8915, 8915, 8915, 8915, 8915, 8915, 8936, 2520, 2520, 2520, 9860, 2520, 9955, 9244, 2520, 9053, 9012, 9137, 8936, 2520, 8985, 8915, 2520, 9053, 2520, 9012, 2520, 9019, 2520, 2520, 2520, 2521, 8896, 9142, 9860, 8936, 9019, 8985, 2521, 9055, 9012, 8896, 8896, 8896, 8896, 8896, 8896, 8896, 8896, 8896, 9055, 9019, 2521, 9027, 2521,10261, 2521, 9030, 9142, 2521, 8985,10261, 9027, 9011, 2521,10902, 9030, 2521, 9199, 2521, 9060, 2521, 9011, 2521, 2521, 2521, 2522, 2522, 9060, 9011, 9086, 9030, 2522, 8904, 8904, 8904, 8904, 8904, 8904, 8904, 8904, 8904, 9086, 9199, 9061, 9086, 8905, 8905, 8905, 8905, 8905, 8905, 8905, 8905, 8905, 9061, 8904, 2522, 8920, 8920, 8920, 8920, 8920, 8920, 2522, 8906, 8906, 8906, 8906, 8906, 8906, 8906, 8906, 8906, 8906, 9017, 9085, 9021, 2522, 8920, 2522, 9065, 2522, 9085, 9017, 2522, 9021, 9088, 9085, 9065, 2522, 9017, 9358, 2522, 9136, 2522, 9088, 2522, 9021, 2522, 2522, 2522, 2523, 8905, 9358, 9136, 9550,10903, 9204, 2523, 8907, 8907, 8907, 8907, 8907, 8907, 8907, 8907, 8907, 8907, 9025, 9550, 9091, 2523, 9021, 2523, 9550, 2523, 9093, 9025, 2523, 9091, 9099, 9204, 2523, 2523, 9025, 9093, 2523, 9209, 2523, 9099, 2523, 9141, 2523, 2523, 2523, 2524, 2524, 8917, 8917, 8917, 8917, 2524, 9141, 8908, 8908, 8908, 8908, 8908, 8908, 8908, 8908, 8908, 9209, 8914, 8914, 8914, 8914, 8914, 8914, 8914, 8914, 8914, 9102, 8917, 9146, 9565, 2524, 9020, 9115, 9028, 9166, 9102, 9096, 2524, 8914, 9146, 9020, 9115, 9028, 8917, 9974, 9096, 8917, 9020, 9029, 9028, 9033, 2524, 9020, 2524, 9028, 2524, 8908, 9029, 2524, 9033, 9096, 8908, 9565, 2524, 9166,10909, 2524, 9421, 2524, 9029, 2524, 9033, 2524, 2524, 2524, 2542, 9110, 9169, 9020, 9421, 9028, 9974, 2542, 8918, 8918, 8918, 8918, 8918, 8918, 8918, 8918, 8918, 9105, 9031, 9110, 9029, 2542, 9033, 2542, 2542, 2542, 9105, 9031, 2542, 8918, 9173, 9110, 9169, 2542, 9031, 9118, 2542,10911, 2542, 9111, 2542, 9105, 2542, 2542, 2542, 2543, 8919, 8919, 8919, 8919, 8919, 8919, 8919, 8919, 8919, 9179, 9118, 9111, 9129, 9119, 9173,10912, 9112, 2543, 9179, 9532, 9129, 8919, 9119, 9111, 2543, 8969, 8969, 8969, 8969, 8969, 8969, 8969, 8969, 8969, 9112, 9032, 9118, 9119, 2543, 9132, 2543, 9112, 2543, 9198, 9032, 2543, 9112, 9132, 9532, 9090, 2543, 9032, 9203, 2543, 9198, 2543, 9032, 2543, 9090, 2543, 2543, 2543, 2544, 9203, 9392, 9090, 9214, 9392, 9208, 2544, 8970, 8970, 8970, 8970, 8970, 8970, 8970, 8970, 8970, 9208, 9094, 9113, 9032, 2544, 9140, 2544,10922, 2544, 9095, 9094, 2544, 9214, 9140, 9392, 9097, 2544, 9094, 9095, 2544, 9113, 2544, 9094, 2544, 9097, 2544, 2544, 2544, 2544, 2545, 9095, 9097, 9113, 9123, 9187, 9113, 2545, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 9170, 9145, 9094, 9104, 2545, 9123, 2545, 2545, 2545, 9145, 9095, 2545, 9104, 9100, 9167, 9167, 2545, 9123, 9187, 2545,10068, 2545, 9100, 2545, 9104, 2545, 2545, 2545, 2546, 9100, 9170, 9187, 9256, 9170, 10923, 2546, 8983, 8983, 8983, 8983, 8983, 8983, 8983, 8983, 8983, 9167, 9149,10068, 9213, 2546, 9104, 2546,10012, 2546, 9149, 2546, 2546, 9155, 9103, 9213, 9106, 2546, 9256, 2546, 2546, 9155, 2546, 9103, 2546, 9106, 2546, 2546, 2546, 2547, 9103, 9413, 9106, 9167, 9413, 9103, 2547, 9002, 9002, 9002, 9002, 9002, 9002, 9002, 9002, 9002, 9282, 9107, 9534, 9108, 2547, 9158, 2547,10012, 2547, 9218, 9107, 2547, 9108, 9158, 9413, 9103, 2547, 9107, 2547, 2547, 9218, 2547, 9107, 2547, 9108, 2547, 2547, 2547, 2548, 9122, 9282, 9534, 9168, 9168, 9229, 2548, 9003, 9003, 9003, 9003, 9003, 9003, 9003, 9003, 9003, 9229, 9117, 9122, 9107, 2548, 9108, 2548, 9197, 2548, 9122, 9117, 2548, 2548, 9120, 9122, 9197, 2548, 9117, 9168, 2548, 9233, 2548, 9120, 2548, 9172, 2548, 2548, 2548, 2549, 9120, 9172, 9233, 9342, 9183, 9120, 2549, 9004, 9004, 9004, 9004, 9004, 9004, 9004, 9004, 9004,11012, 9121,11025, 9432, 2549, 9183, 2549, 9168, 2549, 9172, 9121, 2549, 9175, 9175, 9183, 9120, 2549, 9342, 9175, 2549, 9242, 2549, 9121, 2549, 11025, 2549, 2549, 2549, 2550, 9432, 2550, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9185, 9178, 9178, 9175, 9188, 9255, 9175, 9054, 9121, 9202, 9242, 9189, 2550, 9188, 9188, 9188, 9255, 9202, 9185, 2550, 9073, 9073, 9073, 9073, 9073, 9073, 9073, 9073, 9073, 9189, 9185, 9054, 9178, 2550, 9188, 2550, 9073, 2550, 9178, 9207, 2550, 9189, 9264, 9212, 9242, 2550, 9422, 9207, 2550, 9258, 2550, 9212, 2550, 9264, 2550, 2550, 2550, 2551, 9422, 9291, 9073, 9082, 9082, 9082, 9082, 9082, 9082, 9082, 9082, 9082, 9291, 9186,11056,11057, 9258, 9217, 9221,11082, 9171, 2551, 9186, 9186, 9186, 9217, 9221, 2551, 2551, 9171, 9171, 9171, 9171, 9171, 9171, 9171, 9171, 9171, 9537, 9227, 9232, 9287, 2551, 9186, 2551, 9236, 2551, 9227, 9232, 2551, 9171, 9610, 9252, 9236, 2551, 9292, 9500, 2551, 9287, 2551, 9252, 2551, 9190, 2551, 2551, 2551, 2552, 9287, 9537, 9186,11083, 9190, 9190, 9190, 9190, 9190, 9190, 9190, 9190, 9190, 9292, 9262, 9268, 9290, 9610, 9284, 9500, 9191, 2552, 9262, 9268, 9290, 9190, 9193, 9284, 2552, 9191, 9191, 9191, 9191, 9191, 9191, 9193, 9193, 9193, 9193, 9193, 9295, 9284, 2552, 9297, 2552, 2552, 2552, 9296, 9295, 2552, 9191, 9301,10935, 9500, 2552,10935, 9193, 2552, 9296, 2552, 9192, 2552, 9301, 2552, 2552, 2552, 2553, 9302, 9297, 9192, 9192, 9192, 9192, 9192, 9192, 9192, 9192, 9192, 9228, 9228, 9228, 9228, 9228, 9228, 9228, 9228, 9228, 9194, 2553, 9878, 9192, 9470, 9302, 9306, 9228, 2553, 9194, 9194, 9194, 9194, 9194, 9194, 9300, 9470, 9306, 9194, 9305, 9309, 9325, 2553, 9300, 2553, 2553, 2553, 9305, 9309, 2553, 9194, 9228, 9325, 9470, 2553, 9878, 9348, 2553, 9964, 2553, 9240, 2553, 9326, 2553, 2553, 2553, 2554, 9348, 9351, 9240, 9240, 9240, 9240, 9240, 9240, 9240, 9240, 9240, 9275, 9275, 9275, 9275, 9275, 9275, 9275, 9275, 9275, 9326, 2554, 9241, 9240,11091, 9964, 9351, 9275, 2554, 9315, 9318, 9241, 9241, 9241, 9241, 9241, 9241, 9315, 9318, 9324, 9347, 9333, 2554, 9334, 2554, 9363, 2554, 9324, 9347, 2554, 2554, 9275, 9241, 9363, 2554, 9335, 9335, 2554, 9364, 2554, 9369, 2554, 9334, 2554, 2554, 2554, 2554, 2561, 2561, 9364, 9365, 9369, 9333, 2561, 9334, 9516, 2561, 9276, 9276, 9276, 9276, 9276, 9276, 9276, 9276, 9276, 9335, 9327, 9982, 9333, 9332, 9334,11041, 9368, 9373, 9365, 9327, 9333, 2561, 9370, 9332, 9368, 9373, 9335, 9516, 2561, 9327, 9332, 9375, 9374,11041, 9355, 9355, 9355, 9355, 9355, 9516, 9276, 9327, 2561, 9374, 2561, 2561, 2561, 9370, 9982, 2561, 2561, 9379, 9332, 9276, 2561, 9355, 9375, 2561, 9327, 2561, 9378, 2561, 9379, 2561, 2561, 2561, 2568, 2568, 9378, 2568, 2568, 2568, 2568, 2568, 2568, 9354, 9354, 9354, 9354, 9354, 9354, 9354, 9354, 9354, 9384,11092, 9383, 2568, 2568, 2568, 2568, 2568, 2568, 2568, 9383, 9384, 9354, 9388, 11225, 2568, 9395,10897,10897,10897, 9389, 9388, 9380, 9385, 9395, 9356, 9356, 9356, 9356, 9356, 9356, 9389, 2568, 2568, 2568, 2568, 2574, 2574, 2574, 2574, 2574, 2574, 2574, 2574, 2574, 2574, 9356, 9380, 9385, 9399, 9398, 9401, 2574, 2574, 2574, 2574, 2574, 2574, 9398, 9404, 9399, 9405, 9409, 9410, 9569, 9416,11253, 9404,11256, 9568, 9409,11261, 9405, 9416, 9410, 9569, 9401, 9568, 2574, 2574, 2574, 2574, 2574, 2574, 2576, 2576, 2576, 2576, 2576, 2576, 2576, 2576, 2576, 2576, 9360, 9360, 9360, 9360, 9360, 9360, 2576, 2576, 2576, 2576, 2576, 2576, 9400, 9400, 9400, 9400, 9400, 9400, 9400, 9400, 9400, 9360, 9573, 9406, 9439, 9446,11264,10222, 9400, 9976, 9573,10707, 2576, 2576, 2576, 2576, 2576, 2576, 2579, 2579, 2579, 2579, 2579, 2579, 2579, 2579, 2579, 2579, 9406, 9424, 9439, 9446, 9400, 2579, 2579, 2579, 2579, 2579, 2579, 2579, 9423, 9424,10222, 9976, 9424, 9431, 9438, 9423, 9445, 9453, 9431, 9438, 9423, 9445, 9453, 9454,10707,10906,10906,10906, 2579, 2579, 2579, 2579, 2579, 2579, 2584, 2584, 2584, 2584, 2584, 2584, 2584, 2584, 2584, 2584, 9431, 9438, 9465, 9445, 9453, 9454, 2584, 2584, 2584, 2584, 2584, 2584, 9458, 9458, 9458, 9458, 9458, 9458, 9458, 9458, 9458, 9464, 9478, 9479, 9876, 9492, 9464, 9478, 9465,11272,10262, 9876, 2584, 2584, 2584, 2584, 2584, 2584, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 9538, 9479, 9492,10262, 9464, 9478, 2587, 2587, 2587, 2587, 2587, 2587, 9469, 9469, 9469, 9469, 9469, 9469, 9469, 9469, 9469, 9483, 9483, 9483, 9483, 9483, 9483, 9483, 9483, 9483, 9538,10629, 2587, 2587, 2587, 2587, 2587, 2587, 2594, 2594, 2594, 2594, 2594, 2594, 2594, 2594, 2594, 2594, 9471, 9473, 9563, 9494,10629, 9538, 2594, 2594, 2594, 2594, 2594, 2594, 9471, 9473, 9563, 9583, 9473, 9580, 9984, 9472, 9494,11277, 9580, 9583, 9512,10768, 9472, 9494, 9515, 9471, 9473, 9472, 2594, 2594, 2594, 2594, 2594, 2594, 2597, 2597, 2597, 2597, 2597, 2597, 2597, 2597, 2597, 2597, 9472, 9512, 9481, 9517, 9984, 9515, 2597, 2597, 2597, 2597, 2597, 2597, 9580, 9590, 9481, 9517, 9596,11281, 9480, 9875, 9875, 9590,10768, 9870, 9524, 9480, 9570, 9596, 9517, 9517, 9480, 9481, 2597, 2597, 2597, 2597, 2597, 2597, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 9480, 9495, 9524, 9875, 9570, 9870, 9603, 2604, 2604, 2604, 2604, 2604, 2604, 9484, 9484, 9484, 9484, 9484, 9484, 9484, 9484, 9484, 9485, 9485, 9485, 9485, 9485, 9485, 9485, 9485, 9485, 9603, 9495, 2604, 2604, 2604, 2604, 2604, 2604, 2605, 2605, 2605, 2605, 2605, 2605, 2605, 2605, 2605, 2605, 9495, 9498,11284, 9604, 11297, 9598, 2605, 2605, 2605, 2605, 2605, 2605, 9523, 9598, 9604, 9522, 9600,11300, 9626,10245, 9625, 9535, 9629, 9495, 9523, 9600, 9507, 9522, 9625, 9626, 9629, 9498, 2605, 2605, 2605, 2605, 2605, 2605, 2608, 2608, 2608, 2608, 2608, 2608, 2608, 2608, 2608, 2608, 9522, 9502, 9507, 9535,10245, 9601, 2608, 2608, 2608, 2608, 2608, 2608, 9507, 9507, 9601, 9688, 9523, 9498, 9498,10236,10236, 9601,11305, 9688, 9535,10236, 10774, 9564, 9564, 9564, 9564, 9502, 2608, 2608, 2608, 2608, 2608, 2608, 2615, 2615, 2615, 2615, 2615, 2615, 2615, 2615, 2615, 9531, 9503, 9504, 9559, 9559, 9559, 9564, 2615, 2615, 2615, 2615, 2615, 2615, 9502, 9643, 9644, 9645,10774, 9502, 9503, 9504, 9329, 9564, 9645, 9559, 9564, 9643, 9644, 9645, 9531, 9329, 9503, 9504, 2615, 2615, 2615, 2615, 2615, 2615, 2616, 9329, 2616, 2616, 2616, 2616, 2616, 2616, 2616, 2616, 2616, 2616, 9949, 9329, 9678, 9602, 9329, 9503, 2616, 2616, 2616, 2616, 2616, 2616, 9602, 9646, 9503, 9504, 9691, 9531, 9329, 9617, 9617, 9648, 9504, 9678, 9691, 9646, 9698, 9602, 9646, 9949, 9648, 9499, 2616, 2616, 2616, 2616, 2616, 2616, 2623, 2623, 2623, 2623, 2623, 2623, 2623, 2623, 2623, 2623, 9508, 9678, 9617, 9698, 9695, 9651, 2623, 2623, 2623, 2623, 2623, 2623, 9542, 9499, 9651, 9695, 9499,11309, 9697, 9617, 11312, 9542, 9542, 9542, 9542, 9542, 9542, 9542, 9542, 9542, 9697, 9508, 2623, 2623, 2623, 2623, 2623, 2623, 2625, 2625, 2625, 2625, 2625, 2625, 2625, 2625, 2625, 9499, 9508, 9519, 9705, 9653, 9650, 9654, 2625, 2625, 2625, 2625, 2625, 2625, 9653, 9650, 9654, 9659, 9662, 9508, 9508, 9519, 9650, 9654, 9701, 9508, 9659, 9662, 9654, 9705, 9988, 9769, 9701, 9519, 2625, 2625, 2625, 2625, 2625, 2625, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 9518,10072, 9769, 9675, 9654, 9656, 2633, 2633, 2633, 2633, 2633, 2633, 9675,10072, 9656, 9519,10675, 9988, 9518, 9615, 9615, 9615, 9615, 9615, 9615, 9615, 9615, 9615, 9769, 9656, 9518, 9533, 2633, 2633, 2633, 2633, 2633, 2633, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641, 2641,10675, 9716, 9721, 9725, 9655, 9518, 2641, 2641, 2641, 2641, 2641, 2641, 9533, 9655, 9710, 9657, 11316,10290, 9533,11321,10290, 9328, 9710, 9501, 9657, 9655, 9716, 9721, 9725, 9729, 9328, 9657, 2641, 2641, 2641, 2641, 2641, 2641, 2642, 2642, 9328, 2642, 2642, 2642, 2642, 2642, 2642, 9328, 2642, 2642, 9521, 9655, 9328, 9501, 9729,10290, 9501, 9660, 9663, 2642, 2642, 2642, 2642, 2642, 2642, 2642, 9660, 9663, 9521, 9328, 9994, 2642, 9765, 9660, 9663, 9330, 9771, 9539, 9539, 9663, 9521, 9765,10626, 9736, 9330, 9771, 9751, 9501, 2642, 2642, 2642, 2642, 2658, 2658, 9330, 2658, 2658, 2658, 2658, 2658, 2658, 9707, 2658, 2658, 9994, 9663, 9330, 9539, 9736, 9509, 9509, 9751, 9330, 2658, 2658, 2658, 2658, 2658, 2658, 2658, 9521,10626, 9666, 9330, 9747, 2658, 9707, 9783, 9331, 9331, 9665, 9666, 9747, 9824, 9707, 9829, 9783, 9331, 9666, 9665, 9509, 9539, 2658, 2658, 2658, 2659, 2659, 9331, 2659, 2659, 2659, 2659, 2659, 2659, 9665, 2659, 2659, 9509, 9824, 9331, 9829,11420, 9834,11444, 9509, 9774, 2659, 2659, 2659, 2659, 2659, 2659, 2659, 2659, 9509, 9509, 9331, 9536, 2659, 9357, 9357, 9357, 9357, 9357, 9357, 9861, 9774, 9834, 9357, 9556, 9556, 9556, 9556, 9556, 9556, 2659, 2659, 2659, 2660, 2660, 9357, 2660, 2660, 2660, 2660, 2660, 2660, 9536, 2660, 2660, 9556, 9861, 9774, 9536,11446,10839, 10078, 9793, 9796, 2660, 2660, 2660, 2660, 2660, 2660, 2660, 9793, 9796,10078,10839, 9879, 2660, 9359, 9359, 9359, 9359, 9359, 9359, 9359, 9359, 9359, 9536, 9558, 9558, 9558, 9558, 9558, 9558, 2660, 2660, 2660, 2661, 2661, 9359, 2661, 2661, 2661, 2661, 2661, 2661, 9879, 2661, 2661, 9558, 9607, 9670, 9607, 9607, 9607, 9607, 9607, 9607, 2661, 2661, 2661, 2661, 2661, 2661, 2661, 2661,10931,11035, 9607, 9670, 2661, 9418, 9418, 9418, 9418, 9418, 9418, 9418, 9418, 9418,11447, 9670, 9993,10931, 9997,11525,11035, 2661, 2661, 2661, 2662, 2662, 9418, 2662, 2662, 2662, 2662, 2662, 2662, 9786, 2662, 2662, 9642, 9642, 9642, 9642, 9642, 9642, 9642, 9642, 9642, 2662, 2662, 2662, 2662, 2662, 2662, 2662, 9671, 9993, 9786, 9997, 9488, 2662, 9488, 9488, 9488, 9488, 9488, 9488, 9488, 9488, 9488, 9809, 9677, 2662, 9671,10249,10004,10936, 2662, 2662, 2662, 9677, 9809, 9488, 9786, 9505, 9671, 9489, 9677, 9489, 9489, 9489, 9489, 9489, 9489, 9489, 9489, 9489, 9511, 9511, 2662, 2668, 2668, 9505, 2668, 2668, 2668, 2668, 2668, 2668, 9489, 2668, 2668,10004, 9673, 9505,10000,10936,10249, 9814, 9828, 9505, 2668, 2668, 2668, 2668, 2668, 2668, 2668, 9511, 9814, 9828, 9673, 9490, 2668, 9490, 9490, 9490, 9490, 9490, 9490, 9490, 9490, 9490, 9673, 9866, 9511, 9673, 9894, 9505, 10000, 2668, 2668, 2668, 2669, 2669, 9490, 2669, 2669, 2669, 2669, 2669, 2669, 9511, 2669, 2669, 9683, 9672, 9723, 9511, 9731, 9866, 9520, 9894, 9679, 2669, 2669, 2669, 2669, 2669, 2669, 2669, 2669, 9679, 9683, 9672, 9808, 2669, 9510, 9510, 9520, 9506, 9672, 9723, 9808, 9731, 9683, 9672, 9679, 9714, 10672, 9723, 9520, 9731, 2669, 2669, 2669, 2672, 2672, 9506, 2672, 2672, 2672, 2672, 2672, 2672, 9520, 2672, 2672, 9510, 9778, 9506,11216, 9520, 9714, 9510, 9682, 9899, 2672, 2672, 2672, 2672, 2672, 2672, 2672, 9714, 9510, 9724, 9778,11216, 2672, 9813,11535,10672, 9682, 9510, 9968, 9506, 9978, 9813, 9778, 9682, 9899, 9510, 9506, 9506, 9682, 2672, 2672, 2672, 2673, 2673, 9724, 2673, 2673, 2673, 2673, 2673, 2673, 9817, 2673, 2673, 9779, 9724, 9781, 9738, 9968, 9817, 9978,10001, 9664, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 2673, 9664, 9779,11552, 9781, 2673, 9557, 9557, 9557, 9557, 9557, 9557, 9738, 9664, 9779, 9557, 9781, 9732, 9904, 9781, 9738,10001, 2673, 2673, 2673, 2675, 2675, 9557, 2675, 2675, 2675, 2675, 2675, 2675,10208, 2675, 2675,10009, 9791, 9664, 9865, 9865, 9732, 9904, 9833, 9775, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 9732, 9775, 9833, 9791,10208, 2675, 9560, 9560, 9560, 9560, 9560, 9560, 9560, 9560, 9560, 9791, 9775,11558, 9865, 11562,10010,10009, 2675, 2675, 2675, 2676, 2676, 9560, 2676, 2676, 2676, 2676, 2676, 2676, 9909, 2676, 2676, 9759, 9759, 9759, 9759, 9759, 9759, 9759, 9759, 9759, 2676, 2676, 2676, 2676, 2676, 2676, 2676, 2676,10010, 9827,10066,10633, 2676, 9909, 9865,10081, 9605, 9827, 9605, 9605, 9605, 9605, 9605, 9605, 9605, 9605, 9605, 9753, 9950, 2676, 2676, 2676, 2677, 2677, 9605, 2677, 2677, 2677, 2677, 2677, 2677, 9668, 2677, 2677,10066,10013,10013,10633, 9950,10081, 9668, 9950, 9753, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 9753,10957, 9668, 10706, 9862, 2677,10679, 9606,10013, 9606, 9606, 9606, 9606, 9606, 9606, 9606, 9606, 9606, 9832, 2677, 9638, 9862, 2677, 2677, 2677, 9606, 9832, 9638, 9668, 9638, 9638, 9638, 9638, 9638, 9638, 9638, 9638, 9638, 9914, 9930, 9667,10957,10706, 10679,11580, 9862, 2677, 2678, 2678, 9667, 2678, 2678, 2678, 2678, 2678, 2678, 9667, 2678, 2678, 9780,10248, 9667, 9921, 9914, 9930, 9921, 9767, 9773, 2678, 2678, 2678, 2678, 2678, 2678, 2678, 9767, 9773, 9780, 9837, 9785, 2678, 9681, 9767, 9773, 9780, 9787, 9837, 9667, 9785, 9780, 9681, 9921,10687, 10248, 9787, 9785,10189, 2678, 2678, 2678, 2679, 2679, 9681, 2679, 2679, 2679, 2679, 2679, 2679, 9787, 2679, 2679, 2679, 2679, 2679, 2679, 2679, 2679, 2679, 2679, 2679, 2679, 2679, 2679, 2679, 2679, 2679, 2679, 9681,10687,10189,10867, 9838, 2679, 9760, 9760, 9760, 9760, 9760, 9760, 9760, 9760, 9760, 9838, 9935, 9969, 9680,10693,11588,11594, 2679, 2679, 2679, 2681, 2681, 9680, 2681, 2681, 2681, 2681, 2681, 2681, 9680, 2681, 2681, 9790,10867, 9680, 9942, 9935, 9969, 9942, 9794, 9776, 2681, 2681, 2681, 2681, 2681, 2681, 2681, 9794, 9776, 9790,10693, 9848, 2681, 9852, 9794, 9776, 9790, 9799, 9800, 9680, 9776, 9790, 9848, 9942, 9852, 9979, 9799, 9800,10676, 2681, 2681, 2681, 2682, 2682, 9800, 2682, 2682, 2682, 2682, 2682, 2682, 9799, 2682, 2682, 9841,11598, 9776,11620,11649, 10676, 9979,10676, 9841, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 9847, 9851, 9855, 9892, 2682,10206, 9867,10207, 9847, 9851, 9855, 9892, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 9696, 2682, 2682, 2682, 2683, 2683, 9893, 2683, 2683, 2683, 2683, 2683, 2683, 9696, 2683, 2683, 9867, 9893, 11657,10206, 9887,10207,11668,10210, 9867, 2683, 2683, 2683, 2683, 2683, 2683, 2683, 9696, 9872, 9872,10210,10718, 2683, 9887, 9872,10021, 9715, 9715, 9715, 9715, 9715, 9715, 9715, 9715, 9715, 9887, 2683, 9897, 9902, 2683, 2683, 2683, 9715, 9898, 9907, 9897, 9902, 9903, 9908, 9872,10021, 9913, 9907, 9912, 9898, 9872,11671,11673, 9903, 9908,10718, 9912, 9913, 2683, 2684, 2684, 9715, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2684, 2685,10026,10083,10083,10083,10083,10083,10276, 9918, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 9868, 9918, 10836,10848,10031,10083,11675,11676,10026, 9868, 9868, 9868, 9868, 9868, 9868, 9868, 9868, 9868, 9917, 9924, 9927, 9928, 10276, 9933,10848,10836, 9917, 9924, 9927,10031, 9868, 9933, 9928, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 9864, 9864,10036,10915, 10915,10915, 2690, 2690, 2690, 2690, 2690, 2690, 9746, 9746, 9746, 9746, 9746, 9746, 9746, 9746, 9746, 9938, 9945,10065, 10077,11024,10094,10036, 9746, 9938, 9945, 9864, 2690, 2690, 2690, 2690, 2690, 2690, 2693, 2693, 2693, 2693, 2693, 2693, 2693, 2693, 2693, 2693,10065,10077, 9934,10094, 9746, 9939, 2693, 2693, 2693, 2693, 2693, 2693, 9864, 9934, 9882,10099, 9939, 9965, 9954, 9959,11024, 9975, 9777, 9882, 9882, 9882, 9954, 9959, 9965, 9975, 9977, 9777, 2693, 2693, 2693, 2693, 2693, 2693, 2694,10190,10099, 9977,10109, 9777, 9882, 9967, 10110, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 10190, 9967,10272,10272,10272, 9788, 9789, 2694, 2694, 2694, 2694, 2694, 2694, 9777, 9788, 9789,10109, 9983,11681, 9884, 10110, 9788,10190,10272, 9967, 9983, 9788, 9789, 9884, 9884, 9884, 9884, 9884, 2694, 2694, 2694, 2694, 2694, 2694, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 9884, 9948, 9985, 9788, 9789, 9797, 2699, 2699, 2699, 2699, 2699, 2699, 9989, 9985, 9797, 9999,10005,10019,10020,10024, 9989, 9797,10029, 9999,10005,10019, 9797,10024,11027,10020,10029, 9948, 2699, 2699, 2699, 2699, 2699, 2699, 2700, 2700, 2700, 2700, 2700, 2700, 2700, 2700, 2700,11682,10061,10061,10025, 9798, 9797, 9801, 2700, 2700, 2700, 2700, 2700, 2700, 9798, 10025, 9801,10209,10030,10034,10035,10040,10039, 9801,11027, 9948, 9798,10034, 9801,10030,10039,10035,10040,10061, 2700, 2700, 2700, 2700, 2700, 2700, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709,10061,10209, 9798, 9802, 9801, 10043, 2709, 2709, 2709, 2709, 2709, 2709, 9802,10043,10049, 10053,10700, 9885,10218,10067,10122,11688,10049,10053, 9802, 10122, 9885, 9885, 9885, 9885, 9885, 9885, 2709, 2709, 2709, 2709, 2709, 2709, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 9885,10067,10123, 9802,10122,10218,10700, 2710, 2710, 2710, 2710, 2710, 2710, 9929, 9929, 9929, 9929, 9929, 9929, 9929, 9929, 9929,10057,10075,10092,11689,11032,11698, 10123, 9929,10057,10075,10092, 2710, 2710, 2710, 2710, 2710, 2710, 2721, 2721, 2721, 2721, 2721, 2721, 2721, 2721, 2721, 2721,10219,10050,10054,10076, 9929,10093, 2721, 2721, 2721, 2721, 2721, 2721,10050,10054,10076,10097,10093, 9889,10640, 10179,11032,10063,10180,10097,10179,10219, 9889, 9889, 9889, 9889, 9889, 9889, 2721, 2721, 2721, 2721, 2721, 2721, 2722, 2722, 2722, 2722, 2722, 2722, 2722, 2722, 2722, 9889,10180, 10063,10179,10640,10063,10243, 2722, 2722, 2722, 2722, 2722, 2722, 9998, 9998, 9998, 9998, 9998, 9998, 9998, 9998, 9998, 10063,10240,10279,11699,11709,10712,10834, 9998,10240,10243, 10279, 2722, 2722, 2722, 2722, 2722, 2722, 2729,10080, 2729, 2729, 2729, 2729, 2729, 2729, 2729, 2729, 2729, 2729,10220, 10080, 9998,10098,10080,10079, 2729, 2729, 2729, 2729, 2729, 2729,10079,10712,10098,10834,10493,10079,10143,10143,10143, 10143,10143,10143,10143,10143,10143,10201,10493,11010,10220, 10681, 2729, 2729, 2729, 2729, 2729, 2729, 2737, 2737, 2737, 2737, 2737, 2737, 2737, 2737, 2737, 2737,10087,10087,10087, 10087,10087,10087, 2737, 2737, 2737, 2737, 2737, 2737,10216, 10201,10280,10260,10062,10681,10201,11010,10260,10087,10260, 10260,10216,10280,10062,10062,10062,10062,10062,10062, 2737, 2737, 2737, 2737, 2737, 2737, 2738, 2738, 2738, 2738, 2738, 2738, 2738, 2738, 2738,10062,10088,10088,10088,10088,10088, 10088, 2738, 2738, 2738, 2738, 2738, 2738,11710,11720,10295, 10494,10062,10216,10294,10100,10233,10088,10106,10221,10224, 10295,10294,10494,10689,10106,10292,10100, 2738, 2738, 2738, 2738, 2738, 2738, 2745, 2745, 2745, 2745, 2745, 2745, 2745, 2745, 2745, 2745,10100,10102,10233,10106,10221,10224, 2745, 2745, 2745, 2745, 2745, 2745,10292,10102,10689,10298,10102, 10325,11721,10101,10330,10225,10225,10298,11040,10325,10101, 10250,10330,10251,10102,10101, 2745, 2745, 2745, 2745, 2745, 2745, 2749, 2749, 2749, 2749, 2749, 2749, 2749, 2749, 2749, 2749,10101,10124,10126,10225,10251,10250, 2749, 2749, 2749, 2749, 2749, 2749,11040,10124,10126,10251,10849,10126,10326, 10082,10082,10082,10082,10082,10082,10082,10082,10082,10849, 10326,10124,10126, 2749, 2749, 2749, 2749, 2749, 2749, 2750, 2750,10082, 2750, 2750, 2750, 2750, 2750, 2750,10247, 2750, 2750,10144,10144,10144,10144,10144,10144,10144,10144,10144, 2750, 2750, 2750, 2750, 2750, 2750, 2750,10306,10309,11728, 10334, 9869, 2750,11730,10247,11731,10306,10309,10334,10247, 9869, 9869, 9869, 9869, 9869, 9869, 9869, 9869, 9869, 2750, 2750, 2750, 2751, 2751,10227, 2751, 2751, 2751, 2751, 2751, 2751, 9869, 2751, 2751, 2751, 2751, 2751, 2751, 2751, 2751, 2751, 2751, 2751, 2751, 2751, 2751, 2751, 2751, 2751, 2751, 11050,11672,10496,10227,10308, 2751,10084,10084,10084,10084, 10084,10084,10227,10308,10496,10084,11861,10496,11672,11905, 10308,11050, 2751, 2751, 2751, 2753, 2753,10084, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2753, 2759, 2759, 2759, 2759, 2759, 2759, 2759, 2759, 2759, 2759,10103,10104,10331,11250,10398,10351, 2759, 2759, 2759, 2759, 2759, 2759,10103,10331,10351,10398, 11521,11250,10103,10104,10145,10145,10145,10145,10145,10145, 10145,10145,10145,10103,10230,10104, 2759, 2759, 2759, 2759, 2759, 2759, 2762, 2762, 2762, 2762, 2762, 2762, 2762, 2762, 2762, 2762,10104,10269,10269,10269,10269,10269, 2762, 2762, 2762, 2762, 2762, 2762,10230,11521,11907,10342,10397,11907, 10125,10131,10354,10230,10269,10342,10397,10125,10131,10281, 10327,10354,10125,10131, 2762, 2762, 2762, 2762, 2762, 2762, 2769, 2769, 2769, 2769, 2769, 2769, 2769, 2769, 2769,10125, 10131,10132,10133,10310,10281,10327, 2769, 2769, 2769, 2769, 2769, 2769,10310,10132,10133,10156,10156,10156,10156,10156, 10156,10156,10156,10156,10289,10318,10413,10310,10721,11913, 10132,10133, 2769, 2769, 2769, 2769, 2769, 2769, 2770, 2770, 2770, 2770, 2770, 2770, 2770, 2770, 2770, 2770,10135,10289, 10420,10413,10357,10318, 2770, 2770, 2770, 2770, 2770, 2770, 10135,10357,10289,10135,10402,10721,10134,10140,10191,10191, 10414,10192,10402,10134,10140,10420,10357,10135,10134,10140, 2770, 2770, 2770, 2770, 2770, 2770, 2775, 2775, 2775, 2775, 2775, 2775, 2775, 2775, 2775,10134,10140,10141,10146,10191, 10414,10192, 2775, 2775, 2775, 2775, 2775, 2775, 9883,10141, 10146,10223,10226,11856,10436,10960,10191, 9883, 9883, 9883, 9883, 9883, 9883, 9883, 9883, 9883,10141,10146, 2775, 2775, 2775, 2775, 2775, 2775, 2780,10192,10226,11856, 9883,10436, 10223,10226,10192, 2780, 2780, 2780, 2780, 2780, 2780, 2780, 2780, 2780, 2780, 9886,10229,10960,10154,10160,10168,11923, 10628,10628, 9886, 9886, 9886, 9886, 9886, 9886,10154,10160, 10168, 9886,10085,10085,10085,10085,10085,10085,10085,10085, 10085,10223,10147, 9886,10229,10154,10160,10168,10403,10147, 10246,10628,10442,10085,10147,11927, 2780, 2781, 2781,10403, 2781, 2781, 2781, 2781, 2781, 2781, 2781, 2781, 2781,10246, 11930,10147,10628,10229,10148,10625,10162,10442, 2781, 2781, 2781, 2781, 2781, 2781, 2781, 9888,10148,10642,10162,10148, 2781,10162,10446,10246, 9888, 9888, 9888, 9888, 9888, 9888, 9888, 9888, 9888,10148,10625,10162,10406, 2781, 2781, 2781, 2781,10196,10360, 2781,10406, 9888,10642,10446,11935,11534, 10751,10360,10089,10089,10089,10089,10089,10089, 2781, 2783, 2783,10089, 2783, 2783, 2783, 2783, 2783, 2783, 2783, 2783, 2783,10196,10186,10089,10186,10186,10186,10186,10186,10186, 2783, 2783, 2783, 2783, 2783, 2783, 2783, 9947,10212,10751, 10214,10231, 2783,10639,11534,10186, 9947, 9947, 9947, 9947, 9947, 9947, 9947, 9947, 9947,10196,10212,10153,10214, 2783, 2783, 2783, 2783,10372,10153,10382,10385, 9947,10212,10153, 10214,10231,10372,10639,10382,10385, 2783, 2789, 2789, 2789, 2789, 2789, 2789, 2789, 2789, 2789,10153, 2789, 2789,10157, 10157,10157,10157,10157,10157,10157,10157,10157, 2789, 2789, 2789, 2789, 2789, 2789, 2789,10231,10427,10431,10212,10464, 2789,10214,11940,11944,10427,10431, 2789,10464,10086,10086, 10086,10086,10086,10086,10086,10086,10086, 2789, 2789, 2789, 2790, 2790,10636, 2790, 2790, 2790, 2790, 2790, 2790,10086, 2790, 2790,10158,10158,10158,10158,10158,10158,10158,10158, 10158, 2790, 2790, 2790, 2790, 2790, 2790, 2790, 2790,10450, 10636, 2790,10161, 2790,10643,10702,10167, 2790,10197,10161, 2790, 2790, 2790,10167,10161, 2790,10352,11947,10167,10428, 2790, 2790, 2790,10475,10450,10352,10197,10498,10364, 2790, 10428,10161,10352,10643,10475,10167,10498,10364,10197,10702, 10202,10202, 2790, 2791, 2791, 2791, 2791, 2791, 2791, 2791, 2791, 2791,10364, 2791, 2791,10170,10170,10170,10170,10170, 10170,10170,10170,10170, 2791, 2791, 2791, 2791, 2791, 2791, 2791,10202,10197,12070,12109,10553, 2791,10171,10171,10171, 10171,10171,10171,10171,10171,10171,10553,11450,10202,12112, 12122,10714,11450, 2791, 2791, 2791, 2792, 2792, 2792, 2792, 2792, 2792, 2792, 2792, 2792,10202, 2792, 2792,10172,10172, 10172,10172,10172,10172,10172,10172,10172, 2792, 2792, 2792, 2792, 2792, 2792, 2792,10198,10714,10215,10194,10454, 2792, 10184,10184,10184,10184,10184,10184,10184,10184,10184,10983, 10983,12123,10198,12124,10215,10983, 2792, 2792, 2792, 2795, 10193,10203,10203,10454,10198,10195,10215,10194, 2795, 2795, 2795, 2795, 2795, 2795, 2795, 2795, 2795, 2795,10185,10185, 10185,10185,10185,10185,10185,10185,10185,10199,10217,10358, 10193,10723,10203,10194,10470,10195,10193,10561,10198,10185, 10194,10194,10470,10195,10213,10199,10217,10356,10561,10203, 10358,12125,10473,11022,10259,12141,10356,10199,10217,10259, 10473,10211,10213,10356,10193,10723,10203, 2795, 2796,10195, 10200,10205,10205,10211,10213,10232,10358, 2796, 2796, 2796, 2796, 2796, 2796, 2796, 2796, 2796, 2796,10211,10200,10204, 10204,10199,10259,10259,11022,10211, 2796, 2797,10367,10319, 10200,10319,10205,10213,11640,10232, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797,10367,11640,10501,10205, 10204,10200,10503,10422,10424,10205,10376,10501,10367,10204, 10319,10503,10458,10232,10200,10376,10205,10204,10264,10264, 10264,10264,10264,10264,10264,10264,10264,10319,10422,10424, 10376, 2797, 2799,12149,10204,10731,10422,10458,10644,10264, 10424, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799,10265,10265,10265,10265,10265,10265,10265,10265,10265, 10266,10266,10266,10266,10266,10266,10644,10479,10554,10731, 10445,10444,10265,10271,10271,10271,10271,10271,10271,10368, 10369,10266,10267,10267,10267,10267,10267,10267,10267,10267, 10267,10362,10479,10554,10271,10445,10444,10368,10369,10509, 10362, 2799, 2800,10267,10444,10369,10445,10362,10509,10368, 10369, 2800, 2800, 2800, 2800, 2800, 2800, 2800, 2800, 2800, 2800,10268,10268,10268,10268,10268,10268,10268,10268,10268, 10273,10273,10273,10273,10273,10273,10273,10273,10273,10388, 10562,10485,10268,10379,10380,10582,10587,12159,10388,10485, 10592,10273,10317,10317,10317,10317,10317,10317,10317,10317, 10317,10379,10380,10388,10552,10562, 2800, 2801,10379,12170, 10582,10587,10552,10379,10380,10592, 2801, 2801, 2801, 2801, 2801, 2801, 2801, 2801, 2801, 2801,10348,10348,10348,10348, 10348,10348,10348,10348,10348,10349,10349,10349,10349,10349, 10349,10349,10349,10349,10374,10363,10365,10366,10383,10375, 10378,10669,10506,10374,10387,10365,10366,10383,10669,10378, 10374,10506,10365,10387,10383,10389,10363,10365,10366,10512, 10375,10378, 2801, 2802,10389,10387,10506,10370,10512,12260, 10669,10389, 2802, 2802, 2802, 2802, 2802, 2802, 2802, 2802, 2802, 2802,10363,10365,10366,10370,10375,10378,10560,10500, 10729,10387,10377,10386,10390,10391,10560,10370,10500,10495, 10370,10377,10386,10390,10391,10500,10495,12260,10377,10386, 10390,10495,10566,10377,10386,10390,10391,10520,10453,10523, 2802, 2818,11579,10566,10607,10612,10520,10729,10523, 2818, 2818, 2818, 2818, 2818, 2818, 2818, 2818, 2818, 2818,10377, 10386,10390,10391,10453,10539,10461,10482,10452,10968,10607, 10612, 2818, 2819, 2819,10453, 2819, 2819, 2819, 2819, 2819, 2819,10460, 2819, 2819,10481,10539,10599,11579,12268,10599, 10461,10482,10452, 2819, 2819, 2819, 2819, 2819, 2819, 2819, 10452,10461,10482,10507,10510, 2819,10460,10536,10968,10481, 10581,10539,10507,10510,10460,10599,10536,10481,10516,10507, 10510,10581, 2819, 2819, 2819, 2820, 2820,10516, 2820, 2820, 2820, 2820, 2820, 2820,10516, 2820, 2820,10492,10492,10492, 10492,10492,10492,10492,10492,10492, 2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820,10521,11656,10527,10538, 2820,10565, 10569,10580,10833,10521,10959,10527,10538,10565,10569,10580, 10521,10504,10527,10538,11656, 2820, 2820, 2820, 2831, 2831, 10504, 2831, 2831, 2831, 2831, 2831, 2831,10504, 2831, 2831, 10531,10833,10504,10741,10532,10959,10544,10515,10505, 2831, 2831, 2831, 2831, 2831, 2831, 2831,10515,10505,10531,10585, 10735, 2831,10532,10740,10544,10590,10526,10585,10504,10505, 10531,10515,10586,10590,10532,10526,10544,10741, 2831, 2831, 2831, 2832, 2832,10586, 2832, 2832, 2832, 2832, 2832, 2832, 10526, 2832, 2832,10533,11005,10505,10619,10735,12271,10619, 10740,10513, 2832, 2832, 2832, 2832, 2832, 2832, 2832, 2832, 10513,10533,10595,10602, 2832,10514,10591,10513,10533,10596, 10595,10602,10513,10533,10514,10619,10624,10591,10641,11005, 10596, 2832, 2832, 2832, 2833, 2833,10514, 2833, 2833, 2833, 2833, 2833, 2833,10518, 2833, 2833,10605,12272,10513,11088, 10534,10624,10518,10641,10605, 2833, 2833, 2833, 2833, 2833, 2833, 2833,10514,10543,10518,10837,10657, 2833,10534, 2833, 11088,10474,10474,10474,10474,10474,10474,10474,10474,10474, 10534,10543,10673,10534, 2833, 2833, 2833,10474,10543,10517, 10518,10657,12276,10543,10837, 2833, 2837, 2837,10517, 2837, 2837, 2837, 2837, 2837, 2837,10517, 2837, 2837,10662,12371, 10517,10474,10673,10627,10627,10540,10524, 2837, 2837, 2837, 2837, 2837, 2837, 2837,10540,10524,10610,10606,10745, 2837, 10611,10616,10524,10662,10610,10615,10517,10524,10606,10540, 10656,10611,10616,10615,10627,11634, 2837, 2837, 2837, 2838, 2838,10656, 2838, 2838, 2838, 2838, 2838, 2838,10622, 2838, 2838,10630,11906,10524,12398,10745,10622,11906,10627,10525, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838,10525,10630, 11634,10655, 2838,10529,10754,10646,10970,10635,10635,10655, 10525,10630,10529,10635,10646,10646,10646,10646,10646, 2838, 2838, 2838, 2839, 2839,10529, 2839, 2839, 2839, 2839, 2839, 2839,10542, 2839, 2839,10660,10646,10525,10674,10635,10970, 10542,10754,10660, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 10529,10683,10542,10971,10703, 2839,10546,10546,10546,10546, 10546,10546,10546,10546,10546,10638,10661,10674,10680,10682, 10852,10638, 2839, 2839, 2839,10688,10680,10661,10542,10690, 10682,10683,10852,10688,10703,10971,10638, 2839, 2840, 2840, 10690, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2843, 2843, 2843, 2843, 2843, 2843, 2843, 2843, 2843,10694, 2843, 2843,10704, 10716,10717,10705,10709,10694,10725,10528,10541, 2843, 2843, 2843, 2843, 2843, 2843, 2843,10528,10541,10713,10715,10868, 2843,12437,10528,10541,10704,10713,10717,10528,10541,10715, 10716,10868,10705,10709,12414,10725,12414, 2843, 2843, 2843, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844,10722, 2844, 2844,10747,10528,10541,10705,10709,10722,10726,10708, 10724, 2844, 2844, 2844, 2844, 2844, 2844, 2844,10708,10708, 10708,10724,10756, 2844,10547,10547,10547,10547,10547,10547, 10547,10547,10547,10726,11433,12446,10747, 2844,11469,10708, 2844, 2844, 2844,10548,10548,10548,10548,10548,10548,10548, 10548,10548,10730,10736,10742,10769,10756,11433,10760, 2844, 10730,10736,10708,10732, 2844, 2851, 2851, 2851, 2851, 2851, 2851, 2851, 2851, 2851,10732, 2851, 2851,10746,11469,10663, 10769,10665,10749,10750,10742,10746, 2851, 2851, 2851, 2851, 2851, 2851, 2851,10749,10647,10760,11737,10663, 2851,10665, 12447,10766,11737,10647,10647,10647,10647,10647,10647,10663, 2851,10665,10647,10750,10665, 2851, 2851, 2851,11011,10755, 10650,10765,10779, 2851,10647,10757,10663,10755,10665,10650, 10650,10650,10650,10650,10650,10766,10757, 2851, 2853, 2853, 2853, 2853, 2853, 2853, 2853, 2853, 2853,10779, 2853, 2853, 10650,11011,10667,12274,11802,10666,10664,10767,10765, 2853, 2853, 2853, 2853, 2853, 2853, 2853,10651,12274,10773,10784, 10667, 2853,11802,10666,10664,10651,10651,10651,10651,10651, 10651,10664,10667, 2853,10761,10666,10664,10767, 2853, 2853, 2853,10666,10761,10777,10784,10652,10651,10770,10773,10667, 10770,10777,10666,10664,10652,10652,10652,10652,10652,10652, 2853, 2855, 2855,10652, 2855, 2855, 2855, 2855, 2855, 2855, 10770, 2855, 2855,10782,11637,10652,11127,11127,11127,10778, 10783,10782, 2855, 2855, 2855, 2855, 2855, 2855, 2855,10631, 10778,10783,10789,12307, 2855,11637,10794,10788,10631,10631, 10631,10631,10631,10631,10631,10631,10631,10787,10788,10793, 10792, 2855, 2855, 2855,10797,10787,10799,10789,10792,10631, 10793,10794,10797, 2855, 2856, 2856,10798, 2856, 2856, 2856, 2856, 2856, 2856,11023, 2856, 2856,10802,10798,12307,10969, 11023,10799,10803,10813,10802, 2856, 2856, 2856, 2856, 2856, 2856, 2856,10645,10803,10813,10806,10814, 2856,10806,10958, 10819,10645,10645,10645,10645,10645,10645,10645,10645,10645, 10809,10812,10817,10969, 2856, 2856, 2856,10818,10809,10812, 10817,10814,10645,10835,10806,10819,10958,11803,10818,10832, 2856, 2857, 2857,10823, 2857, 2857, 2857, 2857, 2857, 2857, 2857, 2857, 2857,10822,10823,11803,10840,11029,10835,10841, 10845,10822, 2857, 2857, 2857, 2857, 2857, 2857, 2857,10648, 10832,10845,10826,10840, 2857,10826,11029,10840,10648,10648, 10648,10648,10648,10648,10648,10648,10648,10832,10829,10841, 10844, 2857, 2857, 2857, 2857, 2858,10829,10846,10844,10648, 11029,10826,10832,11009, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858,10649,10830,10861,11003,10830,12449, 12450,11009,10846,10649,10649,10649,10649,10649,10649,10649, 10649,10649,10748,10748,10748,10748,10748,10748,10748,10748, 10748,10861,10866,11003,10649,11009,10830,10860,10748,10850, 10850,10850,10850,10850,10850,10850,10850,10850,10860,10859, 10864,10883,10869,10830,11814, 2858, 2859,10859,10864,10869, 10850,10866,10748,10883,10869, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859,10851,10851,10851,10851,10851, 10851,11814,10853,10853,10853,10853,10854,10854,10854,10854, 10854,10854,10854,10854,10854,12456,10851,10870,10882,10917, 12457,10925,10973,10980,10939,10882,10981,10854,10853,10870, 10882,10917,10870,10925, 2859, 2860, 2860,10919, 2860, 2860, 2860, 2860, 2860, 2860,10853, 2860, 2860,10853,10917,10919, 10925,10973,10919,10980,10939,10981, 2860, 2860, 2860, 2860, 2860, 2860, 2860,11377,11377,11377,10919,11042, 2860,10855, 10855,10855,10855,10855,10855,10855,10855,10855,12462,11042, 12463,11641,10918,10973,10937, 2860, 2860, 2860,10939,10918, 10855, 2860, 2867, 2867,10918, 2867, 2867, 2867, 2867, 2867, 2867,10937, 2867, 2867,10972,10856,10856,10856,10856,10856, 10856,10918,10937, 2867, 2867, 2867, 2867, 2867, 2867, 2867, 2867,11641,12468,11028,10966, 2867,10856,10898,10898,10898, 10898,10898,10898,10898,10898,10898,10966,12469,10972,11734, 11734,11734, 2867, 2867, 2867,11002, 2867, 2868, 2868,11039, 2868, 2868, 2868, 2868, 2868, 2868,11028, 2868, 2868,10907, 10907,10907,10907,10907,10907,10907,10907,10907, 2868, 2868, 2868, 2868, 2868, 2868, 2868,11002,10966,11033, 2868,11039, 2868,10916,10916,10916,10916,10916,10916,10916,10916,10916, 10940,10938,11001,10938,12474,10924,11482, 2868, 2868, 2868, 11001,11031,10924,11033, 2868, 2873, 2873,10924, 2873, 2873, 2873, 2873, 2873, 2873,10977, 2873, 2873,11062,11001,10962, 10940,10979,10938,10942,10924,11062, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873,11031,11482, 2873,10962, 2873,10938, 11067,10942, 2873,10977,10977, 2873, 2873, 2873,11067,10962, 2873,10979,10979,10942,10940, 2873, 2873, 2873,10927,10927, 10927,10927,10927,10927,10927,10927,10927,10928,10928,10928, 10928,10928,10928,10928,10928,10928,10941, 2873, 2896, 2896, 10953, 2896, 2896, 2896, 2896, 2896, 2896,10942, 2896, 2896, 10929,10929,10929,10929,10929,10929,10929,10929,10929, 2896, 2896, 2896, 2896, 2896, 2896, 2896,10941,12013,12013,12013, 10953, 2896,10932,10932,10932,10932,10932,10932,10932,10932, 10932,10974,10974,11473,12475,12483,11432,10941, 2896, 2896, 2896, 2897, 2897,10932, 2897, 2897, 2897, 2897, 2897, 2897, 10941, 2897, 2897,10948,10953,10963,11473,11473,10964,10947, 10932,10974, 2897, 2897, 2897, 2897, 2897, 2897, 2897,11026, 11432,11071,11063,10963, 2897,10976,10964,10947,10949,11071, 10949,10948,10978,11063,11642,10963, 2897,10948,10964,10947, 11004, 2897, 2897, 2897,11026,10933,10933,10933,10933,10933, 10933,10933,10933,10933,10976,11642,12484,10976,11004,10949, 10963,11034,10978, 2897, 2899, 2899,10933, 2899, 2899, 2899, 2899, 2899, 2899,10947, 2899, 2899,10949,11004,10964,10947, 11044,10950,10950,10933,11034, 2899, 2899, 2899, 2899, 2899, 2899, 2899, 2899,10949,10978,11034,10943, 2899,10934,10934, 10934,10934,10934,10934,10934,10934,10934,11059,12058,11064, 11044,12058,10950,11059, 2899, 2899, 2899, 2904, 2904,10934, 2904, 2904, 2904, 2904, 2904, 2904,10943, 2904, 2904,10950, 10967,10984,10984,10975,11064,11860,10934,10984, 2904, 2904, 2904, 2904, 2904, 2904, 2904,11059,10950,10967,11095,12602, 2904,10951,10951,10943,11860,11100,11095,11007,11006,10967, 10943,10943,10975,11100,10984,11007,11013, 2904, 2904, 2904, 2905, 2905,10944, 2905, 2905, 2905, 2905, 2905, 2905,11006, 2905, 2905,10951,11007,11006,11013,11097,10945,10965,10965, 10944, 2905, 2905, 2905, 2905, 2905, 2905, 2905, 2905,10951, 10975,11007,10944, 2905,11068,10945,10965,11013,10951,12560, 11134,11097,11030,10961,12560,11068,10951,10945,10965,11134, 2905, 2905, 2905, 2907, 2907,10961, 2907, 2907, 2907, 2907, 2907, 2907,10965, 2907, 2907,11008,10944,10944,11030,10961, 11015,10945,10944,11030, 2907, 2907, 2907, 2907, 2907, 2907, 2907,10945,10945,10961,11096,11101, 2907,10954,10954,11322, 10946,11015,11014,11105,11109,11096,11101,11008,11008,11636, 11015,11105,11109, 2907, 2907, 2907, 2908, 2908,10946, 2908, 2908, 2908, 2908, 2908, 2908,11322, 2908, 2908,10954,11014, 10946,12623,11636,11102,10952,10952,10946, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908,10954,11191,11117,11038, 2908, 10956,10956,10955,10955,11014,11117,10946,11089,11102,11014, 10952,11327,10954,10954,10946,10952, 2908, 2908, 2908, 2909, 2909,11191, 2909, 2909, 2909, 2909, 2909, 2909,11106, 2909, 2909,10956,10952,10955,10955,11476,11058,11327,11089,11106, 2909, 2909, 2909, 2909, 2909, 2909, 2909,11118,10956,10952, 10955,11129, 2909, 2909,11121,11089,11038,11199,11118,10956, 11038,11038,11121,11129,11130,10956,11131,10955,11058, 2909, 2909, 2909,11476,11131,11058,12686,11130,11132,11131, 2909, 2910, 2910,11199, 2910, 2910, 2910, 2910, 2910, 2910,11132, 2910, 2910,11132, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910,11048,11048, 11048,11048,11048, 2910,11137,11139,11145,11190,11148,11043, 11043,11043,11043,11137,11139,11145,11136,11148,11190,11048, 2910, 2910, 2910, 2911, 2911,11136, 2911, 2911, 2911, 2911, 2911, 2911,11136, 2911, 2911,11043,11478,11435,11435,12694, 11437,11438,11198,11142, 2911, 2911, 2911, 2911, 2911, 2911, 2911,11043,11142,11198,11043,11203, 2911,11046,11046,11046, 11046,11046,11046,11046,11046,11046,11203,11142,11435,11437, 11478,11438,11451, 2911, 2911, 2911, 2912, 2912,11046, 2912, 2912, 2912, 2912, 2912, 2912,11491, 2912, 2912,11087,11087, 11087,11087,11087,11087,11087,11087,11087, 2912, 2912, 2912, 2912, 2912, 2912, 2912,11451,11167,12704,11235,11140, 2912, 2912,11045,11045,11045,11045,11045,11045,11140,11235,11491, 11045,11768,11156,11167,11140,11151, 2912, 2912, 2912,11140, 11143,11156,11045,11499,11151,11167, 2912, 2916, 2916,11143, 2916, 2916, 2916, 2916, 2916, 2916,11143, 2916, 2916,11151, 11768,11045,11448,11168,11449,11140,11159,11162, 2916, 2916, 2916, 2916, 2916, 2916, 2916,11159,11162,11499,12715,12825, 2916,11168,11047,11047,11047,11047,11047,11047,11047,11047, 11047,11162,11448,11168,11449,12879,12884, 2916, 2916, 2916, 2916, 2917, 2917,11047, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2918, 2918,12885, 2918, 2918, 2918, 2918, 2918, 2918,11650, 2918, 2918,11128,11128,11128,11128,11128,11128,11128,11128, 11128, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918,11146, 11152,11157,11163, 2918,11172,11141,11452,11513,11146,11152, 11157,11163,11650,11172,11141,11146,11152,11157,11163,11175, 2918, 2918, 2918, 2918, 2919, 2919,11141, 2919, 2919, 2919, 2919, 2919, 2919,11150, 2919, 2919,11452,11169,11170,11339, 11175,11513,11150,11180,11174, 2919, 2919, 2919, 2919, 2919, 2919, 2919,11141,11174,11150,11169,11170, 2919,11240,11289, 11174,11180,11169,12888,11189,11339,11175,11169,11170,11240, 11289,11170,11189,11180, 2919, 2919, 2919, 2919, 2921, 2921, 11150, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2923, 2923, 2923, 2923, 2923, 2923, 2923, 2923, 2923, 2923,12889,12898,11224, 11149,11153,11154, 2923, 2923, 2923, 2923, 2923, 2923,11149, 11153,11154,11197,12175,12175,12175,11149,11153,11202,11206, 11197,11149,11153,11154,11224,11231,11202,11206,11176, 2923, 2923, 2923, 2923, 2923, 2923, 2925, 2925,11176, 2925, 2925, 2925, 2925, 2925, 2925,11226, 2925, 2925,11149,11153,11154, 11231,11480,11176,11179,11160,11161, 2925, 2925, 2925, 2925, 2925, 2925, 2925,11160,11161,11234,12899,12910, 2925,11226, 11160,11179,11236,11234,11227,11160,11161,11226,11179,11485, 11489,11480,11669,11179,12911, 2925, 2925, 2925, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931,11236,11255,11227, 11259,11160,11161,11164, 2931, 2931, 2931, 2931, 2931, 2931, 11227,11318,11164,11239,11243,11669,11485,11489,11293,11164, 11318,11239,11243,11255,11164,11259, 2931,11263,11267,11293, 2931, 2931, 2931, 2931, 2931, 2931, 2932, 2932,11493, 2932, 2932, 2932, 2932, 2932, 2932,11165, 2932, 2932,11257,11258, 11164,12926,11263,11267,11165,11177,11178, 2932, 2932, 2932, 2932, 2932, 2932, 2932,11177,11178,11165,11288,11493, 2932, 11292,11177,11529,11257,11258,11288,11177,11178,11292,11271, 11275,11257, 2932,11266,11274,11258, 2932, 2932, 2932, 2932, 2944, 2944,11165, 2944, 2944, 2944, 2944, 2944, 2944,11497, 2944, 2944,11177,11178,11271,11275,11529,11353,11266,11274, 11276, 2944, 2944, 2944, 2944, 2944, 2944, 2944,11781,11266, 11274,11280,12927, 2944,11182,11182,11182,11182,11182,11182, 11182,11182,11182,11353,11519,11276,11497,11503,12944,11508, 2944, 2944, 2944, 2944, 2945, 2945,11280, 2945, 2945, 2945, 2945, 2945, 2945,11781, 2945, 2945,11183,11183,11183,11183, 11183,11183,11183,11183,11183, 2945, 2945, 2945, 2945, 2945, 2945, 2945, 2945,11519,11503,11279,11508, 2945,11184,11184, 11184,11184,11184,11184,11184,11184,11184,11283,11295,11299, 11303,11302,11304,11265, 2945, 2945, 2945, 2945, 2946, 2946, 11279, 2946, 2946, 2946, 2946, 2946, 2946,11308, 2946, 2946, 11307,11279,11283,11295,11299,11303,11302,11304,11265, 2946, 2946, 2946, 2946, 2946, 2946, 2946,11265,11302,11311,11273, 11384, 2946,11308, 2946,11383,11307,11212,11212,11212,11212, 11212,11212,11212,11212,11212,11383,11307,11278, 2946, 2946, 2946, 2946,11212,11311,11273,11384,11430,11539,12436, 2946, 2947, 2947,11273, 2947, 2947, 2947, 2947, 2947, 2947,11285, 2947, 2947,11278,11430,11301,11306,11212,12436,11282,11320, 11278, 2947, 2947, 2947, 2947, 2947, 2947, 2947,11320,11324, 11310,11539,11328, 2947,11285,11320,11382,11430,11324,11301, 11306,11328,11285,11282,11382,11326,11282,11301,11306,11387, 2947, 2947, 2947, 2956,11326,11310,11328,11387,11310,11517, 12984,11326, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956, 2956,11282,11395,11654,11654,11654,12989, 2956, 2956, 2956, 2956, 2956, 2956,11310,11294,11294,11294,11294,11294, 11294,11294,11294,11294,11390,11654,11517,11400,11395,11313, 2956,11294,11390,11331, 2956, 2956, 2956, 2956, 2956, 2956, 2959, 2959, 2959, 2959, 2959, 2959, 2959, 2959, 2959, 2959, 11332,11331,11400,12999,11313,11294, 2959, 2959, 2959, 2959, 2959, 2959,11313,11331,11336,11338,11350,11364,11332,11367, 11518,11398,11424,11336,11338,11350,11364,11527,11367,11398, 11332,11338, 2959, 2959, 2959, 2959, 2959, 2959, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,11424,11520,13003, 11518,11329,11330,11340, 2966, 2966, 2966, 2966, 2966, 2966, 11329,11330,11340,11394,11527,11520,11342,11329,11399,11613, 11403,11520,11329,11330,11394,11342, 2966,11340,11403,11399, 2966, 2966, 2966, 2966, 2966, 2966, 2967,11342, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 2967,11329,11330, 11537,11613,13006,11352, 2967, 2967, 2967, 2967, 2967, 2967, 11334,11344,11352,11342,11354,11443,11404,11407,13014,11352, 12459,12459,12459,11354,11443,11407,11345,11404,11334,11344, 2967, 2967, 2967, 2967, 2967, 2967, 2981,11537,11354,11346, 11334,11344,11333,11334,11345, 2981, 2981, 2981, 2981, 2981, 2981, 2981, 2981, 2981, 2981,11343,11345,11346,11434,11365, 11333, 2981, 2981, 2981, 2981, 2981, 2981,11333,11365,11346, 11370,11465,11333,11343,11413,11365,11416,11341,13019,11370, 11343,13023,11413,11434,11416,11343,11341, 2981, 2981, 2981, 2981, 2981, 2981,11341,11370,11348,11465,11358,11341,11548, 2981, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 2984, 2984,11347,11472,11348,11355,11358,12195, 2984, 2984, 2984, 2984, 2984, 2984,11355,11341,11348,11422,11358,11348,11347, 11355,11423,11463,11548,11422,11355,11347,11472,11425,12195, 11463,11347,11423, 2984, 2984, 2984, 2984, 2984, 2984, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,11357,11439, 11425,11355,11371,11464,11445, 2991, 2991, 2991, 2991, 2991, 2991,11371,11429,11445,11464,11479,11357,11439,11371,11425, 11429,11426,11546,11357,13026,12804,11479,12804,11357,11439, 11440, 2991, 2991, 2991, 2991, 2991, 2991,11356,11426,11440, 11440,11440,11429,11426, 2991, 2992,11356, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992,11481,11356,11546, 11440,11429,11426, 2992, 2992, 2992, 2992, 2992, 2992,11360, 11360,11360,11360,11360,11360,11360,11360,11360,11606,11468, 11477,12366,11481,12258,11356,11533,11440,11468,11477, 2992, 2992, 2992, 2992, 2992, 2992, 3013, 3013,11441, 3013, 3013, 3013, 3013, 3013, 3013,11606, 3013, 3013,11361,11361,11361, 11361,11361,11361,11361,11361,11361, 3013, 3013, 3013, 3013, 3013, 3013, 3013,12258,11533,11543,12366,11441, 3013,11362, 11362,11362,11362,11362,11362,11362,11362,11362,11427,11428, 11441,11368,13040,11494,13043, 3013, 3013, 3013, 3014, 3014, 11368, 3014, 3014, 3014, 3014, 3014, 3014,11368, 3014, 3014, 11427,11428,11368,11427,11543,11554,11561,11428,11494, 3014, 3014, 3014, 3014, 3014, 3014, 3014, 3014,11490,11498,11427, 11428, 3014,12296,11522,11532,11490,11498,11556,11368,11378, 11378,11378,11378,11378,11378,11378,11378,11378, 3014, 3014, 3014, 3017,11554,11561,12618,13169,12296, 3017,11522,11532, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017,11436, 11436,11556,13238,12618,11568,11564, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3021, 3021, 11436, 3021, 3021, 3021, 3021, 3021, 3021,11531, 3021, 3021, 11453,11456,11564,11568,11578,11471,11471,11369,11372, 3021, 3021, 3021, 3021, 3021, 3021, 3021,11369,11372,11453,11456, 13239, 3021,11436,11442,11372,11492,11500,11531,11369,11372, 11453,11456,11442,11442,11442,11471,11492,11500, 3021, 3021, 3021, 3022, 3022,11578, 3022, 3022, 3022, 3022, 3022, 3022, 11373, 3022, 3022,11442,11369,11372,11541,11550,11658,11373, 11542,11471, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 11658,11373,11567,11530, 3022,11375,11375,11375,11375,11375, 11375,11375,11375,11375,11530,11542,11541,11550,11540,11566, 11504, 3022, 3022, 3022, 3027,11454,11375,11373,11504,11540, 3027, 3027,11567,11549,11454,11454,11454,11454,11454,11454, 11454,11454,11454,11528,11549, 3027,11538, 3027,11547, 3027, 11555,11528, 3027,11566,11538,11454,11547, 3027,11555,11571, 3027,11455, 3027,11551, 3027,11573, 3027, 3027, 3027, 3028, 11455,11455,11455,11455,11455,11455, 3028,11560,11457,11565, 11560,11582,11457,11457,11457,11457,11575,11565,11551,11557, 3028,11455, 3028,11572, 3028,11577,11571, 3028, 3028,11573, 11557,11572, 3028,11584,11590, 3028,11560, 3028,11457, 3028, 11574, 3028, 3028, 3028, 3028, 3029,11575,11583,11582,11460, 11577,11574, 3029,11585,11457,11583,11586,11457,11460,11460, 11460,11460,11460,11460,11585,11593, 3029,11584, 3029,11855, 3029,11590,11591, 3029, 3029,11855,11593,11587, 3029,11460, 11591, 3029,11592, 3029,11458, 3029,11586, 3029, 3029, 3029, 3029, 3030,13244,11458,11458,11458,11458,11458,11458,11458, 11458,11458,11587,11511,11511,11511,11511,11511,11511,11511, 11511,11511,11459, 3030,11458,11596,11592,11597,11596,11511, 3030,11459,11459,11459,11459,11459,11459,11459,11459,11459, 11602,11603,11601,11614, 3030,11605, 3030,11618, 3030,11600, 11601, 3030,11459,11511,11596,11604, 3030,13261,11618, 3030, 11619, 3030,12380, 3030,11597, 3030, 3030, 3030, 3031,11638, 11605,11603,11635,11614,11602, 3031,11512,11512,11512,11512, 11512,11512,11512,11512,11512,11619,11600,11617,11623, 3031, 11622, 3031,11607, 3031,11604,11617, 3031, 3031,11622,11623, 11607, 3031,11635,11638, 3031,11624, 3031,12380, 3031,11645, 3031, 3031, 3031, 3032, 3032,11607,11512,11645,11625, 3032, 11523,11523,11523,11523,11523,11523,11523,11523,11523,11512, 11624,11524,11524,11524,11524,11524,12591,11625,11647,11630, 12591,11523,11646,12410, 3032,11740,11630,11632,11632,11625, 13264, 3032,11524,11646,11576,11576,11576,11576,11576,11576, 11576,11576,11576,11647,11523, 3032,11625, 3032,11630, 3032, 11576,11662, 3032,11664,11663,11524,11740, 3032,11632,11662, 3032,11738, 3032,12410, 3032,11663, 3032, 3032, 3032, 3033, 11609,11773,11739,11740,11576,11632, 3033,11626,11664,11758, 11609,11609,11609,11609,11609,11609,11609,11609,11609,11739, 3033,11738, 3033,11739, 3033,11808,11626, 3033,11759,13306, 11773,11609, 3033,11626,11758, 3033,11677, 3033,11626, 3033, 11684, 3033, 3033, 3033, 3035, 3035,11612,11627,11677,11628, 3035,11808,11684,11629,11629,11626,11612,11612,11612,11612, 11612,11612,11612,11612,11612,11677,11627,11759,11628,11684, 11773,11767,11629,11633,11809, 3035,11757,11612,11627,12106, 11628,11627, 3035,11767,11629,12106,11628,11694, 3035,11651, 11651,11651,11651,11651,11651,11627, 3035,11628, 3035,11694, 3035,11629,11678, 3035,11633,11809,11757,11806, 3035,11678, 11651, 3035,11848, 3035,11678, 3035,11694, 3035, 3035, 3035, 3053,11633,11744,11848,11760,11770,11771, 3053,11705,13307, 11716,11678,11679,11633,11653,11653,11653,11653,11653,11653, 11705, 3053,11716, 3053,11679, 3053,11806,11679, 3053,11877, 11770,11771,11744, 3053,11760,11653, 3053,11705, 3053,11716, 3053,11679, 3053, 3053, 3053, 3054,11774,11652,11652,11652, 11652,11652,11652,13212,11877,11750,11652,11655,11655,11655, 11655,11655,11655,11655,11655,11655,11744, 3054,11652,11810, 13212,13308,11685,11751, 3054,11774,11750,11870,11655,11685, 11659,11659,11659,11659,11685,11870,11695,11686, 3054,11750, 3054,11810, 3054,11695,11769, 3054,11810,11849,11695,11686, 3054,11685,11686, 3054,11751, 3054,11659, 3054,11849, 3054, 3054, 3054, 3055,11774,11696,11695,11686,11876,13309, 3055, 11706,11751,11659,11741,11769,11659,11696,11706,11876,11696, 11745,11842,11706, 3055,13310, 3055, 3055, 3055,11751,11766, 3055, 3055,11842,11696,11842, 3055,11707,11718, 3055,11706, 3055,11766, 3055,11741, 3055, 3055, 3055, 3056,11707,11718, 11745,11707,11718,11776, 3056,11691,11691,11691,11691,11691, 11691,11691,11691,11691,11717,11707,11718,11741, 3056,11766, 3056,11717, 3056,11882,11871, 3056,11717,11741,11741,11772, 3056,11779,11776, 3056,11745, 3056,11805, 3056,11776, 3056, 3056, 3056, 3057,11717,11812,11871,11837,11743,11882, 3057, 11692,11692,11692,11692,11692,11692,11692,11692,11692,11772, 11881,11779,11871, 3057,11779, 3057,11805, 3057,11837,12128, 3057,11881,11812,11753,11753, 3057, 3057,11743, 3057,11837, 3057,12128, 3057,12306, 3057, 3057, 3057, 3058,11736,11736, 11736,11736,11736,11736, 3058,11693,11693,11693,11693,11693, 11693,11693,11693,11693,11753,11839,11807,11753, 3058,11736, 3058,11743, 3058,11839, 3058, 3058,11839,11743,13311,11765, 3058,11753,12306, 3058,11807, 3058,11736, 3058,12397, 3058, 3058, 3058, 3059,11811,11746,11807,11747,11765,11753, 3059, 11701,11701,11701,11701,11701,11701,11701,11701,11701,11765, 11886,11811,11746, 3059,11747, 3059,11811, 3059,11840, 3059, 3059,11886,11840,12397,11746, 3059,11747,11742, 3059,11840, 3059,11778, 3059,11777, 3059, 3059, 3059, 3060,11702,11702, 11702,11702,11702,11702,11702,11702,11702,11703,11703,11703, 11703,11703,11703,11703,11703,11703,11875,11742,11746, 3060, 11747,11778,11777,11742,11875,11777, 3060,11712,11712,11712, 11712,11712,11712,11712,11712,11712,11850,13313,11845,11850, 3060,11841, 3060,11742, 3060,11841,11778, 3060,11845,11845, 11850,11742, 3060,11867,11775, 3060,11841, 3060,11850, 3060, 11841, 3060, 3060, 3060, 3061,11713,11713,11713,11713,11713, 11713,11713,11713,11713,11714,11714,11714,11714,11714,11714, 11714,11714,11714,11775,11880,13243, 3061,11867,11813,13314, 11865,13243,11880, 3061,11723,11723,11723,11723,11723,11723, 11723,11723,11723,11763,11885,11889,11904, 3061,11775, 3061, 11813, 3061,11885,11889, 3061,11813,11847,11813, 3061, 3061, 11865,11763, 3061,11911, 3061, 3061, 3061,11847, 3061, 3061, 3061, 3062,11847,11763,11911,11754,11754,11904,13315, 3062, 11724,11724,11724,11724,11724,11724,11724,11724,11724,11725, 11725,11725,11725,11725,11725,11725,11725,11725,13316,11958, 11749, 3062,11764,11748,11752,11752,11754,11763, 3062,11735, 11735,11735,11735,11735,11735,11735,11735,11735,11749,11895, 11764,11748, 3062,11754, 3062,11958, 3062,11895,11910, 3062, 11749,11761,11764,11748, 3062,11752,11910, 3062,11912, 3062, 11754, 3062,11748, 3062, 3062, 3062, 3063,11846,11762,11755, 11755,11846,11752,11749,11780,11756,11756,11915,13375,11804, 11764,11761,11846,11912,11749,11915,11762,11748, 3063,11752, 11752,11846,13380,11761,11804, 3063,11843,11843,11762,11851, 11755,11843,11804,11755,11780,12325,11756,11761,11843, 3063, 11815, 3063,11762, 3063,11783,11783, 3063,11755,11804,11762, 11783, 3063,11816,11756, 3063,11815, 3063,11815, 3063,11917, 3063, 3063, 3063, 3064,11755,11756,11815,11816,11780,11920, 11756,11852,11852,11815,12325,11780,11963,11920,11851,11838, 11852,11851,11816,11852,11917, 3064,11851,11872,11783,11851, 12393,11816, 3064,11820,11820,11820,11820,11820,11820,11820, 11820,11820,11963,12521,11925,11838, 3064,11844, 3064,11838, 3064,11916,11925, 3064,11858,11858,11858,11872, 3064,12393, 11838, 3064,11916, 3064,11922, 3064,12521, 3064, 3064, 3064, 3065,11975,11862,11844,11862,11858,11921,11844,11932,11857, 11857,11857,11857,11857,11857,11926,11932,11921,11844,11922, 11929,11844, 3065,11929,11820,11872,11926,11975,11862, 3065, 11857,11859,11859,11859,11859,11859,11859,11859,11859,11859, 11937,13390,11938, 3065,11862, 3065,11942, 3065,11937,11929, 3065,12416,11859,11938,11942, 3065, 3065,11943, 3065,11939, 3065,11989, 3065,12021, 3065, 3065, 3065, 3066,11943,11863, 11863,11863,11863,11863,11863,11863,11863,11863,11864,11864, 11864,11864,11864,11864,11939,11949,11951,11989,12021, 3066, 11863,11946,12416,11949,11946,11951, 3066,11952,11954,11864, 11866,11866,11866,11866,11866,11866,11952,11954,12019,11866, 3066, 3066, 3066,11952, 3066,11957,12019, 3066,12024,11956, 11946,11866, 3066,12136,11957, 3066,12024, 3066,11956, 3066, 12020, 3066, 3066, 3066, 3067,11956,11960,11962,11964,11957, 11866,12020,11967,11965,12031,11960,11962,11964,11966,12136, 11968,13394,11965,11962,13215,12031, 3067,11966,11969,11965, 11967,11972,11964, 3067,11965,11978,11974,11980,11968,11966, 11972,13215,11967,11970,11978,11974,11969, 3067,11986, 3067, 11968, 3067,11974,11969, 3067,11980,11978,11986,11969, 3067, 11965,11970, 3067,11979, 3067,11966, 3067,11980, 3067, 3067, 3067, 3068, 3068,11970,11976,11977,11970, 3068,12263,12273, 3068,11979,11978,11976,11977,11981,11982,11983,11979,12027, 11988,11977,12035,11979,13397,13045,11977,12027,11976,11988, 12035,11984, 3068,11981,11982,11983,11988,12036,13045, 3068, 12263,12273,11983,12411,12129,11981,11982,11983,12036,11984, 11991,11994,11977, 3068,11990, 3068,12129, 3068,11992,11991, 3068,11984,11993,11990,11984, 3068,11991,11992, 3068,11994, 3068,11991, 3068,12000, 3068, 3068, 3068, 3069,11990,11992, 11993,11994,12000,12411,12001,12003,13221,11993,12605,12422, 12040,12032,11993,12001,12003,12006,12037,11991,12040, 3069, 12001,12422,13400,13221,12006,11992, 3069,11996,11996,11996, 11996,11996,11996,11996,11996,11996,12032,12007,12041,12006, 3069,12037, 3069,12139, 3069,12005,12007, 3069,12044,12041, 12051, 3069, 3069,12007,12005, 3069,12044, 3069,12051, 3069, 12054, 3069, 3069, 3069, 3070, 3070,12005,12605,12054,12139, 3070,12300,12069, 3070,11997,11997,11997,11997,11997,11997, 11997,11997,11997,11998,11998,11998,11998,11998,11998,11998, 11998,11998,12005,12061,12004, 3070,12008,12069,12009,12071, 12072,12061, 3070,12004,12073,12008,12076,12009,12300,12084, 12004,12083,12008,12082,12076,12004, 3070,12008, 3070,12009, 3070,12082,12083, 3070,12071,12072,13405,12302, 3070,12073, 12282, 3070,12071, 3070,12084, 3070,12072, 3070, 3070, 3070, 3088,12004,13409,12008,12259,12009,12011,12011,12011,12011, 12011,12011,12011,12011,12011,12087,12089,12088,12092,12312, 12282,12302, 3088,12087,12111,12259,12092,12011,12088, 3088, 12014,12014,12014,12014,12014,12014,12014,12014,12014,12282, 12093,12089,12131, 3088,12096, 3088, 3088, 3088,12102,12111, 3088,12093,12096,12312,12131, 3088,12102,12131, 3088,12113, 3088,12114, 3088,12115, 3088, 3088, 3088, 3089,13412,12310, 13225, 3089,12465,12465,12465,12050,12050,12050,12050,12050, 12050,12050,12050,12050,12113,12116,12114,13225,12115, 3089, 12204,12050,12113,12130,12133,12116, 3089,12114,12118,12117, 12130,12204,12140,12133,12143,12130,12310,12116,12118,12117, 3089,12140, 3089,12143, 3089,12050,12117, 3089,12119,12209, 12118,12117, 3089,12118,12116, 3089,12140, 3089,12119, 3089, 12209, 3089, 3089, 3089, 3090,12120,12127,12118,12117,12135, 12119,13365,12144,12120,12127,12138,12119,12146,12135,12147, 12138,12144,12146,12120,12127,12135, 3090,12119,12144,12156, 13365,12127,12205, 3090,12156,12120,12126,12126,12126,12126, 12126,12126,12126,12126,12126,12147,12138, 3090,12146, 3090, 12213, 3090,12120,12127, 3090,12157,12148,12205,12150, 3090, 12156,12213, 3090,12168, 3090,12148, 3090,12150, 3090, 3090, 3090, 3090, 3091,12153,12150,12154,12126,12151,12158,12150, 12148,12157,12153,12164,12154,12203,12151,12158,12160,12168, 12167,12154,12164,12203, 3091,12167,12177,12160,12151,12161, 13425, 3091,12158,12182,12160,12150,13338,12165,12161,12160, 12315,12178,12182,13338,12177, 3091,12165, 3091, 3091, 3091, 12161,12167, 3091,12165,12151,12185,12177, 3091,12321,12178, 3091,12169, 3091,12171, 3091,12160, 3091, 3091, 3091, 3092, 12169,12178,12171,12172,12184,12227,12161,12315,12180,12171, 12208,12185,12172,12184,12171,12169,12227,12330,12208,12212, 12184, 3092,12321,13428,12172,12190,12180,12212, 3092,12176, 12176,12176,12176,12176,12176,12176,12176,12176,12180,12216, 12171,12180, 3092,12190, 3092,13429, 3092,12216, 3092, 3092, 12172,12330,12226,12186, 3092,12190, 3092, 3092,12338, 3092, 12226, 3092,12186, 3092, 3092, 3092, 3099, 3099, 3099, 3099, 3099, 3099, 3099, 3099, 3099, 3099,12179,12186,12223,12187, 12228,12188, 3099, 3099, 3099, 3099, 3099, 3099,12187,12231, 12188,12236,12338,12232,12179,12187,12237,12231,13438,12236, 12187,12179,12188,12223,12232,12228,12179,12237, 3099, 3099, 3099, 3099, 3099, 3099, 3102, 3102, 3102, 3102, 3102, 3102, 3102, 3102, 3102, 3102,12189,12233,12187,12247,12188,12240, 3102, 3102, 3102, 3102, 3102, 3102,12246,12240,12247,12250, 12251,12283,12189,12491,12246,12254,12264,12250,12369,12189, 12233,12251,12367,12254,12189,12367, 3102, 3102, 3102, 3102, 3102, 3102, 3103, 3103, 3103, 3103, 3103, 3103, 3103, 3103, 3103,12283,12491,12264,12369,12367,12264, 3103, 3103, 3103, 3103, 3103, 3103, 3103,12192,12192,12192,12192,12192,12192, 12192,12192,12192,12193,12193,12193,12193,12193,12193,12193, 12193,12193,12264,13439, 3103, 3103, 3103, 3103, 3103, 3103, 3108, 3108, 3108, 3108, 3108, 3108, 3108, 3108, 3108, 3108, 12262,12262,12275,12290,12305,12324, 3108, 3108, 3108, 3108, 3108, 3108,12194,12194,12194,12194,12194,12194,12194,12194, 12194,12261,12270,12270,13450,13074,12333,12275,12290,12305, 12324,12262, 3108, 3108, 3108, 3108, 3108, 3108, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109,12261,12295,12284, 12297,12333,12289,12270, 3109, 3109, 3109, 3109, 3109, 3109, 12262,12288,12261,12289,12301,12348,12265,12284,12304,12288, 13074,13451,12301,12297,12297,12265,12265,12265,12295,12284, 3109, 3109, 3109, 3109, 3109, 3109, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118,12265,12303,12304,12348, 12322,12311, 3118, 3118, 3118, 3118, 3118, 3118,12303,12311, 12320,12322,12328,12267,12285,12323,12331,12512,12285,12285, 12285,12285,12267,12267,12267,12267,12267,12331, 3118, 3118, 3118, 3118, 3118, 3118, 3119, 3119, 3119, 3119, 3119, 3119, 3119, 3119, 3119,12267,12285,12323,12512,12320,12316,12328, 3119, 3119, 3119, 3119, 3119, 3119,12316,12329,12336,12337, 12285,12343,12280,12285,12332,12329,12355,12337,12342,12343, 12347,12280,12280,12280,12351,12358, 3119, 3119, 3119, 3119, 3119, 3119, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130,12280,12339,12332,12336,12355,13466, 3130, 3130, 3130, 3130, 3130, 3130,12339,12342,12353,12347,12354,12277, 12377,12351,12358,13303,12353,12365,12363,13303,12277,12277, 12277,12277,12277,12277, 3130, 3130, 3130, 3130, 3130, 3130, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131,12277, 12377,12412,12354,12368,12359,12378, 3131, 3131, 3131, 3131, 3131, 3131,12359,12363,12365,12370,12196,12364,12196,12196, 12196,12196,12196,12196,12196,12196,12196,12370,12368,12403, 12378,12412, 3131, 3131, 3131, 3131, 3131, 3131, 3138,12196, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 12370,12364,13467,12523,12403,12409, 3138, 3138, 3138, 3138, 3138, 3138,12352,12352,12352,12352,12352,12352,12352,12352, 12352,12374,12401,12373,12379,12421,12523,12375,12352,12374, 12401,12409, 3138, 3138, 3138, 3138, 3138, 3138, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146,12425,12740, 12421,12376,12352,12402, 3146, 3146, 3146, 3146, 3146, 3146, 12373,12375,12376,12379,12402,12279,12407,12408,12413,13484, 12415,13104,12740,12425,12279,12279,12279,12279,12279,12279, 3146, 3146, 3146, 3146, 3146, 3146, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147,12279,12413,12407,12471,12471, 12471,12408, 3147, 3147, 3147, 3147, 3147, 3147,12392,12394, 12415,12419,12420,12441,12407,12442,13104,12611,12392,12419, 13525,12394,12407,12420,12524,12392,12611,12442, 3147, 3147, 3147, 3147, 3147, 3147, 3154, 3154, 3154, 3154, 3154, 3154, 3154, 3154, 3154, 3154,12394,12424,12441,12392,12524,12423, 3154, 3154, 3154, 3154, 3154, 3154,12423,12424,12443,12444, 12424,12423,12477,12477,12477,12443,12558,12561,12558,13530, 12443,12444,12561,12558,12444,12561, 3154, 3154, 3154, 3154, 3154, 3154, 3158, 3158, 3158, 3158, 3158, 3158, 3158, 3158, 3158, 3158,12428,12428,12428,12428,12428,12428, 3158, 3158, 3158, 3158, 3158, 3158,12452,12452,12452,12452,12452,12452, 12452,12452,12452,12428,12490,12514,12720,12720,12720,12431, 12431,12431,12431,12431, 3158, 3158, 3158, 3158, 3158, 3158, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 12431,12434,12434,12434,12490,12514, 3159, 3159, 3159, 3159, 3159, 3159,12453,12453,12453,12453,12453,12453,12453,12453, 12453,13540,12434,12454,12454,12454,12454,12454,12454,12454, 12454,12454, 3159, 3159, 3159, 3159, 3159, 3159, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162,12433,12433, 12433,12433,12433,12433, 3162, 3162, 3162, 3162, 3162, 3162, 12460,12460,12460,12460,12460,12460,12460,12460,12460,12433, 12466,12466,12466,12466,12466,12466,12466,12466,12466,13544, 3162, 3162, 3162, 3162, 3162, 3162, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169, 3169,12559,12559,12515,13358,13358, 12559,12525, 3169, 3169, 3169, 3169, 3169, 3169,12472,12472, 12472,12472,12472,12472,12472,12472,12472,12478,12478,12478, 12478,12478,12478,12478,12478,12478,12515,12525, 3169, 3169, 3169, 3169, 3169, 3169, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170,12479,12481,13547,12630,12622,12681, 3170, 3170, 3170, 3170, 3170, 3170,12479,12481,12630,13556, 12481,12197,13561,12197,12197,12197,12197,12197,12197,12197, 12197,12197,12622,12479,12481,12681, 3170, 3170, 3170, 3170, 3170, 3170, 3175, 3175,12197, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3193, 3193,12480, 3193, 3193, 3193, 3193, 3193, 3193, 12480, 3193, 3193,12492,12506,12480,12522,12529,12529,12493, 13565,13568, 3193, 3193, 3193, 3193, 3193, 3193, 3193,12534, 12492,12554,12480,12198, 3193,12198,12198,12198,12198,12198, 12198,12198,12198,12198,12492,12506,12513,12529,12506,12493, 12522, 3193, 3193, 3193, 3194, 3194,12198, 3194, 3194, 3194, 3194, 3194, 3194,12534, 3194, 3194,12486,12486,12486,12486, 12486,12486,12486,12486,12486, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194,12493,12513,12554,12266, 3194,12562,12565, 12554,13602,13629,12562,12565,12266,12266,12266,12266,12266, 12266,12266,12266,12266, 3194, 3194, 3194, 3196, 3196,12530, 3196, 3196, 3196, 3196, 3196, 3196,12266, 3196, 3196,12487, 12487,12487,12487,12487,12487,12487,12487,12487, 3196, 3196, 3196, 3196, 3196, 3196, 3196,12629,12555,12557,12530,12281, 3196,12555,12557,12629,13634,12555,12530,12557,12281,12281, 12281,12281,12281,12281,12281,12281,12281, 3196, 3196, 3196, 3197, 3197,12494, 3197, 3197, 3197, 3197, 3197, 3197,12281, 3197, 3197,12488,12488,12488,12488,12488,12488,12488,12488, 12488, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197,12634, 13644,12567,12494, 3197,12520,12495,12567,12634,12497,12556, 12516,12494,12567,12527,12556,12381,12520,12684,12556,12563, 3197, 3197, 3197, 3199, 3199,12381, 3199, 3199, 3199, 3199, 3199, 3199,12496, 3199, 3199,12495,12494,12381,12497,12516, 12531,12520,12527,12684, 3199, 3199, 3199, 3199, 3199, 3199, 3199,12516,12566,13648,12381,12566, 3199,12566,12495,12496, 12381,12563,12496,12566,12497,12516,12563,12527,12382,12495, 12531,13046,12497, 3199, 3199, 3199, 3200, 3200,12382, 3200, 3200, 3200, 3200, 3200, 3200,12382, 3200, 3200,12496,12597, 12382,12949,12949,12949,12531,13046,12496, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200,12568,12588,12382,13651, 3200, 12568,12588,12612,12382,13654,13659,12528,12426,12426,12426, 12426,12426,12426,12426,12426,12426, 3200, 3200, 3200, 3201, 3201,12519, 3201, 3201, 3201, 3201, 3201, 3201,12426, 3201, 3201,12597,12498,12498,12612,12528,12597,12499,12635,12519, 3201, 3201, 3201, 3201, 3201, 3201, 3201,12278,12517,12635, 12498,12519, 3201,13663, 3201,12499,12278,12278,12278,12278, 12278,12278,12498,12508,12508,12278,12517,12499,12593, 3201, 3201, 3201,13666,12383,12528,13044,12519,12278,12517,12501, 3201, 3207, 3207,12383, 3207, 3207, 3207, 3207, 3207, 3207, 13030, 3207, 3207,12526,12508,12383,12498,12501,12593,12502, 12508,12499, 3207, 3207, 3207, 3207, 3207, 3207, 3207,12501, 13044,12508,12383,12526, 3207,12626,12532,12502,12383,12517, 12593,12626,12526,13677,12502,12593,12384,12383,12508,12502, 13030, 3207, 3207, 3207, 3208, 3208,12384, 3208, 3208, 3208, 3208, 3208, 3208,12501, 3208, 3208,12532,12631,12384,12636, 12533,12384,12503,12626,12532, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208,12502,12569,12384,13031, 3208,12569,12569, 12503,12384,12631,12569,12636,12641,12569,12536,12536,12385, 12533,12665,12503,12536, 3208, 3208, 3208, 3212, 3212,12385, 3212, 3212, 3212, 3212, 3212, 3212,13031, 3212, 3212,12639, 12641,12385,12670,12692,12518,12504,12665,12639, 3212, 3212, 3212, 3212, 3212, 3212, 3212,12640,12503,12503,12385,12533, 3212,12536,12518,12504,12385,12564,12640,12670,12564,12692, 12385,12590,12386,12564,12518,12504,12504, 3212, 3212, 3212, 3213, 3213,12386, 3213, 3213, 3213, 3213, 3213, 3213,12564, 3213, 3213,13679,13680,12386,13189,13684,12500,12511,12511, 12386, 3213, 3213, 3213, 3213, 3213, 3213, 3213, 3213,12504, 12673,12386,12644, 3213,12518,12500,13189,12386,12585,12590, 12644,12585,12673,12590,12590,12387,12585,12500,12590,12511, 3213, 3213, 3213, 3216, 3216,12387, 3216, 3216, 3216, 3216, 3216, 3216,12585, 3216, 3216,12586,12511,12387,13686,12598, 12586,13067,13687,12500, 3216, 3216, 3216, 3216, 3216, 3216, 3216,12500,12586,12511,12387,12648, 3216,13691,12509,12509, 12387,13069,12387,12648,12427,12427,12427,12427,12427,12427, 12427,12427,12427, 3216, 3216, 3216, 3217, 3217,13067, 3217, 3217, 3217, 3217, 3217, 3217,12427, 3217, 3217,13058,12509, 12594,12598,12600,12507,12507,13069,12598, 3217, 3217, 3217, 3217, 3217, 3217, 3217, 3217,12584,12509,12587,12598, 3217, 12584,13693,12587,12388,12645,12509,12584,12584,13058,12587, 12595,12388,12509,12509,12507,12645, 3217, 3217, 3217, 3219, 3219,12388, 3219, 3219, 3219, 3219, 3219, 3219,12594, 3219, 3219,12507,12594,12388,12600,13071,12655,12594,12600,12600, 3219, 3219, 3219, 3219, 3219, 3219, 3219,12655,12507,12654, 12388,12674, 3219,12510,12510,12507,12388,12654,12595,12589, 12599,12589,12595,12674,12389,13071,12589,12595,12625, 3219, 3219, 3219, 3220, 3220,12389, 3220, 3220, 3220, 3220, 3220, 3220,12589, 3220, 3220,12510,13694,12389,12606,13699,12617, 12617,12617,12510, 3220, 3220, 3220, 3220, 3220, 3220, 3220, 3220,12510,12604,12389,12672, 3220,12625,12658,12599,12389, 12617,12583,12599,12625,12672,12658,12669,12599,12510,12599, 12389,12672, 3220, 3220, 3220, 3221, 3221,12669, 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221,12583,13080,12606, 12583,12603,13701,12672,12606,12583, 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221,12604,12583,13702,13229, 3221,12604, 12604,12429,12429,12429,12429,12429,12429,12429,12429,12429, 12702,12713,13080,12730,13229, 3221, 3221, 3221, 3221, 3221, 3222, 3222,12429, 3222, 3222, 3222, 3222, 3222, 3222,12603, 3222, 3222,12668,12603,12603,13029,12702,12713,12603,12730, 12668, 3222, 3222, 3222, 3222, 3222, 3222, 3222,12615,12615, 12615,12615,12615, 3222,12430,12430,12430,12430,12430,12430, 12430,12430,12430,12619,13029,12619,13211,12750,13710,12615, 3222, 3222, 3222, 3223, 3223,12430, 3223, 3223, 3223, 3223, 3223, 3223,12678, 3223, 3223,12683,13712,13211,13713,12619, 12683,12678,12750,12688, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223,12688,12601,13032,12619, 3223,12435,12435,12435, 12435,12435,12435,12435,12435,12435,12683,12621,12621,12621, 12621,12621,12621, 3223, 3223, 3223, 3226, 3226,12435, 3226, 3226, 3226, 3226, 3226, 3226,12698, 3226, 3226,12621,13219, 13219,13219,13726,13032,12698,12749,12754, 3226, 3226, 3226, 3226, 3226, 3226, 3226,12675,12601,12749,12754,13727, 3226, 12601,12675,13188,12505,12601,12596,12675,12613,12613,12613, 12613,12613,12613,12613,12613,12613, 3226, 3226, 3226, 3227, 3227,12505, 3227, 3227, 3227, 3227, 3227, 3227,12613, 3227, 3227,13188,12691,12505,12701,12768,12676,12691,12758,12701, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227,12676,12758, 12596,12676, 3227,13087,13100,12607,12748,12596,12596,12709, 12768,12505,12596,12691,12748,12701,13078,12505,12709, 3227, 3227, 3227, 3229, 3229,12596, 3229, 3229, 3229, 3229, 3229, 3229,12727, 3229, 3229,12712,13775,13798,13087,13100,12712, 12727,12722,12680, 3229, 3229, 3229, 3229, 3229, 3229, 3229, 12607,12680,12607,13078,12689, 3229,12753,12607,12680,12722, 12685,12607,12607,12689,12753,12712,12772,12773,12607,12685, 12689,12722, 3229, 3229, 3229, 3230, 3230,12772, 3230, 3230, 3230, 3230, 3230, 3230,12685, 3230, 3230,13085,12723,13039, 13039,13871,12773,13041,12777,12693, 3230, 3230, 3230, 3230, 3230, 3230, 3230, 3230,12693,12777,12723,13881, 3230,12614, 12614,12614,12614,12614,12614,12614,12614,12614,12723,12693, 13039,13041,13091,13098,13085, 3230, 3230, 3230, 3231, 3231, 12614, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 12721,12721,12721,12721,12721,12721,12721,12721,12721, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231,13898,13233,13091, 13098, 3231,12782,12793,12620,12620,12620,12620,12620,12620, 12620,12620,12620,12782,12793,13233,13904,13908, 3231, 3231, 3231, 3231, 3231, 3232, 3232,12620, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3233,12778,13926,13163,13192,12725,13800,12724, 13800, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 12699,12703,12710,12714,12824,12725,12729,12724,12778,12699, 12703,12710,12714,12757,12724,12729,12699,12725,12710,12724, 12725,12757,12729,12761,12771,12703,13192,12714,12608,12824, 13163,12761,12771, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241,12735,12734, 12828,12844,12696,12608, 3241, 3241, 3241, 3241, 3241, 3241, 12608,12696,12776,12781,12785,12608,12735,12734,12608,13934, 12776,12781,12785,12696,12734,12828,12844,12608,12735,12734, 3241, 3241, 3241, 3241, 3241, 3241, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242,12849,12797,12854,12696, 12731,12958, 3242, 3242, 3242, 3242, 3242, 3242,12797,12731, 12737,12737,12737,12737,12737,12737,12737,12737,12737,12791, 13109,12849,13940,12854,12731,13272,12958,12791, 3242, 3242, 3242, 3242, 3242, 3242, 3244,12808,12808,12808,12808,12808, 12808,12808,12808, 3244, 3244, 3244, 3244, 3244, 3244, 3244, 3244, 3244, 3244,13272,13109,12808,12695,12705,12706, 3244, 3244, 3244, 3244, 3244, 3244,12695,12705,12706,12796,12810, 12832,13082,12695,12705,12800,12809,12796,12695,12705,12706, 12810,12832,12800,12809,12892, 3244, 3244, 3244, 3244, 3244, 3244, 3249, 3249, 3249, 3249, 3249, 3249, 3249, 3249, 3249, 3249,13082,12892,12695,12705,12706,12716, 3249, 3249, 3249, 3249, 3249, 3249,12813,12892,12716,12831,12835,12843,12848, 12842,12813,12716,12847,12831,12835,12827,12716,12842,12843, 12848,12847,13944, 3249, 3249, 3249, 3249, 3249, 3249, 3251, 3251, 3251, 3251, 3251, 3251, 3251, 3251, 3251, 3251,13981, 12893,12827,12717,12716,12732, 3251, 3251, 3251, 3251, 3251, 3251,12717,12827,12732,12852,12853,12857,12858,12893,12861, 12732,12867,12852,12717,12857,12732,12853,12861,12858,12867, 12893, 3251, 3251, 3251, 3251, 3251, 3251, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256,12882,12883,12717, 12733,12732,12882, 3256, 3256, 3256, 3256, 3256, 3256,12733, 12738,12738,12738,12738,12738,12738,12738,12738,12738,12871, 12891,12733,12901,12913,12883,13987,13993,12871,12882, 3256, 3256, 3256, 3256, 3256, 3256, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258,12890,12891,12733,12901,12913, 12890, 3258, 3258, 3258, 3258, 3258, 3258,12739,12739,12739, 12739,12739,12739,12739,12739,12739,12900,12912,12929,12942, 13423,12900,12912,13241,13241,13241,12890, 3258, 3258, 3258, 3258, 3258, 3258, 3263, 3263, 3263, 3263, 3263, 3263, 3263, 3263, 3263,12963,12968,12929,12942,13423,12900,12912, 3263, 3263, 3263, 3263, 3263, 3263,12792,12792,12792,12792,12792, 12792,12792,12792,12792,12938,12928,12956,12963,12968,13791, 12928,12792,13073,12938,12956, 3263, 3263, 3263, 3263, 3263, 3263, 3264, 3264, 3264, 3264, 3264, 3264, 3264, 3264, 3264, 3264,12894,12868,13791,12957,12792,12928, 3264, 3264, 3264, 3264, 3264, 3264,12868,12939,12957,12961,13312,12962,12894, 12941,13073,13312,12939,12961,12941,12894,12988,12826,12962, 12939,12894,12895, 3264, 3264, 3264, 3264, 3264, 3264, 3266, 3266, 3266, 3266, 3266, 3266, 3266, 3266, 3266, 3266,12902, 12895,12941,12988,12826,12943, 3266, 3266, 3266, 3266, 3266, 3266,12826,12895,12943,12966,12895,12967,12902,12971,14057, 13063,14087,12966,13103,12902,14091,12971,12967,12943,12902, 12903, 3266, 3266, 3266, 3266, 3266, 3266, 3271, 3271, 3271, 3271, 3271, 3271, 3271, 3271, 3271,12904,13063,12903,12993, 12972,12975,12998, 3271, 3271, 3271, 3271, 3271, 3271,12975, 12903,12972,13103,12741,12904,12741,12741,12741,12741,12741, 12741,12741,12741,12741,12993,14092,12904,12998,14093, 3271, 3271, 3271, 3271, 3271, 3271, 3272,12741, 3272, 3272, 3272, 3272, 3272, 3272, 3272, 3272, 3272, 3272,12905,12906,13013, 12946,12945,12987, 3272, 3272, 3272, 3272, 3272, 3272,12946, 12945,12986,12991,12987,12992,12905,12906,12945,12996,12986, 12991,12946,12945,12906,13013,12992,12996,12905,12906, 3272, 3272, 3272, 3272, 3272, 3272, 3275, 3275, 3275, 3275, 3275, 3275, 3275, 3275, 3275, 3275,14094,12914,12946,12945,12997, 13001, 3275, 3275, 3275, 3275, 3275, 3275,13002,13001,13008, 12997,13012,13011,13017,12914,13016,13005,13008,13002,13005, 13011,12914,13012,13016,13017,12907,12914, 3275, 3275, 3275, 3275, 3275, 3275, 3277, 3277, 3277, 3277, 3277, 3277, 3277, 3277, 3277, 3277,12907,12915,13005,13022,13018,13021, 3277, 3277, 3277, 3277, 3277, 3277,12907,13021,13022,12907,13107, 13101,13111,12915,12917,12917,12917,12917,12917,12917,12917, 12917,12917,13018,13270,12915, 3277, 3277, 3277, 3277, 3277, 3277, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 13101,13111,14095,14096,13270,14098,13107, 3282, 3282, 3282, 3282, 3282, 3282,12918,12918,12918,12918,12918,12918,12918, 12918,12918,12919,12919,12919,12919,12919,12919,12919,12919, 12919,12920,12921, 3282, 3282, 3282, 3282, 3282, 3282, 3283, 3283, 3283, 3283, 3283, 3283, 3283, 3283, 3283, 3283,12920, 12921,13025,13034,13070,13025, 3283, 3283, 3283, 3283, 3283, 3283,12920,12921,14099,13070,14100,12742,13081,12742,12742, 12742,12742,12742,12742,12742,12742,12742,13034,13081,13113, 13025, 3283, 3283, 3283, 3283, 3283, 3283, 3287, 3287,12742, 3287, 3287, 3287, 3287, 3287, 3287,13116, 3287, 3287, 3287, 3287, 3287, 3287, 3287, 3287,13033,13033,13028, 3287, 3287, 3287, 3287, 3287, 3287, 3287,13028,14101,14122,13113,12743, 3287,12743,12743,12743,12743,12743,12743,12743,12743,12743, 13345,13345,13124,13116,13118,13345,13033, 3287, 3287, 3287, 3288, 3288,12743, 3288, 3288, 3288, 3288, 3288, 3288,13072, 3288, 3288, 3288, 3288, 3288, 3288, 3288, 3288,12922,12930, 13033, 3288, 3288, 3288, 3288, 3288, 3288, 3288,13118,13124, 13068,13079,13086, 3288,13072,14055,12922,12930,13068,13079, 13086,13075,14136,12922,12930,14055,12923,12931,12922,12930, 3288, 3288, 3288, 3288, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296,12923,12931,13075,13088,13102,13112, 3296, 3296, 3296, 3296, 3296, 3296,12923,12931,13088,12923, 12933,12933,12933,12933,12933,12933,12933,12933,12933,13121, 13164,13180,13191,13102,13112,14138, 3296, 3296, 3296, 3296, 3296, 3296, 3297, 3297, 3297, 3297, 3297, 3297, 3297, 3297, 3297,14139,13057,13120,13121,13164,13180,13191, 3297, 3297, 3297, 3297, 3297, 3297,12934,12934,12934,12934,12934,12934, 12934,12934,12934,12935,12935,12935,12935,12935,12935,12935, 12935,12935,13057,13120, 3297, 3297, 3297, 3297, 3297, 3297, 3304, 3304, 3304, 3304, 3304, 3304, 3304, 3304, 3304, 3304, 13035,13057,13165,13197,13165,14143, 3304, 3304, 3304, 3304, 3304, 3304,12950,12950,12950,12950,12950,12950,12950,12950, 12950,13092,13042,13042,13173,13824,13064,13165,13197,13092, 13035,13130, 3304, 3304, 3304, 3304, 3304, 3304, 3308, 3308, 3308, 3308, 3308, 3308, 3308, 3308, 3308, 3308,13042,13064, 13110,13173,13108,13042, 3308, 3308, 3308, 3308, 3308, 3308, 13108,13110,13035,13117,13064,13125,13126,13136,13130,13137, 13824,13117,12952,13125,12952,12952,12952,12952,12952,12952, 3308, 3308, 3308, 3308, 3308, 3308, 3313, 3313, 3313, 3313, 3313, 3313, 3313, 3313, 3313,12952,13145,13119,13127,13137, 13126,13136, 3313, 3313, 3313, 3313, 3313, 3313,13119,13127, 13135,13140,13149,13144,13152,12951,12951,12951,12951,12951, 12951,12951,12951,12951,13144,13152,13145,13374, 3313, 3313, 3313, 3313, 3313, 3313, 3318, 3318,12951, 3318, 3318, 3318, 3318, 3318, 3318,13131, 3318, 3318,13141,13135,13140,13149, 13379,13131,13374,13037,13141, 3318, 3318, 3318, 3318, 3318, 3318, 3318,13037,13037,13037,13037,13037, 3318,13142,13150, 13151,13161,14145,13156,13263,13379,13146,13150,13869,12391, 13155,13156,13160,13037, 3318, 3318, 3318, 3322, 3322,12391, 3322, 3322, 3322, 3322, 3322, 3322, 3322, 3322, 3322,13178, 13274,12391,13142,13263,13151,13161,13162,13178, 3322, 3322, 3322, 3322, 3322, 3322, 3322,13146,13036,13155,12391,13160, 3322,13274,14146,13869,12391,13036,13036,13036,13036,13036, 13036,13036,13036,13036,13055,13170,13162, 3322, 3322, 3322, 3322,12391,13817,13055,13055,13055,13036, 3322, 3328, 3328, 3328, 3328, 3328, 3328, 3328, 3328, 3328,13174, 3328, 3328, 13195,13364,13364,13364,13055,13170,13179,13196,13195, 3328, 3328, 3328, 3328, 3328, 3328, 3328,13210,13179,13196,13817, 13047, 3328,13364,14150,13210,14152,13186,13174,13170,13047, 13047,13047,13047,13047,13047,13047,13047,13047, 3328, 3328, 3328, 3329, 3329,13185, 3329, 3329, 3329, 3329, 3329, 3329, 13047, 3329, 3329,13181,13168,13168,13168,13168,13168,13168, 13175,13186, 3329, 3329, 3329, 3329, 3329, 3329, 3329,13038, 13187,14153,13181,13185, 3329,13168,13200,13418,13038,13038, 13038,13038,13038,13038,13181,13175,13418,13038,13200,13190, 13175, 3329, 3329, 3329,13049,13199,13202,13346,13168,13038, 13187,13181,13346,13049,13049,13049,13049,13049,13049, 3329, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332, 3332,13190, 3332, 3332,13213,13216,13049,13199,13202,13213,13216,13262, 14158, 3332, 3332, 3332, 3332, 3332, 3332, 3332,13048,13214, 13245,13222,13214, 3332,13213,13216,13222,13048,13048,13048, 13048,13048,13048,13048,13048,13048,13214,13245,13269,13262, 3332, 3332, 3332,13222,13478,13245,13986,13246,13048,13184, 13269,13052,13271,13478,13255,13282,13273,13275, 3332, 3344, 13052,13052,13052,13052,13052,13986,14160, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344,13246,13246,13255, 13184,13052,13054,13273,13269,13282,13275,13271,13255, 3344, 3345,13054,13054,13054,13054,13054,13054,13184, 3345, 3345, 3345, 3345, 3345, 3345, 3345, 3345, 3345, 3345,13226,13283, 13282,13246,13054,13226,13184,13201,13201,13201,13201,13360, 3345, 3366, 3366,13277, 3366, 3366, 3366, 3366, 3366, 3366, 13226, 3366, 3366,13431,13206,13206,13206,13206,13206,13283, 14161,13201, 3366, 3366, 3366, 3366, 3366, 3366, 3366,13360, 13372,13343,13277,13050, 3366,13206,13343,13201,13372,13431, 13201,13343,13050,13050,13050,13050,13050,13050,13050,13050, 13050, 3366, 3366, 3366, 3367, 3367,13267, 3367, 3367, 3367, 3367, 3367, 3367,13050, 3367, 3367,13217,13223,13227,13217, 13223,13227,13441,13277,13267, 3367, 3367, 3367, 3367, 3367, 3367, 3367,14169,13217,13223,13227,13267, 3367,13220,13220, 13220,13220,13220,13220,13220,13220,13220,13230,13441, 3367, 13231,14171,13230,13231, 3367, 3367, 3367,13143,13143,13143, 13143,13143,13143,13143,13143,13143,13347,13231,13453,13230, 13234,13347,13737,13143,13347,13234, 3367, 3369, 3369,13278, 3369, 3369, 3369, 3369, 3369, 3369,13280, 3369, 3369,13280, 13235,13348,13234,13235,13453,13737,13348,13143, 3369, 3369, 3369, 3369, 3369, 3369, 3369, 3369,13341,13235,13278,13051, 3369,13341,13351,14172,13278,13341,13280,13351,13051,13051, 13051,13051,13051,13051,13051,13051,13051, 3369, 3369, 3369, 3374, 3374,13276, 3374, 3374, 3374, 3374, 3374, 3374,13051, 3374, 3374,13242,13242,13242,13242,13242,13242,13242,13242, 13242, 3374, 3374, 3374, 3374, 3374, 3374, 3374,13285,13285, 14185,13276,13056, 3374,13285,13248,13359,13249,13247,13819, 13957,13056,13056,13056,13056,13056,13056,13056,13056,13056, 3374, 3374, 3374, 3375, 3375,13249, 3375, 3375, 3375, 3375, 3375, 3375,13056, 3375, 3375,13248,13340,13249,13247,13285, 13276,13359,13265,13819, 3375, 3375, 3375, 3375, 3375, 3375, 3375, 3375,14063,13957,13265,13366, 3375,13204,13204,13204, 13204,13204,13204,13204,13204,13204,13247,13248,13265,13248, 14063,13249,13247, 3375, 3375, 3375, 3377, 3377,13204, 3377, 3377, 3377, 3377, 3377, 3377,13366, 3377, 3377,13377,13266, 13340,13279,13416,13256,13256,13340,13377, 3377, 3377, 3377, 3377, 3377, 3377, 3377,13489,13489,13489,13266,13279, 3377, 13205,13205,13205,13205,13205,13205,13205,13205,13205,13266, 13279,13349,13416,14186,13256,13669, 3377, 3377, 3377, 3378, 3378,13205, 3378, 3378, 3378, 3378, 3378, 3378,13669, 3378, 3378,13256,13344,13281,13344,13384,13250,13257,13257,13344, 3378, 3378, 3378, 3378, 3378, 3378, 3378, 3378,13256,13266, 13342,13281, 3378,13349,13250,13342,13251,13304,13349,13342, 13384,13258,13258,13281,13469,13304,13250,13829,13257, 3378, 3378, 3378, 3379, 3379,13251, 3379, 3379, 3379, 3379, 3379, 3379,13304, 3379, 3379,14088,13257,13251,14059,14088,13251, 13469,13831,13258, 3379, 3379, 3379, 3379, 3379, 3379, 3379, 13250,13250,13257,13305,13829, 3379, 3379,14059,13373,13258, 13389,13305,13252,13258,13260,13260,13354,13378,13317,13373, 13251,13354, 3379, 3379, 3379,13831,13258,13305,13378,13327, 13252,13493, 3379, 3380, 3380,13389, 3380, 3380, 3380, 3380, 3380, 3380,13252, 3380, 3380,13260, 3380, 3380, 3380, 3380, 3380, 3380, 3380, 3380, 3380, 3380, 3380, 3380, 3380, 3380, 3380,13493,13260,13382,13352,13671, 3380,13352,13317,13352, 13253,13382,13260,13317,13327,13352,13252,13671,14106,13260, 13260,14106,13327, 3380, 3380, 3380, 3381, 3381,13253, 3381, 3381, 3381, 3381, 3381, 3381,13369, 3381, 3381,13327,13396, 13253,14235,13396,13253,13369,13383,13328, 3381, 3381, 3381, 3381, 3381, 3381, 3381,13328,13353,13383,13387,13388, 3381, 13353,13796,13368,13254,13330,13387,13353,13404,13396,13388, 13328,13368,13330,13369,13253,13330, 3381, 3381, 3381, 3382, 3382,13254, 3382, 3382, 3382, 3382, 3382, 3382,13330, 3382, 3382,13392,13404,13254,14318,13411,13796,14329,13411,13392, 3382, 3382, 3382, 3382, 3382, 3382, 3382,13259,13259,13368, 13393,13498, 3382, 3382,13203,13203,13203,13203,13203,13203, 13399,13393,13254,13203,13411,13332,13259,13254,13399, 3382, 3382, 3382,13332,13332,13402,13203,13498,13332,13259, 3382, 3386, 3386,13402, 3386, 3386, 3386, 3386, 3386, 3386,13332, 3386, 3386,13407,14107,13203,13259,13973,13403,13268,13408, 13407, 3386, 3386, 3386, 3386, 3386, 3386, 3386,13403,13414, 13408,13329,13259, 3386,13329,13496,13268,13414,13350,13329, 14107,13350,13422,13496,14333,13329,13350,13422,13268,13973, 3386, 3386, 3386, 3387, 3387,13329, 3387, 3387, 3387, 3387, 3387, 3387,13350, 3387, 3387,13432,13363,13363,13363,13363, 13363,13503,13482,13422, 3387, 3387, 3387, 3387, 3387, 3387, 3387, 3387,13268,13432,13331,13355, 3387,13363,13430,13355, 13355,13497,13331,13430,13355,13432,13503,13355,13482,13682, 13331,14334,13497, 3387, 3387, 3387, 3389, 3389,13331, 3389, 3389, 3389, 3389, 3389, 3389,13501, 3389, 3389,13546,13430, 13880,13546,13433,13501,13443,13682,13336, 3389, 3389, 3389, 3389, 3389, 3389, 3389,13336,13334,13440,13335,13336, 3389, 13433,13440,13443,13334,13335,13335,13419,13546,13334,13335, 13336,13335,13433,13502,13443,13419, 3389, 3389, 3389,13334, 14342,13335,13419,13506,13502,13880,14343,13440, 3389, 3390, 3390,13506, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3390, 3394, 3394, 3394, 3394, 3394, 3394, 3394, 3394, 3394,13452, 3394, 3394, 14351,13508,13452,14352,14364,13434,13529,13444,13424, 3394, 3394, 3394, 3394, 3394, 3394, 3394,13339,13424,13339,13339, 13479, 3394,13507,13434,13339,13444,13508,13339,13452,13479, 13434,13529,13424,13507,13339,13434,13479,13444, 3394, 3394, 3394, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 13534, 3395, 3395,13457,13457,13457,13457,13457,13457,13457, 13457,13457, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 3395, 13511,13515,13527,13532, 3395,13534,14365,13838,13511,13515, 13527,13532,13362,13362,13362,13362,13362,13362,13362,13362, 13362, 3395, 3395, 3395, 3407, 3407, 3407, 3407, 3407, 3407, 3407, 3407, 3407,13362, 3407, 3407,13435,13442,13445,14378, 13446,13455,13460,13461,13838, 3407, 3407, 3407, 3407, 3407, 3407, 3407,13512,13528,13435,13442,13445, 3407,13446,13455, 13460,13461,13442,13512,13528,13446,13435,13442,13445,13435, 13446,13455,13460,13461, 3407, 3407, 3407, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408,13533, 3408, 3408,13447, 13454,13462,13539,13463,13471,13571,14379,13533, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408,13537,13447,13454,13462, 3408,13463,13471,13689,13537,13454,13462,13539,14388,13447, 13454,13462,13447,13463,13471,13571,13463, 3408, 3408, 3408, 3409, 3409, 3409, 3409, 3409, 3409, 3409, 3409, 3409,13689, 3409, 3409,13458,13458,13458,13458,13458,13458,13458,13458, 13458, 3409, 3409, 3409, 3409, 3409, 3409, 3409,13538,13337, 13470,13337,13483, 3409,13542, 3409,13549,13337,13543,13538, 13337,13483,13542,14390,13549,13672,13552,13337,13470,13543, 3409, 3409, 3409,13337,13552,13470,13483,13672,13840,13468, 13470, 3409, 3412, 3412,13468, 3412, 3412, 3412, 3412, 3412, 3412,13823, 3412, 3412,13459,13459,13459,13459,13459,13459, 13459,13459,13459, 3412, 3412, 3412, 3412, 3412, 3412, 3412, 13468,13553,13840,13559,13674, 3412,13361,13361,13361,13361, 13361,13361,13553,13558,13559,13361,13674,14391,13563,13674, 13823,13558, 3412, 3412, 3412,13555,13563,13361,13473,13473, 13473,13473,13473,13473,13473,13473,13473,13474,13474,13474, 13474,13474,13474,13474,13474,13474,13361, 3412, 3413, 3413, 13555, 3413, 3413, 3413, 3413, 3413, 3413,13787, 3413, 3413, 13475,13475,13475,13475,13475,13475,13475,13475,13475, 3413, 3413, 3413, 3413, 3413, 3413, 3413,13564,13481,13560,13580, 13601, 3413,13481,13570,13577,13485,13787,13564,13486,14447, 13567,13570,13577,13567,13485,13605,13579,13486, 3413, 3413, 3413,13485,13799,13560,13580,13601,13485,13579,13481,13486, 13490,13490,13490,13490,13490,13490,13490,13490,13490,13567, 13605,13846, 3413, 3414, 3414,14457, 3414, 3414, 3414, 3414, 3414, 3414,13485, 3414, 3414,13486,13492,13799,13492,13492, 13492,13492,13492,13492, 3414, 3414, 3414, 3414, 3414, 3414, 3414, 3414,13852,13583, 3414,13584, 3414,14064,13846,13492, 3414,13583,13587, 3414, 3414, 3414,13584,13610, 3414,13604, 13587,13780,14064, 3414, 3414, 3414,13609,13491,13491,13491, 13491,13491,13491,13491,13491,13491,13628,13609,13633,13852, 13857,13603,13610,13780,13604, 3414, 3415, 3415,13491, 3415, 3415, 3415, 3415, 3415, 3415,13604, 3415, 3415,13707,13707, 13707,13628,13780,13633,13614,13627,13603, 3415, 3415, 3415, 3415, 3415, 3415, 3415,13603,13614,13627,13857,13696, 3415, 13638,13643,13658,13521,13521,13521,13521,13521,13521,13521, 13521,13521,13608,13613,13617,13626, 3415, 3415, 3415,13521, 13608,13613,13617,13626,13696,13638,13643,13658, 3415, 3416, 3416,13632, 3416, 3416, 3416, 3416, 3416, 3416,13631, 3416, 3416,13636,13632,13521,14537,14651,13631,13637,13642,13636, 3416, 3416, 3416, 3416, 3416, 3416, 3416,13641,13637,13642, 14655,13650, 3416,14666,13650,13641,13554,13554,13554,13554, 13554,13554,13554,13554,13554,13646,13653,13656,13704, 3416, 3416, 3416,13554,13646,13653,13656,13647, 3416, 3417, 3417, 13650, 3417, 3417, 3417, 3417, 3417, 3417,13647, 3417, 3417, 13661,13718,13718,13718,13704,13657,13554,13662,13661, 3417, 3417, 3417, 3417, 3417, 3417, 3417,13657,13665,13662,13715, 13665, 3417,13578,13578,13578,13578,13578,13578,13578,13578, 13578,14715,13866,13668,14718,13673,13743,13744, 3417, 3417, 3417,13668,13673,13578,13743,13715,13665,13673,13744,13848, 13681,13862, 3417, 3423, 3423,13681, 3423, 3423, 3423, 3423, 3423, 3423,13578, 3423, 3423,13688,13695,13703,13714,13866, 13688,13695,13703,13714, 3423, 3423, 3423, 3423, 3423, 3423, 3423,13681,13729,13848,14689,13862, 3423,13708,13708,13708, 13708,13708,13708,13708,13708,13708,13688,13695,13703,13714, 14719,13925,14689, 3423, 3423, 3423, 3424, 3424,13729, 3424, 3424, 3424, 3424, 3424, 3424,13745, 3424, 3424,13719,13719, 13719,13719,13719,13719,13719,13719,13719, 3424, 3424, 3424, 3424, 3424, 3424, 3424,13720,13721,13722,13723,13728, 3424, 13745,13731,13748,13728,13788,13788,13925,13750,13954,13749, 13748, 3424,13720,13721,13722,13723, 3424, 3424, 3424,13731, 13749,13722,13754,13759,13720,13721,13722,13723,13753,13728, 13723,13731,13750,13754,13759,13788,13753,13954, 3424, 3429, 3429,14722, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3446, 3446, 13778, 3446, 3446, 3446, 3446, 3446, 3446,13755, 3446, 3446, 13730,13778,14690,13875,13779,13790,13790,13786,13758, 3446, 3446, 3446, 3446, 3446, 3446, 3446,13758,14690,13730,13762, 13768, 3446,13755,13771,13777,13730,13812,13762,13768,13779, 13730,13771,13777,13786,13812,13970,13790,13875, 3446, 3446, 3446, 3447, 3447,13804, 3447, 3447, 3447, 3447, 3447, 3447, 13835, 3447, 3447,13733,13733,13733,13733,13733,13733,13733, 13733,13733, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 13970,13789,13801,13804, 3447,13734,13734,13734,13734,13734, 13734,13734,13734,13734,13801,13868,13873,14723,13883,13835, 14731, 3447, 3447, 3447, 3448, 3448,13789, 3448, 3448, 3448, 3448, 3448, 3448,13892, 3448, 3448,13735,13735,13735,13735, 13735,13735,13735,13735,13735, 3448, 3448, 3448, 3448, 3448, 3448, 3448,13785,13873,13868,13883,13738, 3448,13738,13738, 13738,13738,13738,13738,13738,13738,13738,13782,14097,13785, 13892,14685,13814,14097, 3448, 3448, 3448, 3449, 3449,13738, 3449, 3449, 3449, 3449, 3449, 3449,14732, 3449, 3449,13782, 13885,14685,13782,13785,13813,13814,13820,13814, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449,13813,13820,13782,13739, 3449,13739,13739,13739,13739,13739,13739,13739,13739,13739, 13792,13783,13879,13822,13885,13781,13968, 3449, 3449, 3449, 3450, 3450,13739, 3450, 3450, 3450, 3450, 3450, 3450,13821, 3450, 3450,13781,13783,13833,13825,13826,13781,13822,13783, 13792, 3450, 3450, 3450, 3450, 3450, 3450, 3450,13889,13818, 13832,13879,13783, 3450,13968,13830,13781,13818,13784,13821, 13825,13832,13826,13830,13833, 3450,13784,14740,13894,13792, 3450, 3450, 3450,13593,13593,13593,13593,13593,13593,13593, 13593,13593,13839,13834,13841,13900,13843,13889,13784,13593, 13839,13793, 3450, 3456, 3456,13841, 3456, 3456, 3456, 3456, 3456, 3456,13894, 3456, 3456,13797,13797,13784,13834,13793, 13842,13843,13849,13593, 3456, 3456, 3456, 3456, 3456, 3456, 3456,13793,13900,13849,13907,13740, 3456,13740,13740,13740, 13740,13740,13740,13740,13740,13740,13797,13870,13914,13797, 13842,13924,13997, 3456, 3456, 3456, 3457, 3457,13740, 3457, 3457, 3457, 3457, 3457, 3457,13847, 3457, 3457,13853,13997, 13878,13907,13870,13847,13876,14741,13853, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457,13876,13874,13914,13794, 3457, 13924,13867,13877,13802,13874,13878,13887,13794,13794,13794, 13794,13794,13794,13794,13794,13794, 3457, 3457, 3457, 3460, 3460,13802, 3460, 3460, 3460, 3460, 3460, 3460,13794, 3460, 3460,13867,13877,13802,13888,14753,13887,13886,13896,13884, 3460, 3460, 3460, 3460, 3460, 3460, 3460,13884,13886,13893, 13901,13795, 3460,13902,13910,13895,13912,13893,13901,13888, 13795,13795,13795,13795,13795,13795,13895,13897,13896, 3460, 3460, 3460, 3461, 3461,13903, 3461, 3461, 3461, 3461, 3461, 3461,13795, 3461, 3461,14754,13903,13906,13902,14767,13906, 13912,13910,13897, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461,13911,13917,13950,13913, 3461,13919,13803,13808,13911, 13930,13803,13803,13803,13803,13906,13920,13808,13808,13808, 13808,13808, 3461, 3461, 3461, 3463, 3463,13920, 3463, 3463, 3463, 3463, 3463, 3463,13913, 3463, 3463,13803,13808,13917, 13919,14768,13950,14777,13930,14779, 3463, 3463, 3463, 3463, 3463, 3463, 3463,13803,13918,13923,13803,13806, 3463,13928, 13921,13932,13918,13949,13938,13953,13806,13806,13806,13806, 13806,13806,13806,13806,13806, 3463, 3463, 3463, 3464, 3464, 13923, 3464, 3464, 3464, 3464, 3464, 3464,13806, 3464, 3464, 13921,13932,13933,13949,14780,13953,13928,13931,13938, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464,13929,13931,13936, 13807, 3464,13943,13946,14936,13929,14938,13933,13953,13807, 13807,13807,13807,13807,13807,13807,13807,13807, 3464, 3464, 3464, 3465, 3465,13939, 3465, 3465, 3465, 3465, 3465, 3465, 13807, 3465, 3465,13937,13939,13942,13936,13955,13942,13943, 13946,13937, 3465, 3465, 3465, 3465, 3465, 3465, 3465,13805, 13951,13952,13958,13971, 3465,13958,14939,13947,13805,13805, 13805,13805,13805,13805,13942,13947,13955,13805, 3465,13978, 14941, 3465, 3465, 3465,13948,13951,13961,13952,13958,13805, 13978,13962,13963,13969,13861,13861,13861,13861,13861,13861, 13861,13861,13861,13995,13971, 3465, 3466, 3466,13805, 3466, 3466, 3466, 3466, 3466, 3466,13967, 3466, 3466,13948,13969, 13961,13962,13963,13972,13974,13963,13979, 3466, 3466, 3466, 3466, 3466, 3466, 3466,13861,13977,14001,13995,13962, 3466, 13967,13967,14026,13977,14943,14001,14944,13861,14948,13972, 14023,13979,13974,13982,14026,14018, 3466, 3466, 3466, 3467, 3467,13991, 3467, 3467, 3467, 3467, 3467, 3467,14027, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467,14061,13982,14018, 14023,13991, 3467,13964,13964,14002,14950,14027,14951,14061, 13956,13956,13956,13956,13956,13956,13956,13956,13956, 3467, 3467, 3467, 3469, 3469,14054, 3469, 3469, 3469, 3469, 3469, 3469,13956, 3469, 3469,13964,14002,13966,13983,13983,13983, 13983,13983,13983, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 14024,13964,14002,14022,13956, 3469,14116,14116,13983,14054, 13999,14034,13988,13999,13988,14022,14025,13966,13984,13984, 13984,14114, 3469, 3469, 3469, 3470, 3470,13999, 3470, 3470, 3470, 3470, 3470, 3470,13966, 3470, 3470,14025,13988,13984, 14024,14034,14114,14954,14116,14120, 3470, 3470, 3470, 3470, 3470, 3470, 3470, 3470,13988,14022,14120,13966, 3470,13985, 13985,13985,13985,13985,13985,13985,13985,13985,14031,13990, 13990,13990,13990,13990,13990, 3470, 3470, 3470, 3471, 3471, 13985, 3471, 3471, 3471, 3471, 3471, 3471,13998, 3471, 3471, 13990,14956,13998,14060,14028,14028,14021,14031,14029, 3471, 3471, 3471, 3471, 3471, 3471, 3471,14031,14060,14028,13998, 14060, 3471,14477,14449,14021,13860,13860,13860,13860,13860, 13860,13860,13860,13860,14028, 3471,14021,14029, 3471, 3471, 3471,13860,13922,13922,13922,13922,13922,13922,13922,13922, 13922,13992,13992,13992,13992,13992,13992,14036,13922,14477, 13992,14449, 3471, 3474, 3474,13860, 3474, 3474, 3474, 3474, 3474, 3474,13992, 3474, 3474,14957,14021,14033,14029,14019, 14032,14032,13922,14036, 3474, 3474, 3474, 3474, 3474, 3474, 3474,13992,14166,14166,14166,14033, 3474,14019,13989,13989, 13989,13989,13989,13989,13989,13989,13989,14033,14121,14019, 14032,14102,14445, 3474, 3474, 3474, 3474, 3475, 3475,13989, 3475, 3475, 3475, 3475, 3475, 3475,14003, 3475, 3475,14177, 14177,14177,14035,14121,14963,14011,14056,14019, 3475, 3475, 3475, 3475, 3475, 3475, 3475, 3475,14056,14445,14058,14572, 3475,14037,14037,14004,14005,14007,14003,14037,14058,14003, 14037,14102,14035,14196,14126,14011,14102, 3475, 3475, 3475, 3475, 3476, 3476,14007, 3476, 3476, 3476, 3476, 3476, 3476, 14084, 3476, 3476,14004,14005,14007,14196,14572,14084,14126, 14003,14007, 3476, 3476, 3476, 3476, 3476, 3476, 3476,14011, 14035,14065,14119,14599, 3476,14125,14085,14124,14085,14203, 14119,14065,14004,14005,14085,14124,14125,14004,14005,14007, 14203, 3476, 3476, 3476, 3476, 3477, 3477,14599, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3480, 3480,14006, 3480, 3480, 3480, 3480, 3480, 3480,14204, 3480, 3480,14965,14030,14129,14128, 14130,14131,14259,14010,14006, 3480, 3480, 3480, 3480, 3480, 3480, 3480,14130,14131,14259,14455,14006, 3480,14204,14086, 14086,14010,14008,14089,14129,14086,14030,14086,14086,14128, 14108,14089,14108,14010, 3480, 3480, 3480, 3480, 3481, 3481, 14008, 3481, 3481, 3481, 3481, 3481, 3481,14089, 3481, 3481, 14006,14141,14008,14148,14455,14966,14108,14006,14030, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481,14010,14600,14600, 14115, 3481,14108,14012,14012,14015,14015,14141,14008,14148, 14113,14113,14113,14113,14113,14008,14008,14115, 3481, 3481, 3481, 3481, 3483, 3483,14009, 3483, 3483, 3483, 3483, 3483, 3483,14113, 3483, 3483,14012,14140,14015,14155,14115,14163, 14140,14208,14009, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 14213,14012,14208,14015,14009, 3483,14013,14013,14012,14016, 14016,14213,14009,14155,14324,14163,14140,14127,14012,14012, 14015,14324, 3483, 3483, 3483, 3484, 3484,14127, 3484, 3484, 3484, 3484, 3484, 3484,14127, 3484, 3484,14013,14009,14147, 14016,14014,14014,14013,14147,14062, 3484, 3484, 3484, 3484, 3484, 3484, 3484,14062,14013,14132,14127,14016, 3484,14972, 14154,14162,14132,14013,14459,14154,14162,14132,14062,14062, 14147,14013,14014,14458,14016, 3484, 3484, 3484, 3484, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488,14014, 14133,14154,14162,14090,14459, 3488, 3488, 3488, 3488, 3488, 3488,14090,14133,14202,14458,14133,14014,14218,14173,14974, 14187,14202,14014,14173,14174,14187,14188,14090,14218,14020, 14020, 3488, 3488, 3488, 3488, 3488, 3488, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490,14020,14335,14173, 14174,14187,14188, 3490, 3490, 3490, 3490, 3490, 3490,14020, 14105,14105,14105,14105,14105,14105,14105,14105,14105,14207, 14212,14683,14683,14020,14335,14975,14985,14207,14212, 3490, 3490, 3490, 3490, 3490, 3490, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493,14110,14110,14110,14110,14110, 14110, 3493, 3493, 3493, 3493, 3493, 3493,14167,14167,14167, 14167,14167,14167,14167,14167,14167,14110,14396,14396,14396, 14209,14105,14214,14239,14479,14179,14180, 3493, 3493, 3493, 3493, 3493, 3493, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495,14190,14179,14180,14209,14238,14214,14239, 3495, 3495, 3495, 3495, 3495, 3495,14179,14180,14238,14479,14986, 14190,14444,14257,14017,14017,14017,14017,14017,14017,14017, 14017, 3495,14190,14257,14487, 3495, 3495, 3495, 3495, 3495, 3495, 3498, 3498,14017, 3498, 3498, 3498, 3498, 3498, 3498, 14444, 3498, 3498,14178,14178,14178,14178,14178,14178,14178, 14178,14178, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 14679,14487,15008,14264, 3498,14192,14192,14192,14192,14192, 14192,14192,14192,14192,14264,15013,14182,14679,14337,14446, 14446, 3498, 3498, 3498, 3501, 3501, 3501, 3501, 3501, 3501, 3501, 3501, 3501, 3501,14182,14460,14337,14260,14265,14217, 3501, 3501, 3501, 3501, 3501, 3501,14182,14217,14337,14182, 14446,14464,14451,14109,14109,14109,14109,14109,14109,14109, 14109,14109,14260,14265,14451,14460, 3501, 3501, 3501, 3501, 3501, 3501, 3511, 3511,14109, 3511, 3511, 3511, 3511, 3511, 3511,14464, 3511, 3511,14193,14193,14193,14193,14193,14193, 14193,14193,14193, 3511, 3511, 3511, 3511, 3511, 3511, 3511, 14464,14483,15023,14493,15027, 3511,14269,14112,14112,14112, 14112,14112,14112,14112,14112,14112,14291,14269,15030,15038, 14296,14317, 3511, 3511, 3511, 3511, 3512, 3512,14112, 3512, 3512, 3512, 3512, 3512, 3512,14221, 3512, 3512,14181,14189, 14483,14291,14493,14221,14290,14296,14317, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512,14290,14181,14189,14228, 3512, 14295,15043,14231,14181,14189,14237,14228,14250,14181,14189, 14231,14295,14246,14237,14489,14250, 3512, 3512, 3512, 3512, 3513, 3513,14246, 3513, 3513, 3513, 3513, 3513, 3513,14246, 3513, 3513,14194,14194,14194,14194,14194,14194,14194,14194, 14194, 3513, 3513, 3513, 3513, 3513, 3513, 3513,14489,15047, 14496,14246,14197, 3513,14197,14197,14197,14197,14197,14197, 14197,14197,14197,14322,14393,14694,14694,15050,14566,15055, 3513, 3513, 3513, 3515, 3515,14197, 3515, 3515, 3515, 3515, 3515, 3515,14240, 3515, 3515,14253,14336,14496,14322,14566, 14393,14336,14240,14253, 3515, 3515, 3515, 3515, 3515, 3515, 3515,14263,14268,14272,14240,14279, 3515,14282,14289,14263, 14268,14272,14294,14279,14299,14282,14289,14336,14404,14241, 14294,14240,14299, 3515, 3515, 3515, 3515, 3516, 3516,14241, 3516, 3516, 3516, 3516, 3516, 3516,14241, 3516, 3516,14303, 14694,14241,15067,14404,14409,14300,15070,14303, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516,14300,14309,14241,14315, 3516,14316,14320,14321,14403,14309,14392,14315,14330,14409, 14320,14392,14316,14242,14321,14403,14330, 3516, 3516, 3516, 3516, 3517, 3517,14242, 3517, 3517, 3517, 3517, 3517, 3517, 14504, 3517, 3517,14402,14594,14242,15081,14392,14242,14345, 14408,14402, 3517, 3517, 3517, 3517, 3517, 3517, 3517,14484, 14338,14408,14242,14594, 3517, 3517,14198,14345,14198,14198, 14198,14198,14198,14198,14198,14198,14198,14504,14338,14345, 14407, 3517, 3517, 3517, 3517,14338,14412,14498,14407,14198, 14338, 3517, 3518, 3518,14412, 3518, 3518, 3518, 3518, 3518, 3518,14510, 3518, 3518,14484, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 3518, 14573,14498,14578,15215,14199, 3518,14199,14199,14199,14199, 14199,14199,14199,14199,14199,14414,14534,14419,14510,15224, 14482,14573, 3518, 3518, 3518, 3519, 3519,14199, 3519, 3519, 3519, 3519, 3519, 3519,14243, 3519, 3519,14346,14578,14339, 14414,14344,14419,14413,14243,14482, 3519, 3519, 3519, 3519, 3519, 3519, 3519,14323,14413,14346,14243,14339, 3519,14344, 14417,14534,14243,14323,14465,15287,14344,14346,14417,14339, 14323,14344,14339,14243,15069, 3519, 3519, 3519, 3520, 3520, 15069, 3520, 3520, 3520, 3520, 3520, 3520,14533, 3520, 3520, 14244,14348,14323,14469,14465,14418,14423,14577,14244, 3520, 3520, 3520, 3520, 3520, 3520, 3520,14418,14423,14244,14348, 14450, 3520, 3520,14111,14111,14111,14111,14111,14111,14422, 14244,14348,14111,14469,14348,14426,14533,14422, 3520, 3520, 3520, 3520,14492,14426,14111,14577,14450,14244, 3520, 3521, 3521,14354, 3521, 3521, 3521, 3521, 3521, 3521,14432, 3521, 3521,14450,15201,14111,14471,15201,14432,14492,14545,14354, 3521, 3521, 3521, 3521, 3521, 3521, 3521, 3521,14347,14359, 14353,14354, 3521,14247,14247,14247,14247,14247,14247,14247, 14247,14247,14452,14473,14471,14433,14347,14359,14353, 3521, 3521, 3521, 3533,14347,14247,14353,14433,14545,14347,14359, 14353, 3533, 3533, 3533, 3533, 3533, 3533, 3533, 3533, 3533, 3533,14501,14452,14473,14702,14436,15291, 3533, 3533, 3533, 3533, 3533, 3533,14436,14227,14227,14227,14227,14227,14227, 14227,14227,14227,14481,14440,14535,14501,14452,14702, 3533, 14227,14367,14440, 3533, 3533, 3533, 3533, 3533, 3533, 3534, 3534, 3534, 3534, 3534, 3534, 3534, 3534, 3534,15289,14367, 14535,14544,15289,14481,14227, 3534, 3534, 3534, 3534, 3534, 3534,14367,14278,14278,14278,14278,14278,14278,14278,14278, 14278,14478,14488,14491,14500,14536,14544, 3534,14278,14478, 14488, 3534, 3534, 3534, 3534, 3534, 3534, 3541,14437, 3541, 3541, 3541, 3541, 3541, 3541, 3541, 3541, 3541, 3541,14437, 15293,14536,14278,14491,14500, 3541, 3541, 3541, 3541, 3541, 3541,14356,14356,14356,14356,14356,14356,14356,14356,14356, 14357,14357,14357,14357,14357,14357,14357,14357,14357,14361, 14373, 3541, 3541, 3541, 3541, 3541, 3541, 3545, 3545, 3545, 3545, 3545, 3545, 3545, 3545, 3545, 3545,14361,14373,14559, 14480,14579,14490, 3545, 3545, 3545, 3545, 3545, 3545,14361, 14373,14480,14361,14490,14499,14258,14258,14258,14258,14258, 14258,14258,14258,14258,15319,14499,14579,14546,14559, 3545, 3545, 3545, 3545, 3545, 3545, 3547,14258, 3547, 3547, 3547, 3547, 3547, 3547, 3547, 3547, 3547,14358,14358,14358,14358, 14358,14358,14358,14358,14358,14258,14456,14456, 3547,14369, 14369,14369,14369,14369,14369,14369,14369,14369,14652,14497, 14360,14366,14546,14588,14474, 3547, 3548,14497, 3548, 3548, 3548, 3548, 3548, 3548, 3548, 3548, 3548,14456,14360,14366, 14505,14652,14725,14456,14635,14360,14366,14474,14505, 3548, 14360,14366,14370,14370,14370,14370,14370,14370,14370,14370, 14370,14588,14584,14474,15321,14635, 3548, 3549,14725, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3549, 3549,14371,14371, 14371,14371,14371,14371,14371,14371,14371,14584,14712,14399, 3549,14399,14399,14399,14399,14399,14399,14375,14383,14383, 14383,14383,14383,14383,14383,14383,14383, 3549, 3562,14506, 15322,14381,14399,14712,14374,14375,14622, 3562, 3562, 3562, 3562, 3562, 3562, 3562, 3562, 3562, 3562,14375,14380,14381, 14375,14507,14374, 3562, 3562, 3562, 3562, 3562, 3562,14374, 14462,14381,14507,14506,14374,14622,14380,14511,14515,14462, 14462,14462,14516,14380,14522,14511,14448,14448,14380, 3562, 3562, 3562, 3562, 3562, 3562,14785,14785,14785,15324,15326, 14462,14585, 3562, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563,14448,14585,14519,14515,14516,14448,14522, 3563, 3563, 3563, 3563, 3563, 3563,14384,14384,14384,14384,14384, 14384,14384,14384,14384,14385,14385,14385,14385,14385,14385, 14385,14385,14385,14453,14523, 3563, 3563, 3563, 3563, 3563, 3563,14519,14453,14453,14453,14453,14453,14453, 3563, 3570, 14526, 3570, 3570, 3570, 3570, 3570, 3570, 3570, 3570, 3570, 3570,14657,15327,14453,14523,15331,15333, 3570, 3570, 3570, 3570, 3570, 3570,14397,14397,14397,14397,14397,14397,14397, 14397,14397,14521,14527,14531,14631,14539,14526,14532,14657, 14521,14527,14541, 3570, 3570, 3570, 3570, 3570, 3570, 3574, 3574, 3574, 3574, 3574, 3574, 3574, 3574, 3574, 3574,14543, 14567,14631,15334,14542,14631, 3574, 3574, 3574, 3574, 3574, 3574,14531,14532,14539,14542,14561,14541,14398,14398,14398, 14398,14398,14398,14398,14398,14398,14563,14561,14576,14543, 14567, 3574, 3574, 3574, 3574, 3574, 3574, 3576,14398, 3576, 3576, 3576, 3576, 3576, 3576, 3576, 3576, 3576,14540,14563, 14561,14574,14454,14793,14617,15337,14540,14558,14563,14575, 3576,14454,14454,14454,14454,14454,14454,14558,14576,15339, 14454,14582,14583,14698,14558,14659,14461,14568,14793,14582, 14569,14574,14454,14583,14617,14461,14461,14461,14461,14461, 14461,15065,14698,14575, 3576, 3577,14558, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577,14461,14568,14466,14603, 14463,14569,14466,14568,14466,14659,14624,14587, 3577,14463, 14463,14463,14463,14463,14463,14463,14463,14463,14569,14587, 14654,15065,14587,15340,14680,14468,14623,14625,14466,14603, 14463,14571,14571,14626,14468,14468,14468,14468,14468,14468, 14624,14654, 3577, 3578,14466, 3578, 3578, 3578, 3578, 3578, 3578, 3578, 3578, 3578,14466,14468,14623,14625,14467,14680, 14713,14610,14571,14603,14653,14626, 3578,14467,14467,14467, 14467,14467,14467,14467,14467,14467,14593,14593,14593,14571, 14470,14713,14591,14591,14591,14591,14591,14610,14467,14470, 14470,14470,14470,14470,14470,14610,14653,14593,14470,15346, 3578, 3595, 3595,14591, 3595, 3595, 3595, 3595, 3595, 3595, 14470, 3595, 3595,15085,14597,14597,14597,14597,14597,14597, 14629,14601, 3595, 3595, 3595, 3595, 3595, 3595, 3595,14470, 14586,14695,14621,14602, 3595,14597,14632,14586,14601,14695, 14627,14595,14586,14595,14621,14696,14547,14601,14627,14629, 15085, 3595, 3595, 3595, 3596, 3596,14547, 3596, 3596, 3596, 3596, 3596, 3596,14602, 3596, 3596,14632,14595,14547,14627, 14619,14602,14618,14621,14696, 3596, 3596, 3596, 3596, 3596, 3596, 3596, 3596,14595,14634,14547,14548, 3596,14619,14629, 14618,14547,15053,14656,15348,14686,14548,14602,14687,14630, 14619,14681,14618,14548, 3596, 3596, 3596, 3600,14548,14686, 14687,14681,14686, 3600,14634,15053, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 3600,14548,14656,14618,14630,14630, 14658,14548, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 3604, 3604,14605, 3604, 3604, 3604, 3604, 3604, 3604,14658, 3604, 3604,15349,14726,14854,14994, 15355,14711,14604,14633,14605, 3604, 3604, 3604, 3604, 3604, 3604, 3604,14711,15357,15096,14726,14605, 3604,14589,14589, 14589,14589,14589,14589,14589,14589,14589,14726,14854,14994, 14633,15177,14604,14633, 3604, 3604, 3604, 3605, 3605,14589, 3605, 3605, 3605, 3605, 3605, 3605,14549, 3605, 3605,15358, 14605,15096,14667,14697,14697,14697,14549,14604, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605,14604,14633,14549,15177, 3605,14960,14960,14960,14697,14606,14520,14520,14520,14520, 14520,14520,14520,14520,14520,14549,14551, 3605, 3605, 3605, 3611,14549,14520,14606,14682,14667,14551, 3611,14668, 3611, 14549,15288,14550,14667,14682,14606,14668,14684,14551,14611, 14611, 3611,14550, 3611,15054, 3611,14520,14684, 3611,14667, 14608,14670,14668, 3611,14550,14551, 3611,14550, 3611,14670, 3611,14551, 3611, 3611, 3611, 3612,14691,14551,14608,14606, 14611,14550, 3612,14553,14552,14670,14691,14550,15054,15368, 14608,14710,15288,14553,14552,14931, 3612,14611, 3612,14710, 3612,14672,14791, 3612,14703,14553,14552,14931, 3612, 3612, 14791, 3612,14552, 3612,14611, 3612,14609, 3612, 3612, 3612, 3613,14703,14553,14552,14608,14782,14628, 3613,14553,14552, 14553,14554,14796,14705,14609,14612,14612,14557,15369,14554, 14796, 3613,14703, 3613,14672, 3613,14609,14557, 3613,14554, 14705,14782,14672, 3613, 3613,14628, 3613,14555, 3613,14557, 3613,14554, 3613, 3613, 3613, 3614,14612,14555,14672,14801, 15092,14705, 3614,14609,14792,14612,14557,14801,14554,14555, 14609,14609,14557,14612,14554,14792, 3614,14628, 3614,14704, 3614,14798,14707, 3614,14704,14707,14555,15391, 3614,14557, 14612, 3614,14555, 3614,14671, 3614,14671, 3614, 3614, 3614, 3615,14704,14671,14555,14803,15092,14798, 3615,14797,14560, 14560,14560,14560,14560,14560,14560,14560,14560,14671,14797, 14707, 3615,14704, 3615,14673, 3615,14802,14673, 3615,14803, 14560,15185,14673, 3615, 3615,14807, 3615,14802, 3615,14674, 3615,14688, 3615, 3615, 3615, 3616,14807,14674,14673,14688, 15396,14674, 3616,14560,14590,14590,14590,14590,14590,14590, 14590,14590,14590,14674,14688,14688, 3616,14808, 3616, 3616, 3616,15185,14806, 3616,14811,14590,14607,14620, 3616,14724, 14806, 3616,14811, 3616,14724, 3616,15103, 3616, 3616, 3616, 3618, 3618,14808,15406,14607,14620, 3618,14596,14596,14596, 14596,14596,14596,14596,14596,14596,14607,14620,14613,14613, 14724,14675,14615,14615,14812,14823,15059,14933,14596,14675, 14706, 3618,14614,14614,14675,14812,14823,14607, 3618,14933, 14815,15103,14933,14821, 3618,14675,14620,14706,14815,14613, 14607,14821, 3618,14615, 3618,14706, 3618,14781,15410, 3618, 14614,15058,14781,14614, 3618,15059,14613, 3618,14706, 3618, 14615, 3618,14613, 3618, 3618, 3618, 3619, 3619,15087,14615, 14614,15060, 3619,14613,14676,14677,14678,14615,14781,14614, 14676,14677,14676,14677,15413,15058,14616,14614,14616,14616, 14616,14616,14616,14616,14616,14616,14616, 3619,14676,14677, 14826,15060,15087, 3619, 3619,15091,14734,15179,14826,14616, 14827,14700,14700,14700,14700,14700,14700,14838, 3619,14678, 3619,14827, 3619,14843,14734, 3619,14678,14678,14838,14728, 3619,14678,14700, 3619,14843, 3619,14734, 3619,15068, 3619, 3619, 3619, 3634,14678,15091,15179,14735,14728,14853, 3634, 14699,14699,14699,14699,14699,14699,14699,14699,14699,14728, 14830,14858,14728, 3634,14735, 3634,14837, 3634,14830, 3634, 3634,14699,14858,14853,14837, 3634,14735,14727, 3634,15068, 3634,14733, 3634, 3634, 3634, 3634, 3634, 3635,14701,14701, 14701,14701,14701,14701, 3635,14727,14736,14701,15292,14733, 15422,15427,14727,15292,14737,14842,14733,14727, 3635,14701, 3635,14733, 3635,14842,14736, 3635,14846,14742,14743, 3635, 3635,14736,14737, 3635,14846, 3635,14736, 3635,14701, 3635, 3635, 3635, 3636,14748,14737,14742,14743,14737,14857, 3636, 14946,14749,14742,14863,14859,15102,14857,14742,14743,14750, 14862,14748,14946, 3636,14863, 3636,14864, 3636,14862,14749, 3636, 3636,14868,14748,15431, 3636,14749,14750, 3636,14859, 3636,14749, 3636,14868, 3636, 3636, 3636, 3636, 3637,14750, 14755,14864,14750,15162,15102, 3637,14745,14745,14745,14745, 14745,14745,14745,14745,14745,14756,14879,14762,14755, 3637, 14867, 3637,15112, 3637, 3637,14755, 3637,14879,14867,14871, 14755, 3637,15284,14756, 3637,14762, 3637,14871, 3637,15284, 3637, 3637, 3637, 3638,14763,14756,15284,14762,15162,15434, 3638,14746,14746,14746,14746,14746,14746,14746,14746,14746, 14764,15112,14763,15467, 3638,14877, 3638,14882, 3638,14763, 14932, 3638, 3638,14877,14763,14882, 3638,14932,14764, 3638, 14883, 3638,14932, 3638,14886, 3638, 3638, 3638, 3639,14769, 14764,14883,14886,14764,14894, 3639,14747,14747,14747,14747, 14747,14747,14747,14747,14747,14894,14899,14769,15202, 3639, 14893, 3639,14898, 3639,14769,14903, 3639,14899,14893,14769, 14898, 3639, 3639,14903, 3639,15202, 3639,14895, 3639,15202, 3639, 3639, 3639, 3640,14758,14758,14758,14758,14758,14758, 14758,14758,14758,14759,14759,14759,14759,14759,14759,14759, 14759,14759,14895,14908,14770, 3640,14900,14905,14969,14969, 14969,14908, 3640,14760,14760,14760,14760,14760,14760,14760, 14760,14760,14770,15468,14904,14909, 3640,15295, 3640,14912, 3640,14900,14905, 3640,14770,14904,14909,14912, 3640,15295, 3640, 3640,15098, 3640,15164, 3640,14930, 3640, 3640, 3640, 3641,14772,14772,14772,14772,14772,14772,14772,14772,14772, 14773,14773,14773,14773,14773,14773,14773,14773,14773,14918, 15164,14930, 3641,14978,14978,14978,15098,14918, 3641, 3641, 14774,14774,14774,14774,14774,14774,14774,14774,14774,15473, 14919,14922,14929, 3641,14928, 3641,15000, 3641,15001,14922, 3641,14919,14928,14929,15000, 3641,15066,15066, 3641,15001, 3641,15002, 3641,15108, 3641, 3641, 3641, 3642,14786,14786, 14786,14786,14786,14786,14786,14786,14786,14787,14787,14787, 14787,14787,14787,14787,14787,14787,15002,15066,14788, 3642, 14788,14788,14788,14788,14788,14788, 3642,15108,14787,14822, 14822,14822,14822,14822,14822,14822,14822,14822,14980,14945, 3642,14788, 3642,15006, 3642,14822,14945, 3642, 3642,15011, 15005,14945, 3642,15199,15006, 3642,14980, 3642,15005, 3642, 15011, 3642, 3642, 3642, 3642, 3646, 3646,14834,14980,14822, 15007, 3646,15199,15483, 3646,15304,14834,14834,14834,14834, 14834,14834,14834,14834,14834,14878,14878,14878,14878,14878, 14878,14878,14878,14878,15010,15007, 3646,14834,14981,15304, 14982,14878,15010, 3646,14961,14961,14961,14961,14961,14961, 14961,14961,14961,14988,15015,15016,14981, 3646,14982, 3646, 15012, 3646,15015,14981, 3646,14878,15016,15020,14981, 3646, 14982,14988, 3646,14982, 3646,15020, 3646,15021, 3646, 3646, 3646, 3648, 3648,14988,15487,15012,15017, 3648,15021,15022, 3648,14970,14970,14970,14970,14970,14970,14970,14970,14970, 14979,14979,14979,14979,14979,14979,14979,14979,14979,14987, 15025,15017, 3648,15026,15022,15032,15106,15029,15025, 3648, 15029,15035,15037,15032,15026, 3648,15042,14987,15040,15035, 15036,15041,15046, 3648,14987, 3648,15040, 3648,15088,14987, 3648,15036,15041,15046,15090, 3648,15029,15037, 3648,15088, 3648,15042, 3648,15106, 3648, 3648, 3648, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3681,15294,15049,15090, 15183,15049,15294, 3681, 3681, 3681, 3681, 3681, 3681,14990, 14990,14990,14990,14990,14990,14990,14990,14990,14991,14991, 14991,14991,14991,14991,14991,14991,14991,15049,15183, 3681, 3681, 3681, 3681, 3681, 3681, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682,15093,15076,15101,15198,15198, 15198, 3682, 3682, 3682, 3682, 3682, 3682,14992,14992,14992, 14992,14992,14992,14992,14992,14992,15045,15052,15490,15198, 15093,15499,15101,15082,15045,15052,15076, 3682, 3682, 3682, 3682, 3682, 3682, 3684, 3684, 3684, 3684, 3684, 3684, 3684, 3684, 3684, 3684,15061,15089,15076,15082,15086, 3684, 3684, 3684, 3684, 3684, 3684, 3684,15086,15097,15099,15107,15109, 15057,15057,15082,15100,15097,15110,15107,15111,15099,15115, 15109,15117,15145,15061,15089, 3684, 3684, 3684, 3684, 3684, 3684, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689, 3689,15057,15111,15100,15057,15110,15116, 3689, 3689, 3689, 3689, 3689, 3689,15118,15116,15117,15115,15061,15125,15073, 15119,15145,15504,15508,15118,15123,15120,15129,15073,15073, 15073,15073,15073, 3689, 3689, 3689, 3689, 3689, 3689, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691, 3691,15073, 15119,15120,15125,15124,15126, 3691, 3691, 3691, 3691, 3691, 3691,15124,15123,15130,15129,15126,15135,15075,15077,15136, 15511,15130,15077,15134,15077,15139,15075,15075,15075,15141, 15148, 3691, 3691, 3691, 3691, 3691, 3691, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3696,15075,15077,15136, 15135,15140,15520, 3696, 3696, 3696, 3696, 3696, 3696,15140, 15134,15143,15139,15141,15077,15144,15150,15148,15149,15155, 15165,15154,15143,15159,15077,15160,15149,15155,15173, 3696, 3696, 3696, 3696, 3696, 3696, 3698, 3698, 3698, 3698, 3698, 3698, 3698, 3698, 3698, 3698,15144,15151,15525,15535,15165, 15150, 3698, 3698, 3698, 3698, 3698, 3698,15151,15154,15160, 15159,15173,15064,15161,15539,15542,15166,15174,15182,15163, 15545,15064,15064,15064,15064,15064,15064, 3698, 3698, 3698, 3698, 3698, 3698, 3703, 3703, 3703, 3703, 3703, 3703, 3703, 3703, 3703,15064,15161,15163,15166,15550,15174,15182, 3703, 3703, 3703, 3703, 3703, 3703,15142,15142,15142,15142,15142, 15142,15142,15142,15142,15180,15178,15554,15178,15557,15191, 15184,15142,15186,15175,15181, 3703, 3703, 3703, 3703, 3703, 3703, 3704, 3704, 3704, 3704, 3704, 3704, 3704, 3704, 3704, 3704,15170,15193,15180,15191,15142,15178, 3704, 3704, 3704, 3704, 3704, 3704,15181,15175,15184,15186,15189,15190,15194, 15200,15566,15568,15178,15170,15189,15221,15570,15225,15190, 15170,15175,15193, 3704, 3704, 3704, 3704, 3704, 3704, 3706, 3706, 3706, 3706, 3706, 3706, 3706, 3706, 3706, 3706,15194, 15200,15222,15175,15225,15311, 3706, 3706, 3706, 3706, 3706, 3706,15221,15235,15235,15235,15311,15079,15290,15235,15223, 15235,15234,15222,15286,15290,15079,15079,15079,15079,15079, 15079, 3706, 3706, 3706, 3706, 3706, 3706, 3711, 3711, 3711, 3711, 3711, 3711, 3711, 3711, 3711,15079,15205,15223,15226, 15234,15286,15571, 3711, 3711, 3711, 3711, 3711, 3711,15280, 15226,15282,15282,15298,15280,15168,15168,15168,15168,15168, 15168,15576,15577,15280,15583,15298,15282,15205,15226, 3711, 3711, 3711, 3711, 3711, 3711, 3712,15168, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712,15176,15197,15197, 15197,15197,15197, 3712, 3712, 3712, 3712, 3712, 3712,15168, 15283,15205,15283,15220,15310,15299,15343,15343,15343,15197, 15584,15313,15310,15176,15283,15220,15211,15593,15176, 3712, 3712, 3712, 3712, 3712, 3712, 3715, 3715, 3715, 3715, 3715, 3715, 3715, 3715, 3715, 3715,15176,15203,15211,15220,15299, 15313, 3715, 3715, 3715, 3715, 3715, 3715,15352,15352,15352, 15211,15361,15361,15361,15203,15229,15176,15239,15239,15239, 15239,15239,15239,15239,15239,15239,15203, 3715, 3715, 3715, 3715, 3715, 3715, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717,15208,15229,15227,15384,15229,15383, 3717, 3717, 3717, 3717, 3717, 3717,15305,15383,15384,15305,15594, 15203,15208,15240,15240,15240,15240,15240,15240,15240,15240, 15240,15240,15305,15208,15227, 3717, 3717, 3717, 3717, 3717, 3717, 3722, 3722, 3722, 3722, 3722, 3722, 3722, 3722, 3722, 15206,15232,15209,15305,15312,15604,15605, 3722, 3722, 3722, 3722, 3722, 3722,15307,15314,15315,15329,15208,15206,15615, 15209,15307,15315,15208,15227,15616,15314,15315,15329,15312, 15206,15232,15209, 3722, 3722, 3722, 3722, 3722, 3722, 3723, 3723, 3723, 3723, 3723, 3723, 3723, 3723, 3723, 3723,15210, 15218,15307,15623,15385,15206, 3723, 3723, 3723, 3723, 3723, 3723,15625,15626,15232,15206,15206,15209,15210,15218,15243, 15243,15243,15243,15243,15243,15243,15243,15243,15385,15210, 15218, 3723, 3723, 3723, 3723, 3723, 3723, 3730, 3730, 3730, 3730, 3730, 3730, 3730, 3730, 3730, 3730,15214,15214,15389, 15390,15388,15637, 3730, 3730, 3730, 3730, 3730, 3730,15388, 15389,15653,15316,15210,15218,15250,15250,15250,15250,15250, 15250,15250,15250,15250,15316,15390,15647,15316,15214, 3730, 3730, 3730, 3730, 3730, 3730, 3731, 3731, 3731, 3731, 3731, 3731, 3731, 3731, 3731,15228,15214,15230,15395,15394,15393, 15647, 3731, 3731, 3731, 3731, 3731, 3731,15393,15328,15394, 15214,15250,15214,15398,15228,15328,15377,15629,15629,15629, 15328,15398,15395,15228,15648,15230,15363, 3731, 3731, 3731, 3731, 3731, 3731, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738,15219,15363,15648,15377,15399,15404, 3738, 3738, 3738, 3738, 3738, 3738,15659,15363,15230,15399,15404, 15668,15219,15251,15251,15251,15251,15251,15251,15251,15251, 15251,15251,15251,15219,15365, 3738, 3738, 3738, 3738, 3738, 3738, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742,15371,15365,15694,15400,15403,15219, 3742, 3742, 3742, 3742, 3742, 3742,15403,15365,15704,15721,15365,15204,15371, 15196,15196,15196,15196,15196,15196,15196,15196,15196,15400, 15727,15371,15680, 3742, 3742, 3742, 3742, 3742, 3742, 3748, 3748,15196, 3748, 3748, 3748, 3748, 3748, 3748,15204, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 3748,15301,15301,15301, 15301,15301, 3748,15408,15409,15204,15415,15680,15418,15424, 15731,15408,15204,15204,15415,15409,15418,15424,15301, 3748, 3748, 3748, 3748, 3756, 3756,15660, 3756, 3756, 3756, 3756, 3756, 3756,15231, 3756, 3756,15248,15248,15248,15248,15248, 15248,15248,15248,15248, 3756, 3756, 3756, 3756, 3756, 3756, 3756,15657,15419,15405,15749,14995, 3756,15757,15763,15248, 15657,15660,15231,15419,14995,14995,14995,14995,14995,14995, 14995,14995,14995, 3756, 3756, 3756, 3757, 3757,15405, 3757, 3757, 3757, 3757, 3757, 3757,14995, 3757, 3757,15421,15303, 15303,15303,15303,15303,15303,15425,15231, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757,15430,15425,15429,14996, 3757, 15303,15767,15642,15421,15778,15429,15430,14996,14996,14996, 14996,14996,14996,14996,14996,14996, 3757, 3757, 3757, 3760, 3760,15642, 3760, 3760, 3760, 3760, 3760, 3760,14996, 3760, 3760,15254,15254,15254,15254,15254,15254,15254,15254,15254, 3760, 3760, 3760, 3760, 3760, 3760, 3760,15778,15669,15436, 15440,14997, 3760,15669,15806,15212,15212,15436,15440,15426, 14997,14997,14997,14997,14997,14997,14997,14997,14997, 3760, 3760, 3760, 3761, 3761,15233, 3761, 3761, 3761, 3761, 3761, 3761,14997, 3761, 3761,15426,15836,15212,15212,15254,15306, 15442,15441,15448, 3761, 3761, 3761, 3761, 3761, 3761, 3761, 15448,15207,15441,15212,15233, 3761,15306,15195,15195,15195, 15195,15195,15195,15682,15449,15442,15195, 3761,15450,15207, 15212,15306, 3761, 3761, 3761,15449,15673,15306,15195,15567, 15233,15207,15412,15433,15281,15412,15433,15207,15233,15682, 15281,15679,15281,15450, 3761, 3762, 3762,15195, 3762, 3762, 3762, 3762, 3762, 3762,15281, 3762, 3762,15207,15281,15567, 15472,15412,15433,15673,15454,15207, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762,15453,15454,15457,15062, 3762,15651, 15679,15914,15453,15916,15457,15472,15062,15062,15062,15062, 15062,15062,15062,15062,15062, 3762, 3762, 3762, 3765, 3765, 15651, 3765, 3765, 3765, 3765, 3765, 3765,15062, 3765, 3765, 15344,15344,15344,15344,15344,15344,15344,15344,15344, 3765, 3765, 3765, 3765, 3765, 3765, 3765,15470,15471,15475,15480, 15063, 3765,15918,15919,15470,15924,15475,15480,15471,15063, 15063,15063,15063,15063,15063,15063,15063,15063, 3765, 3765, 3765, 3766, 3766,15675, 3766, 3766, 3766, 3766, 3766, 3766, 15063, 3766, 3766,15353,15353,15353,15353,15353,15353,15353, 15353,15353, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 3766, 15476,15477,15485,15071, 3766,15881,15925,15675,15931,15881, 15485,15476,15071,15071,15071,15071,15071,15071,15071,15071, 15071, 3766, 3766, 3766, 3768, 3768,15477, 3768, 3768, 3768, 3768, 3768, 3768,15071, 3768, 3768,15362,15362,15362,15362, 15362,15362,15362,15362,15362, 3768, 3768, 3768, 3768, 3768, 3768, 3768,15481,15486,15482,15837,15072, 3768,15932,15941, 15837,15942,15952,15481,15486,15072,15072,15072,15072,15072, 15072,15072,15072,15072, 3768, 3768, 3768, 3769, 3769,15482, 3769, 3769, 3769, 3769, 3769, 3769,15072, 3769, 3769,15373, 15373,15373,15373,15373,15373,15373,15373,15373, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769,15492,15495,15501,15078, 3769,15213,15213,15685,15492,15495,15501,15953,15078,15078, 15078,15078,15078,15078,15078,15078,15078, 3769, 3769, 3769, 3770, 3770,15790, 3770, 3770, 3770, 3770, 3770, 3770,15078, 3770, 3770,15213,15364,15370,15963,15489,15496,15691,15489, 15685, 3770, 3770, 3770, 3770, 3770, 3770, 3770,15496,15213, 15498,15364,15370, 3770, 3770,15964,15502,15790,15364,15370, 15213,15506,15507,15364,15370,15489,15213,15502,15503,15506, 3770, 3770, 3770,15507,15661,15498,15687,15691,15698,15518, 3770, 3771, 3771,15661, 3771, 3771, 3771, 3771, 3771, 3771, 15518, 3771, 3771,15503, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771, 3771,15971, 15687,15973,15698,15216, 3771,15216,15216,15216,15216,15216, 15216,15216,15216,15216,15644,15510,15696,15644,15510,15797, 15708, 3771, 3771, 3771, 3772, 3772,15216, 3772, 3772, 3772, 3772, 3772, 3772,15644, 3772, 3772,15217,15217,15217,15217, 15217,15217,15217,15217,15510, 3772, 3772, 3772, 3772, 3772, 3772, 3772,15797,15696,15708,15974,15217, 3772,15252,15252, 15252,15252,15252,15252,15252,15252,15252,15645,15985,16040, 15702,15513,16057,15645, 3772, 3772, 3772, 3773, 3773,15513, 3773, 3773, 3773, 3773, 3773, 3773,15645, 3773, 3773,15374, 15374,15374,15374,15374,15374,15374,15374,15374, 3773, 3773, 3773, 3773, 3773, 3773, 3773,15517,15252,15519,15524,15702, 3773, 3773,15253,15517,15253,15253,15253,15253,15253,15253, 15253,15253,15253,15522,15523,15528,15527, 3773, 3773, 3773, 15706,15522,15519,15524,15527,15523,15528, 3773, 3778, 3778, 15649, 3778, 3778, 3778, 3778, 3778, 3778,15712, 3778, 3778, 15375,15375,15375,15375,15375,15375,15375,15375,15375, 3778, 3778, 3778, 3778, 3778, 3778, 3778,15795,15706,15715,16067, 15649, 3778,15300,15300,15300,15300,15300,15300,15300,15300, 15300,15529,15534,16068,16070,15723,15712,15795, 3778, 3778, 3778, 3779, 3779,15300, 3779, 3779, 3779, 3779, 3779, 3779, 15532, 3779, 3779,15537,15717,15715,15529,15534,15532,15533, 15538,15537, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 15533,15538,15723,15725, 3779,15302,15302,15302,15302,15302, 15302,15302,15302,15302,15541,15549,16071,15541,15717,15737, 16077, 3779, 3779, 3779, 3783, 3783,15302, 3783, 3783, 3783, 3783, 3783, 3783,15544, 3783, 3783,15547,15725,16078,15564, 15549,15544,15548,15541,15547, 3783, 3783, 3783, 3783, 3783, 3783, 3783,15552,15548,15559,15562,15378, 3783,15737,15735, 15552,15662,15559,15562,15564,15378,15378,15378,15378,15378, 15378,15378,15378,15378, 3783, 3783, 3783, 3784, 3784,15553, 3784, 3784, 3784, 3784, 3784, 3784,15378, 3784, 3784,15634, 15553,15662,15636,15735,16083,15563,15635,15634, 3784, 3784, 3784, 3784, 3784, 3784, 3784, 3784,15563,15635,15747,15379, 3784,16084,15742,15556,15572,15646,15556,15636,15379,15379, 15379,15379,15379,15379,15379,15379,15379, 3784, 3784, 3784, 3788, 3788,15572, 3788, 3788, 3788, 3788, 3788, 3788,15379, 3788, 3788,15556,15641,15572,15646,15742,15747,15640,15676, 15639, 3788, 3788, 3788, 3788, 3788, 3788, 3788,15639,15640, 15676,15674,15380, 3788,15646,15878,16089,15574,15641,15674, 15878,15380,15380,15380,15380,15380,15380,15380,15380,15380, 3788, 3788, 3788, 3789, 3789,15574, 3789, 3789, 3789, 3789, 3789, 3789,15380, 3789, 3789,15573,15579,15574,15643,15580, 15574,15589,15652,15643, 3789, 3789, 3789, 3789, 3789, 3789, 3789, 3789,15730,15573,15579,15667, 3789,15580,15677,15589, 15573,15654,15643,15670,15580,15573,15579,15652,15678,15580, 15733,15589,15670, 3789, 3789, 3789, 3792, 3792,15581, 3792, 3792, 3792, 3792, 3792, 3792,15667, 3792, 3792,15677,15730, 15753,15654,15591,15678,15688,15670,15581, 3792, 3792, 3792, 3792, 3792, 3792, 3792,15667,15688,16090,15733,15581, 3792, 15591,15581,15586,15586,15586,15586,15586,15586,15586,15586, 15586,15740,15591,16095,15753,15591, 3792, 3792, 3792, 3793, 3793,15654, 3793, 3793, 3793, 3793, 3793, 3793,15751, 3793, 3793,15587,15587,15587,15587,15587,15587,15587,15587,15587, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793,15740,16096, 15650,15650, 3793,15588,15588,15588,15588,15588,15588,15588, 15588,15588,16104,15759,15766,15751,15681,15692,15703, 3793, 3793, 3793, 3795, 3795,15600, 3795, 3795, 3795, 3795, 3795, 3795,15650, 3795, 3795,15590,15601,15690,15650,15602,15611, 15655,15681,15600, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 15759,15766,15590,15601,15600, 3795,15602,15611,15655,15590, 15601,15690,15692,15703,15590,15601, 3795,16105,15602,15611, 15655,15602, 3795, 3795, 3795,15596,15596,15596,15596,15596, 15596,15596,15596,15596,15597,15597,15597,15597,15597,15597, 15597,15597,15597, 3795, 3796, 3796,15689, 3796, 3796, 3796, 3796, 3796, 3796,15761, 3796, 3796,15598,15598,15598,15598, 15598,15598,15598,15598,15598, 3796, 3796, 3796, 3796, 3796, 3796, 3796,15771,15977,15977,15977,15689, 3796,15607,15607, 15607,15607,15607,15607,15607,15607,15607,15761,15773,15769, 15798,15686,16130,16130, 3796, 3796, 3796, 3797, 3797,15686, 3797, 3797, 3797, 3797, 3797, 3797,15771, 3797, 3797,15608, 15608,15608,15608,15608,15608,15608,15608,15608, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3797,15769,15773,16150,15798, 3797,15609,15609,15609,15609,15609,15609,15609,15609,15609, 15658,15693,15807,15814,15701,15835,15658, 3797, 3797, 3797, 3798, 3798,15613, 3798, 3798, 3798, 3798, 3798, 3798,15697, 3798, 3798,15612,15700,15814,15710,15693,15697,15658,15701, 15613, 3798, 3798, 3798, 3798, 3798, 3798, 3798,15699,15709, 15612,15807,15613, 3798,15835,15613,15707,15612,15716,15699, 15709,15724,15612,15700,15707,15710,15716,15734,15833,15724, 3798, 3798, 3798, 3799, 3799,15734, 3799, 3799, 3799, 3799, 3799, 3799,15861, 3799, 3799,15618,15618,15618,15618,15618, 15618,15618,15618,15618, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799,15833,15711,16230,15718, 3799,15619,15619,15619, 15619,15619,15619,15619,15619,15619,15718,15799,16137,15861, 16296,16137,15791, 3799, 3799, 3799, 3803, 3803,15711, 3803, 3803, 3803, 3803, 3803, 3803,15908, 3803, 3803,15620,15620, 15620,15620,15620,15620,15620,15620,15620, 3803, 3803, 3803, 3803, 3803, 3803, 3803,15791,16120,15720,15799,15726, 3803, 15630,15630,15630,15630,15630,15630,15630,15630,15630,15726, 15746,15783,16297,15908,16117,16119, 3803, 3803, 3803, 3804, 3804,15720, 3804, 3804, 3804, 3804, 3804, 3804,15666, 3804, 3804,15834,16299,16120,15783,15746,15719,15666,15666,15666, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804,16119,15741, 16116,15631, 3804,16117,15736,15834,15729,15741,15666,15729, 15631,15631,15631,15631,15631,15631,15719,15756,16300, 3804, 3804, 3804, 3807, 3807,15748, 3807, 3807, 3807, 3807, 3807, 3807,15631, 3807, 3807,15736,15729,15744,16080,16080,16080, 16116,15665,15756, 3807, 3807, 3807, 3807, 3807, 3807, 3807, 15665,15665,15665,15665,15665, 3807,15743,15755,15656,15754, 15752,15772,15656,15656,15656,15656,15744,15743,15752,15748, 15754,15665, 3807, 3807, 3807, 3808, 3808,15849, 3808, 3808, 3808, 3808, 3808, 3808,15760, 3808, 3808,15755,15656,15775, 15765,15772,15760,15765,15762,15774, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808,15656,15762,15770,15656, 3808,15849, 15863,15776,15777,15792,15770,15775,15789,15785,15796,15765, 15774,15782,16086,16086,16086, 3808, 3808, 3808, 3810, 3810, 15786, 3810, 3810, 3810, 3810, 3810, 3810,15793, 3810, 3810, 15776,15777,15785,15792,15782,15803,15782,15789,15796, 3810, 3810, 3810, 3810, 3810, 3810, 3810,15803,15794,15804,15844, 15786, 3810,15793,15802,15789,15815,15786,15793,15816,15832, 15906,15802, 3810,15815,15838,15863,16146,15786, 3810, 3810, 3810,15832,15906,15804,15825,15816,15788,15794,15808,15844, 15808,15810,15810,15810,15810,15810,15810,15816,15838, 3810, 3811, 3811,15832, 3811, 3811, 3811, 3811, 3811, 3811,15862, 3811, 3811,15810,15825,15808,16146,16063,15788,15825,15794, 15788, 3811, 3811, 3811, 3811, 3811, 3811, 3811,16063,15983, 15808,16306,15664, 3811,15788,15817,15818,15826,15826,15787, 15983,15664,15664,15664,15664,15664,15664,15664,15664,15664, 3811, 3811, 3811, 3812, 3812,15788, 3812, 3812, 3812, 3812, 3812, 3812,15664, 3812, 3812,15817,15818,15841,15826,15840, 15787,15826,15862,16208, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812,15850,15850,15982,15826, 3812,15787,15850,15840, 16307,16229,15982,15987,16229,15787,15841,16208,15840,15817, 15818,15987,15826, 3812, 3812, 3812, 3813, 3813,15787, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3814,16092,16092,16092,16227, 16158,15839,15839,15842, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814,15809,15809,15809,15809,15809,15809,15809, 15809,15809,15812,15812,15812,15812,15812,15812,15812,15812, 15812,15839,15842,15874,15809,16098,16098,16098,15874,16158, 15842,16227,16312,15812,15874,15874, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3814, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818,15813,15813,15813,15813,15813,15984, 3818, 3818, 3818, 3818, 3818, 3818,15420,15420,15420,15420,15420,15420,15420, 15420,15420,15813,15996,15819,15989,16003,16045,16221,15420, 15996,15984,16313, 3818, 3818, 3818, 3818, 3818, 3818, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820, 3820,16045, 15989,16003,15996,15420,15819, 3820, 3820, 3820, 3820, 3820, 3820,15663,15830,15905,15877,16014,16045,16221,16186,15877, 15663,15663,15663,15663,15663,15663,15877,15831,15848,15663, 15830, 3820, 3820, 3820, 3820, 3820, 3820, 3821,15819,15819, 16014,15663,15830,15905,15819,15831, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821,15846,15915,15831,15848,16186, 15663,16318, 3821, 3821, 3821, 3821, 3821, 3821,15463,15463, 15463,15463,15463,15463,15463,15463,15463,15843,15831,16019, 15846,16149,15830,16190,15463,15846,15915,15848, 3821, 3821, 3821, 3821, 3821, 3821, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824,16019,16044,15843,16149,15463,16190, 3824, 3824, 3824, 3824, 3824, 3824,15497,15497,15497,15497, 15497,15497,15497,15497,15497,15912,16001,16319,16056,16061, 16044,16147,15497,16159,16001,15843, 3824, 3824, 3824, 3824, 3824, 3824, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3825, 3825,15845,15847,16056,16061,16324,15497,15912, 3825, 3825, 3825, 3825, 3825, 3825,15745,15745,15745,15745,15745,15745, 15745,15745,15745,16121,15880,16325,16147,16115,16159,16333, 15745,15845,15847,15820, 3825, 3825, 3825, 3825, 3825, 3825, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 3833, 15822,15820,16115,16121,15745,15988, 3833, 3833, 3833, 3833, 3833, 3833,15911,15820,15864,15845,15988,15847,15822,16125, 15864,16006,15880,16145,15911,16148,15880,15880,16334,16006, 15822,15880, 3833, 3833, 3833, 3833, 3833, 3833, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834,15820,16145,16125, 16148,16204,16002,15822, 3834, 3834, 3834, 3834, 3834, 3834, 15876,15909,15911,16002,15822,15876,16009,15909,16125,16283, 16204,15864,16283,16437,16009,16438,15864,15876,15909,15821, 3834, 3834, 3834, 3834, 3834, 3834, 3842, 3842, 3842, 3842, 3842, 3842, 3842, 3842, 3842, 3842,16458,15821,16065,15909, 16013,16018, 3842, 3842, 3842, 3842, 3842, 3842,16017,15821, 16065,16013,16018,16065,16461,16142,16017,16461,15821,15886, 15886,15886,15886,15886,15886,15886,15886,15886, 3842, 3842, 3842, 3842, 3842, 3842, 3843, 3843, 3843, 3843, 3843, 3843, 3843, 3843, 3843,15821,15990,15992,16157,16023,16043,16142, 3843, 3843, 3843, 3843, 3843, 3843,15990,15992,16023,16043, 15992,16055,15780,15780,15780,15780,15780,15780,15780,15780, 15780,16157,16055,15990,15992,16502, 3843, 3843, 3843, 3843, 3843, 3843, 3848,15780, 3848, 3848, 3848, 3848, 3848, 3848, 3848, 3848, 3848, 3848,15827,15827,16198,16202,16502,16239, 3848, 3848, 3848, 3848, 3848, 3848,15780,15887,15887,15887, 15887,15887,15887,15887,15887,15887,15887,16126,16534,16287, 16291,16198,16202,16140,16239,15827, 3848, 3848, 3848, 3848, 3848, 3848, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3855,15827,15993,16287,16291,16060,16126, 3855, 3855, 3855, 3855, 3855, 3855,15827,15993,16022,16060,16026,15827, 16140,15993,16033,16036,16022,15875,16026,16562,15875,16563, 16033,16036,15993,15875, 3855, 3855, 3855, 3855, 3855, 3855, 3856, 3856, 3856, 3856, 3856, 3856, 3856, 3856, 3856,15875, 15828,15828,16309,16309,16309,16344, 3856, 3856, 3856, 3856, 3856, 3856,15890,15890,15890,15890,15890,15890,15890,15890, 15890,15895,15895,15895,15895,15895,15895,15895,15895,15895, 16344,15828, 3856, 3856, 3856, 3856, 3856, 3856, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861,15828,16564, 16352,16114,16143,16042, 3861, 3861, 3861, 3861, 3861, 3861, 15828,16042,16114,16143,16152,15828,15898,15898,15898,15898, 15898,15898,15898,15898,15898,16352,15895,16154,15920,15927, 3861, 3861, 3861, 3861, 3861, 3861, 3865, 3865, 3865, 3865, 3865, 3865, 3865, 3865, 3865, 3865,15920,15927,16565,16155, 16566,16152, 3865, 3865, 3865, 3865, 3865, 3865,15920,15927, 16155,16154,15898,15899,15899,15899,15899,15899,15899,15899, 15899,15899,15899,15899,16203,16203,16203,15910, 3865, 3865, 3865, 3865, 3865, 3865, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869,15910,16203,16567,16568,15910,16569, 3869, 3869, 3869, 3869, 3869, 3869,15900,15900,15900,15900, 15900,15900,15900,15900,15900,15910,16129,15896,15896,15896, 15896,15896,15896,15896,15896,15896, 3869, 3869, 3869, 3869, 3869, 3869, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870,15896,16144,16315,16315,16315,16129,16570, 3870, 3870, 3870, 3870, 3870, 3870,15900,15901,16051,15901,15901,15901, 15901,15901,15901,15901,15901,15901,16321,16321,16321,16327, 16327,16327,16144,16051, 3870, 3870, 3870, 3870, 3870, 3870, 3875, 3875, 3875, 3875, 3875, 3875, 3875, 3875, 3875, 3875, 16118,16118,16418,16418,16418,16051, 3875, 3875, 3875, 3875, 3875, 3875,15902,15902,15902,15902,15902,15902,15902,15902, 15902,15934,15934,15934,15934,15934,15934,15934,15934,15934, 15922,16118, 3875, 3875, 3875, 3875, 3875, 3875, 3879, 3879, 3879, 3879, 3879, 3879, 3879, 3879, 3879, 3879,15922,15921, 16440,16440,16440,16054, 3879, 3879, 3879, 3879, 3879, 3879, 15922,16054,16059,15922,16064,16185,15879,15921,15879,15902, 16059,16064,16172,15879,15921,16156,16064,16280,16279,15921, 3879, 3879, 3879, 3879, 3879, 3879, 3880, 3880,15879, 3880, 3880, 3880, 3880, 3880, 3880,15873, 3880, 3880,16113,16571, 15928,16172,15929,16185,15937,16156,16113, 3880, 3880, 3880, 3880, 3880, 3880, 3880, 3880,15938, 3880, 3880,15928, 3880, 15929,15873,15937, 3880,15873,15928, 3880, 3880, 3880,15873, 15928, 3880,15929,15938,15937,15929, 3880, 3880, 3880,15873, 15938,16279,16280,16477,16197,15938,16141,15811,15811,15811, 15811,15811,15811,16153,16141,16197,15811,16574, 3880, 3881, 3881,16153, 3881, 3881, 3881, 3881, 3881, 3881,15811, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881, 3881,15811,16477,16575, 16199,16201, 3881,15935,15935,15935,15935,15935,15935,15935, 15935,15935,16199,16201,16576,16181,16201,16578,16631, 3881, 3881, 3881, 3883, 3883,16181, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3883, 3884, 3884,15948, 3884, 3884, 3884, 3884, 3884, 3884, 3884, 3884, 3884, 3884, 3884, 3884, 3884, 3884, 3884,16127, 16127,15948, 3884, 3884, 3884, 3884, 3884, 3884, 3884,16062, 16595,16632,16176,15948, 3884,15936,15936,15936,15936,15936, 15936,15936,15936,15936,16595,16370,16062,15939,15959,15994, 16127, 3884, 3884, 3884, 3884, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888,15939,15959,15994,16062,16176, 16370, 3888, 3888, 3888, 3888, 3888, 3888,15939,15959,15994, 15939,15944,15944,15944,15944,15944,15944,15944,15944,15944, 16375,16380,16410,16446,16674,16679,15994, 3888, 3888, 3888, 3888, 3888, 3888, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890, 3890,16689,16693,16375,16380,16410,16446, 3890, 3890, 3890, 3890, 3890, 3890,15945,15945,15945,15945,15945, 15945,15945,15945,15945,15946,15946,15946,15946,15946,15946, 15946,15946,15946,15950,16182, 3890, 3890, 3890, 3890, 3890, 3890, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 3895, 15949,15950,15960,16209,16450,16292,16696, 3895, 3895, 3895, 3895, 3895, 3895,15950,16182,16209,15950,16292,15949,16200, 15960,16171,16191,16182,16187,15949,16200,15960,16171,16450, 15949,16200,15960, 3895, 3895, 3895, 3895, 3895, 3895, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896,16177, 16171,16705,16191,16710,16187, 3896, 3896, 3896, 3896, 3896, 3896,15955,15955,15955,15955,15955,15955,15955,15955,15955, 15956,15956,15956,15956,15956,15956,15956,15956,15956,16177, 16187, 3896, 3896, 3896, 3896, 3896, 3896, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901,16535,16714,16192,16717, 16733,16535,16177, 3901, 3901, 3901, 3901, 3901, 3901,15957, 15957,15957,15957,15957,15957,15957,15957,15957,15966,15966, 15966,15966,15966,15966,15966,15966,15966,16046,16192, 3901, 3901, 3901, 3901, 3901, 3901, 3907, 3907,15823, 3907, 3907, 3907, 3907, 3907, 3907,16046, 3907, 3907,16266,16499,16046, 16048,16737,16047,16761,16266,15823, 3907, 3907, 3907, 3907, 3907, 3907, 3907,15991,15823,16188,16046,15823, 3907,16499, 15991,16460,16048,16193,16047,15991,15824,16047,16048,15907, 15907,15907,15907,15907,15907, 3907, 3907, 3907,15907,16048, 16228,16047,15991,15823,15824,16188,16761,16460,16188,16179, 15907,15823,16193, 3907, 3910, 3910,15824, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910,15961,16100,16101,15907, 16102,16226,16179,16228,16500, 3910, 3910, 3910, 3910, 3910, 3910, 3910,15824,16179,15961,16100,16101, 3910,16102,16449, 15824,16500,16789,16101,16196,16449,15961,16100,16101,15961, 16102,16226,16196,16102, 3910, 3910, 3910, 3910, 3915, 3915, 16232, 3915, 3915, 3915, 3915, 3915, 3915,16249, 3915, 3915, 15967,15967,15967,15967,15967,15967,15967,15967,15967, 3915, 3915, 3915, 3915, 3915, 3915, 3915,15829,16467,16830,16232, 16475, 3915,16843,16467,16210,15829,15829,15829,15829,15829, 15829,15829,15829,15829,16248,16342,16850,16249, 3915, 3915, 3915,16210,16249,16342,16248,16475,15829,15968,15968,15968, 15968,15968,15968,15968,15968,15968,16210,16217,16278, 3915, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917,16740, 3917, 3917,15978,15978,15978,15978,15978,15978,15978,15978, 15978, 3917, 3917, 3917, 3917, 3917, 3917, 3917,15979,16217, 16740,16217,16470, 3917,16343,16278,16495,15979,15979,15979, 15979,15979,15979,16189,16225,16343,16049,16241,16241,16241, 3917, 3917, 3917,16241,16049,16448,16225,16730,15979,16032, 16032,16032,16032,16032,16032,16032,16032,16032,16123,16470, 16213, 3917, 3930,16189,16495,16032,16049,16123,16123,16123, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 16277,16277,16730,16049,16476,16448,16225,16277,16123,16032, 16213,16237, 3930, 3944, 3944,16189, 3944, 3944, 3944, 3944, 3944, 3944,16472, 3944, 3944,16073,16073,16073,16073,16073, 16073,16073,16073,16073, 3944, 3944, 3944, 3944, 3944, 3944, 3944,16237,16778,16476,16213,16284, 3944,16074,16074,16074, 16074,16074,16074,16074,16074,16074,16472,16551,16485,16778, 16347,16879,16487, 3944, 3944, 3944, 3945, 3945,16347, 3945, 3945, 3945, 3945, 3945, 3945,16284, 3945, 3945,16075,16075, 16075,16075,16075,16075,16075,16075,16075, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945,16485,16487,16294,16290, 3945, 16081,16081,16081,16081,16081,16081,16081,16081,16081,16294, 16509,16600,16294,16350,16551,16551, 3945, 3945, 3945, 3946, 3946,16350, 3946, 3946, 3946, 3946, 3946, 3946,16290, 3946, 3946,16087,16087,16087,16087,16087,16087,16087,16087,16087, 3946, 3946, 3946, 3946, 3946, 3946, 3946,16594,16509,16923, 16600,16351, 3946,16093,16093,16093,16093,16093,16093,16093, 16093,16093,16351,16356,16749,16731,16290,16929,16930, 3946, 3946, 3946, 3947, 3947,16356, 3947, 3947, 3947, 3947, 3947, 3947,16594, 3947, 3947,16099,16099,16099,16099,16099,16099, 16099,16099,16099, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947,16749,16598,16731,16360, 3947,16107,16107,16107,16107, 16107,16107,16107,16107,16107,16360,16573,16931,16755,16355, 16751,16573, 3947, 3947, 3947, 3948, 3948,16355, 3948, 3948, 3948, 3948, 3948, 3948,16598, 3948, 3948,16108,16108,16108, 16108,16108,16108,16108,16108,16108, 3948, 3948, 3948, 3948, 3948, 3948, 3948,16932,16751,16234,16160,16755, 3948,16109, 16109,16109,16109,16109,16109,16109,16109,16109,16160,16122, 3948,17026,16234,17190,16231, 3948, 3948, 3948,16122,16122, 16122,16122,16122,16122,16234,16160,16359,16231,16447,16163, 16235,16160,16233,16233,16359,16479,16131, 3948, 3950,16122, 16131,16163,16131,16231,16163,16374,16233, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950,16374,16447,16163,16235, 16124,16479,16233,16224,16163,16183,16131,16379, 3950,16124, 16124,16124,16124,16124,16124,16124,16124,16124,16379,16161, 17205,16224,16131,16384,16235,17208,16161, 3950, 3952,16533, 16124,16161,16131,16224,16384,16533,16183, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952,16184,16256,16161,16236, 16132,16478,16756,16183,16161,16256,17220,16782, 3952,16132, 16132,16132,16132,16132,16132,16132,16132,16132,16183,16162, 16238,16256,16288,16224,16183,16758,16478,16184,16782,16236, 16132,16162,16236,16184, 3952, 3954, 3954,16165, 3954, 3954, 3954, 3954, 3954, 3954,16184, 3954, 3954,16756,16162,16165, 16238,16758,16288,16395,16162,16165, 3954, 3954, 3954, 3954, 3954, 3954, 3954,16162,16395,16184,16165,16133, 3954,16288, 16810,16166,16165,16399,16363,16238,16133,16133,16133,16133, 16133,16133,16363,16166,16399, 3954, 3954, 3954, 3955, 3955, 16288, 3955, 3955, 3955, 3955, 3955, 3955,16133, 3955, 3955, 16166,16612,16612,16612,16810,17225,16166,16409,16166, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955,16445,16409,17235, 16135, 3955,16206,16206,16206,16206,16206,16206,16445,16135, 16135,16135,16135,16135,16135,16135,16135,16135, 3955, 3955, 3955, 3958, 3958,16206, 3958, 3958, 3958, 3958, 3958, 3958, 16135, 3958, 3958,16373,16808,16411,16412,16501,16329,16167, 16136,16373, 3958, 3958, 3958, 3958, 3958, 3958, 3958,16136, 16136,16136,16136,16136, 3958,16808,16329,16167,16281,16272, 16413,16412,16501,16272,16281,16411,16412,16272,16329,16167, 16136, 3958, 3958, 3958, 3959, 3959,16164, 3959, 3959, 3959, 3959, 3959, 3959,16272, 3959, 3959,16167,16873,16164,16414, 16413,16211,16167,16413,16168, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959,16792,16378,16164,16168, 3959,16383,16873, 16170,16164,16378,16416,16420,16281,16383,16164,16211,16414, 16281,16211,16170,16168, 3959, 3959, 3959, 3961, 3961,16168, 3961, 3961, 3961, 3961, 3961, 3961,16212, 3961, 3961,16170, 16168,16792,17239,16416,16420,16170,16416,16211, 3961, 3961, 3961, 3961, 3961, 3961, 3961,16211,16790,16387,16603,16393, 3961,16603,16170,16424,16214,16387,16212,16393,16205,16205, 16205,16205,16205,16205,16205,16205,16205, 3961, 3961, 3961, 3962, 3962,16214, 3962, 3962, 3962, 3962, 3962, 3962,16205, 3962, 3962,16212,16424,16214,16214,16331,16428,16790,16603, 16212, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962,16240, 16240,17111,16293, 3962,16331,16240,16422,16223,16426,16293, 17111,16219,16219,16240,16293,17242,16331,16428,16214,16331, 3962, 3962, 3962, 3963, 3963,16223, 3963, 3963, 3963, 3963, 3963, 3963,16240, 3963, 3963,16398,16422,16223,16426,16422, 16289,16426,16219,16398, 3963, 3963, 3963, 3963, 3963, 3963, 3963,16134,16415,16215,16216,16793, 3963,16289,16793,16219, 16134,16134,16134,16134,16134,16134,16223,16480,16507,16134, 3963,16215,16216, 3963, 3963, 3963,16219,16415,16289,16220, 16220,16134,16415,16215,16216,16289,16207,16207,16207,16207, 16207,16207,17201,16507,16809,16207,16480, 3963, 3964, 3964, 16134, 3964, 3964, 3964, 3964, 3964, 3964,16207, 3964, 3964, 16220,16215,16432,16430,17201,16330,16216,16215,16216, 3964, 3964, 3964, 3964, 3964, 3964, 3964,16207,16220,16402,16514, 16408, 3964,16809,16330,17251,16220,16402,16255,16408,16444, 16330,17153,16432,16430,16220,16330,16430,16444, 3964, 3964, 3964, 3965, 3965,16514, 3965, 3965, 3965, 3965, 3965, 3965, 16481, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965,16471, 16473,17153,16255,16222, 3965,16218,16218,16471,16781,16481, 16255,16473,16222,16222,16222,16222,16222,16222,16222,16222, 16222, 3965, 3965, 3965, 3967, 3967,16255, 3967, 3967, 3967, 3967, 3967, 3967,16222, 3967, 3967,16218,16421,16286,16286, 16286,16286,16286,16286,16218, 3967, 3967, 3967, 3967, 3967, 3967, 3967,16781,16218,17256,16257,16780, 3967,16257,16286, 16434,16425,16421,16257,16451,16457,16457,16421,16875,16257, 16218,16273,16273,16780, 3967, 3967, 3967, 3968, 3968,16257, 3968, 3968, 3968, 3968, 3968, 3968,16425, 3968, 3968,16274, 16434,16425,16429,16434,16451,16274,16457,16274, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968,16599,16875,16258,16599, 3968,16599,16486,16274,16474,16273,16258,16429,16433,16258, 16486,16275,16429,16273,16489,16530,17260, 3968, 3968, 3968, 3969, 3969,16258, 3969, 3969, 3969, 3969, 3969, 3969,16273, 3969, 3969,16259,16433,16474,16452,16452,16489,16433,16530, 16259, 3969, 3969, 3969, 3969, 3969, 3969, 3969,16259,17263, 16260,16262,16491, 3969,16489,16275,16259,16260,16260,16262, 16463,17103,16260,16275,16262,16452,16804, 3969,17303,16263, 3969, 3969, 3969,16506,16260,16262,16263,16263,16505,16275, 16264,16263,16491,16263,16506,16529,16505,17103,16264,16804, 16463,16452,16264,16263, 3969, 3973, 3973,16529, 3973, 3973, 3973, 3973, 3973, 3973,16264, 3973, 3973,16459,16459,16463, 16492,16526,16496,16515,16497,16276, 3973, 3973, 3973, 3973, 3973, 3973, 3973,16276,16550,16837,16529,16498, 3973,16584, 16276,17179,16550,16459, 3973,16837,16526,16584,16459,16276, 16492,16492,16496,16515,16497, 3973, 3973, 3973, 3974, 3974, 16497, 3974, 3974, 3974, 3974, 3974, 3974,16498, 3974, 3974, 16302,16302,16302,16302,16302,16302,16302,16302,16302, 3974, 3974, 3974, 3974, 3974, 3974, 3974,16577,16265,17179,16265, 16496, 3974,16498,16639,16585,16265,16585,16577,16265,16634, 16634,16634,16585,16812,16639,16265,16812,17313, 3974, 3974, 3974,16265,16285,16285,16285,16285,16285,16285,16285,16285, 16285,16303,16303,16303,16303,16303,16303,16303,16303,16303, 3974, 3975, 3975,16285, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978,16868, 3978, 3978,16304,16304,16304,16304,16304,16304,16304,16304, 16304, 3978, 3978, 3978, 3978, 3978, 3978, 3978,16511,16511, 16511,16511,16511, 3978,16310,16310,16310,16310,16310,16310, 16310,16310,16310,16769,16868,16852,16839,16984,17346,16511, 3978, 3978, 3978, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979,16839, 3979, 3979,16316,16316,16316,16316,16316, 16316,16316,16316,16316, 3979, 3979, 3979, 3979, 3979, 3979, 3979,16984,16852,16979,16769,16646, 3979,16322,16322,16322, 16322,16322,16322,16322,16322,16322,16646,16852, 3979,16531, 16979,17180,16852, 3979, 3979, 3979,16328,16328,16328,16328, 16328,16328,16328,16328,16328,16336,16336,16336,16336,16336, 16336,16336,16336,16336,16531, 3979, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981,16950, 3981, 3981,16337,16337, 16337,16337,16337,16337,16337,16337,16337, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981,17180,17036,17036,16532, 3981, 16338,16338,16338,16338,16338,16338,16338,16338,16338,16822, 16822,17036,16950,17102,17117,16822, 3981, 3981, 3981, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987,16532, 3987, 3987,16419,16419,16419,16419,16419,16419,16419,16419,16419, 3987, 3987, 3987, 3987, 3987, 3987, 3987,17102,17117,17363, 17115,16869, 3987,16441,16441,16441,16441,16441,16441,16441, 16441,16441,16544,16513,16513,16513,16513,16513,16513, 3987, 3987, 3987, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988,16462, 3988, 3988,16513,16516,16544,17115,16572,17363, 16462,16462,16462, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988,16869,16516,17374,16453, 3988,16869,16539,16539,16541, 16516,16462,16572,16453,16453,16453,16453,16453,16453,16453, 16453,16453, 3988, 3988, 3988, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990,16453, 3990, 3990,16539,16945,16541, 17175,16596,16651,16656,16945,16541, 3990, 3990, 3990, 3990, 3990, 3990, 3990,16651,16656,16586,16586,16454, 3990,17164, 16605,16586,16517,16586,16586,16596,16454,16454,16454,16454, 16454,16454,16454,16454,16454, 3990, 3990, 3990, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991,16454, 3991, 3991, 16605,16522,16517,16604,17164,17175,16525,16525,16661, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991,16677,17139,16661, 16455, 3991,17425,16878,16540,16493,16522,16604,16677,16455, 16455,16455,16455,16455,16517,16522,16517,16525, 3991, 3991, 3991, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 16455, 3992, 3992,16540,16525,16878,16493,17139,16527,16608, 16614,16878, 3992, 3992, 3992, 3992, 3992, 3992, 3992,16464, 16606,16525,16640,16493, 3992, 3992,16527,16493,16464,16464, 16464,16464,16464,16464,16464,16464,16464,16540,16527,16608, 16614, 3992, 3992, 3992,16493,16606,16638,16640,16978,16464, 16606, 3992, 3993, 3993,16638, 3993, 3993, 3993, 3993, 3993, 3993,16527, 3993, 3993,17296, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 16978,16645,16650,16655,16465, 3993,17187,16518,16518,16645, 16650,16655,16538,16465,16465,16465,16465,16465,16465,17296, 16538,16936, 3993, 3993, 3993, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994,16465, 3994, 3994,16518,16528,16494, 16494,16538,16523,16523,16609,16660, 3994, 3994, 3994, 3994, 3994, 3994, 3994,16660,17177,16682,16528,17187, 3994,16664, 16936,16523,16543,16518,16618,16597,16682,16664,16528,16609, 16494,16518,16936,16523,16609, 3994, 3994, 3994, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995,16494, 3995, 3995, 16523,16597,16543,17151,16618,16520,16597,16528,17177, 3995, 3995, 3995, 3995, 3995, 3995, 3995,16622,16523,16494,16647, 16652, 3995, 3995,16520,17151,16394,16394,16394,16394,16394, 16394,16394,16394,16394,16794,16520,16543,16536, 3995, 3995, 3995,16394,16657,16536,16647,16652,16622,16626, 3995, 3999, 3999,16794, 3999, 3999, 3999, 3999, 3999, 3999,16794, 3999, 3999,17350,16519,16521,16520,16394,16536,16657,16687,16520, 3999, 3999, 3999, 3999, 3999, 3999, 3999,16626,16678,16687, 16519,16521, 3999,16510,16510,16510,16510,16510,16510,16510, 16510,16510,16519,16521,16676,16519,16683,16524,16524, 3999, 3999, 3999,16676,16678,16510,17506,16607, 3999, 4000, 4000, 17350, 4000, 4000, 4000, 4000, 4000, 4000,16681, 4000, 4000, 16849,16683,16521,16537,16537,16681,16519,16521,16524, 4000, 4000, 4000, 4000, 4000, 4000, 4000,16607,16537,16466,16607, 16542, 4000,16759,16849,16688,16524,16686,16466,16466,16466, 16466,16466,16466,16537,16686,16524,16466,17365, 4000, 4000, 4000,17181,16524,16524,16691,16615,16692,16601,16466,16688, 16542,16759,16691,16601, 4000, 4001, 4001,16692, 4001, 4001, 4001, 4001, 4001, 4001,16601, 4001, 4001,16466,17176,16610, 16615,16616,17365,16726,16602,16615, 4001, 4001, 4001, 4001, 4001, 4001, 4001,16602,16542,16601,16846,17181, 4001,16542, 16512,16512,16512,16512,16512,16512,16512,16512,16512,16610, 16602,16616,16610,16726,16616, 4001, 4001, 4001,16846,16846, 4001,16512,16613,16613,16613,16613,16613,16613,16613,16613, 16613,16602,16704,17176, 4001,16709,17590,16935,16620, 4001, 4002, 4002,16624, 4002, 4002, 4002, 4002, 4002, 4002,16619, 4002, 4002,16623,16627,16628,17601,16695,16704,16702,16695, 16709, 4002, 4002, 4002, 4002, 4002, 4002, 4002,16620,16702, 16724,16620,16624, 4002,16619,16624,16935,16623,16627,16619, 16698,16701,16623,16627,16628,16695,16707,16628,16698,16701, 4002, 4002, 4002,16935,16707,16724,17182,16712, 4002,17202, 17182,16708, 4002, 4003, 4003,16712, 4003, 4003, 4003, 4003, 4003, 4003,16708, 4003, 4003,16635,16635,16635,16635,16635, 16635,16635,16635,16635, 4003, 4003, 4003, 4003, 4003, 4003, 4003,16716,16719,17202,16716,16728, 4003,16727,17633,16713, 16719,16670,16670,16670,16670,16670,16670,16670,16670,16670, 16713,16722,16723, 4003, 4003, 4003,16732,16670,16734,16722, 16716,16735,16727,16723,16732,16728,16741,16727,16728,16739, 16739, 4003, 4004, 4004,16741, 4004, 4004, 4004, 4004, 4004, 4004,16670, 4004, 4004,16750,17275,17107,17275,16734,16746, 16752,16735,16750, 4004, 4004, 4004, 4004, 4004, 4004, 4004, 16739,16752,16753,16739,16754, 4004,16757,16760,16773,16703, 16703,16703,16703,16703,16703,16703,16703,16703,17107,16746, 17276,17276, 4004, 4004, 4004,16703,16770,16786,16775,16754, 16779,16757,16753,16773,17641,16779,16760,16877,16786, 4004, 4005, 4005,16767, 4005, 4005, 4005, 4005, 4005, 4005,16703, 4005, 4005,16779,16787,16877,16776,16770,16774,16775,16770, 16777, 4005, 4005, 4005, 4005, 4005, 4005, 4005,16816,16785, 16736,16811,16767, 4005,16800,16877,16771,16785,16787,16736, 16736,16736,16736,16736,16736,16776,16962,16774,16736,16777, 4005, 4005, 4005,16743,16816,16767,16818,16816,16800,16796, 16736,16811,16743,16743,16743,16743,16743,16771,16800, 4005, 4010, 4010,16776, 4010, 4010, 4010, 4010, 4010, 4010,16736, 4010, 4010,16774,16743,16771,16962,16818,16836,17642,16796, 16807, 4010, 4010, 4010, 4010, 4010, 4010, 4010, 4010,16836, 16962,16870,16807, 4010,16745,16771,17320,17320,16821,16870, 16836,16848,16771,16745,16745,16745,16745,16745,16745,16842, 4010, 4010, 4010,16796, 4010, 4011, 4011,16813, 4011, 4011, 4011, 4011, 4011, 4011,16745, 4011, 4011,16807,16821,16848, 16813,17342, 4011,16853,16842,16890, 4011, 4011, 4011, 4011, 4011, 4011, 4011,16890,16853,16995,16813,16742, 4011,16801, 16801,16995,16872,16853,16817,16874,16742,16742,16742,16742, 16742,16742,16742,16742,16742, 4011, 4011, 4011, 4014, 4014, 16795, 4014, 4014, 4014, 4014, 4014, 4014,16742, 4014, 4014, 16801,16872,17342,16817,16874,16772,17345,16844,16891, 4014, 4014, 4014, 4014, 4014, 4014, 4014,16744,16801,16844,16891, 16795, 4014,16892,16844,16896,16744,16744,16744,16744,16744, 16744,16744,16744,16744,16801,16896,16772,16814, 4014, 4014, 4014, 4014,16772,16817,16847,16814,16744,16892,16814,16795, 17742,17345,16847,16772,16795,16797, 4014, 4029, 4029,16798, 4029, 4029, 4029, 4029, 4029, 4029,16814, 4029, 4029,16819, 16838,16820,16881,16797,16772,16815,16847,16798, 4029, 4029, 4029, 4029, 4029, 4029, 4029,16797,16815,16895,16838,16798, 4029,16802,16802,16797,16799,16895,16838,16996,16841,16819, 17184,16820,16881,16996,16815,16897,16841, 4029, 4029, 4029, 4030, 4030,16799, 4030, 4030, 4030, 4030, 4030, 4030,16797, 4030, 4030,16802,16798,16799,16841,16902,16805,16803,16803, 16897, 4030, 4030, 4030, 4030, 4030, 4030, 4030, 4030,16802, 16819,16820,16900, 4030,16851,16805,17184,16806,16871,16799, 16900,16902,17004,16851,16845,17121,16802,16805,16799,16803, 4030, 4030, 4030, 4032, 4032,16806, 4032, 4032, 4032, 4032, 4032, 4032,16845, 4032, 4032,16851,16803,16806,16805,17121, 16845,16901,17004,16832, 4032, 4032, 4032, 4032, 4032, 4032, 4032,16832,16901,16803,16803,16905, 4032,16906,16845,16803, 17131,16834,16840,16905,16831,16871,16871,16832,16906,16834, 16840,16855,16806, 4032, 4032, 4032, 4033, 4033,16840, 4033, 4033, 4033, 4033, 4033, 4033,16834, 4033, 4033,16854,17131, 16854,16882,17172,17803,16840,16926,16854, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033,17305,16926,16831,16942, 4033, 16909,16916,16854,16883,16855,16831,16882,16856,16909,16916, 16856,16882,16855,16927,17172,16856, 4033, 4033, 4033, 4035, 4035,16831, 4035, 4035, 4035, 4035, 4035, 4035,16855, 4035, 4035,16856,17119,16883,17305,16953,16883,16942,16927,16857, 4035, 4035, 4035, 4035, 4035, 4035, 4035,16857,16876,16942, 16859,16857, 4035,16919,16925,17119,16859,16876,16859,16937, 16860,16919,16925,16857,16953,16876,16860,16937,16860, 4035, 4035, 4035, 4036, 4036,16859, 4036, 4036, 4036, 4036, 4036, 4036,16968, 4036, 4036,16860,16963,16876,16953,16963,16968, 16959,16961,17379, 4036, 4036, 4036, 4036, 4036, 4036, 4036, 4036,16934,16963,16858,16969, 4036,16937,16941,16941,17379, 17836,16858,16970,16938,16977,16969,16858,16938,16934,16938, 16959,16961, 4036, 4036, 4036, 4037, 4037,16858, 4037, 4037, 4037, 4037, 4037, 4037,16943, 4037, 4037,16970,16941,16977, 16934,16943,16961,16938,16941,16955, 4037, 4037, 4037, 4037, 4037, 4037, 4037,16959,17140,17351,17047,17029, 4037,16938, 4037,16791,16791,16791,16791,16791,16791,16965,16971,16938, 16791,17879,16999,16999,17060, 4037, 4037, 4037,16971,16964, 16943,17047,16791,17140,16955,16956, 4037, 4043, 4043,17059, 4043, 4043, 4043, 4043, 4043, 4043,16955, 4043, 4043,17060, 17059,16791,16999,17138,17351,17065,16965,16971, 4043, 4043, 4043, 4043, 4043, 4043, 4043,16956,17029,16973,16964,16960, 4043,16974,16940,16956,16964,17929,17138,16973,16861,16965, 17065,16940,16940,16940,16940,16940,16940, 4043, 4043, 4043, 4044, 4044,16973, 4044, 4044, 4044, 4044, 4044, 4044,16960, 4044, 4044,16940,16997,16957,16960,16973,17269,16980,16997, 16974, 4044, 4044, 4044, 4044, 4044, 4044, 4044, 4044,17055, 16972,16861,16974, 4044,17602,16960,16957,17055,16861,16861, 16972,17058,16997,16861,17269,16957,17070,16972,16980,17058, 4044, 4044, 4044, 4048, 4048,16861, 4048, 4048, 4048, 4048, 4048, 4048,16957, 4048, 4048,17186,17976,17021,17338,16972, 17602,17070,16991,16980, 4048, 4048, 4048, 4048, 4048, 4048, 4048,16988,16980,16957,16991,16939, 4048,16976,16976,16976, 16976,16976,16976,17003,16939,16939,16939,16939,16939,16939, 16939,16939,16939, 4048, 4048, 4048, 4049, 4049,16976, 4049, 4049, 4049, 4049, 4049, 4049,16939, 4049, 4049,16991,17021, 16988,17034,17186,17003,17021,17338,17034, 4049, 4049, 4049, 4049, 4049, 4049, 4049, 4049,17034,17063,17203,17318, 4049, 16987,16987,16988,16981,17063,17000,17003,16933,16933,16933, 16933,16933,16933,16933,16933,16933, 4049, 4049, 4049, 4052, 4052,16981, 4052, 4052, 4052, 4052, 4052, 4052,17068, 4052, 4052,16987,16989,16981,17000,17203,17068,17318,17001,17001, 4052, 4052, 4052, 4052, 4052, 4052, 4052,16933,16987,16992, 16989,17002, 4052,16975,16975,16975,16975,16975,16975,16975, 16975,16975,16989,17982,16994,16987,17000,16981,17001, 4052, 4052, 4052, 4053, 4053,16975, 4053, 4053, 4053, 4053, 4053, 4053,17002, 4053, 4053,17073,17075,17018,17002,16992,16983, 16990,17385,17073, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053,16993,16989,16994,17037, 4053,17037,16983,16990,16982, 17075,16992,17022,17385,17101,17002,17018,17005,17037,16983, 16990,16994, 4053, 4053, 4053, 4055, 4055,16982, 4055, 4055, 4055, 4055, 4055, 4055,17064, 4055, 4055,17108,17018,16982, 16993,17023,16998,17018,17101,17064, 4055, 4055, 4055, 4055, 4055, 4055, 4055,16983,16990,16998,17005,17270, 4055,16985, 16985,16986,16986,16993,17022,17005,16982,17108,17030,17022, 17022,16998,17128,16982,16982, 4055, 4055, 4055, 4056, 4056, 17069, 4056, 4056, 4056, 4056, 4056, 4056,16985, 4056, 4056, 16985,17069,16986,17023,17348,17270,18101,17128,17023, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056,16985,17049,16986, 17023, 4056,17045,17019,17020,17024,16985,17045,16986,17078, 17030,17028,17074,17130,16985,17030,16986,17078, 4056, 4056, 4056, 4057, 4057,17074, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057,17025,18203,17106,17106,17049,17130,17348, 17045,17045, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 17048,17019,17020,17024, 4057,17019,17020,17024,17027,17049, 17019,17020,17024,17028,17024,17050,17106,17136,17028,17028, 17399, 4057, 4057, 4057, 4057, 4057, 4058, 4058,17050, 4058, 4058, 4058, 4058, 4058, 4058,17025, 4058, 4058,17046,17048, 17025,17399,17136,17046,17025,17046,17046, 4058, 4058, 4058, 4058, 4058, 4058, 4058,17050,17038,17027,17048,17082, 4058, 17027,17027,17038,17031,17079,17027,17082,17105,17125,17038, 17147,17051,17051,17088,18240,17079, 4058, 4058, 4058, 4059, 4059,17088, 4059, 4059, 4059, 4059, 4059, 4059,17051, 4059, 4059,17093,17152,17389,17362,17147,17052,17105,17125,17093, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059,17031,17051, 17031,17090, 4059,17094,17154,17031,17105,17127,17032,17031, 17031,17152,17090,17154,17094,17052,17031,17364,17389, 4059, 4059, 4059, 4062, 4062,17052, 4062, 4062, 4062, 4062, 4062, 4062,17097, 4062, 4062,17035,17362,17123,17127,17214,17097, 17035,17104,17035, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 17104,17104,17104,17032,17035, 4062,17116,17364,17035,17155, 17032,17160,17134,17214,17116,17032,17219,17123,17032,17127, 17134,17104, 4062, 4062, 4062, 4063, 4063,17032, 4063, 4063, 4063, 4063, 4063, 4063,17123, 4063, 4063,17129,17224,17155, 17160,17219,17204,17129,17701,17135, 4063, 4063, 4063, 4063, 4063, 4063, 4063, 4063,17129,17123,17135,17109, 4063,17185, 17162,17141,17122,17224,17124,17204,17109,17109,17109,17109, 17109,17109,17109,17109,17109, 4063, 4063, 4063, 4065, 4065, 17122, 4065, 4065, 4065, 4065, 4065, 4065,17109, 4065, 4065, 17162,17141,17122,17454,18244,17124,17124,17142,17174, 4065, 4065, 4065, 4065, 4065, 4065, 4065,17174,17454,17185,17701, 17110, 4065,17124,17157,17157,17142,17185,17156,17162,17110, 17110,17110,17110,17110,17110,17141,17156,17142, 4065, 4065, 4065, 4066, 4066,17124, 4066, 4066, 4066, 4066, 4066, 4066, 17110, 4066, 4066,17157,17148,17149,17156,17126,17150,17143, 17144,17229, 4066, 4066, 4066, 4066, 4066, 4066, 4066, 4066, 17213,17142,17148,17149, 4066,17212,17150,17143,17144,17159, 17266,17213,17234,17212,17148,17149,17229,17126,17150,17143, 17144, 4066, 4066, 4066, 4067, 4067,17126, 4067, 4067, 4067, 4067, 4067, 4067, 4067, 4067, 4067,17217,17234,17159,17393, 17266,17250,17393,17148,17217, 4067, 4067, 4067, 4067, 4067, 4067, 4067, 4067,17143,17144,17144,17183, 4067,17218,17158, 17144,17145,17145,17146,17146,17146,17250,17159,17161,17218, 17255,17274,17158,17222, 4067, 4067, 4067, 4067, 4067, 4070, 4070,17222, 4070, 4070, 4070, 4070, 4070, 4070,17158, 4070, 4070,17278,17145,18104,17146,17255,17274,17207,17161,17183, 4070, 4070, 4070, 4070, 4070, 4070, 4070,17161,17173,17145, 17223,17146, 4070,17188,17278,17163,17163,17227,17267,17232, 17146,17223,17207,17183,17145,17227,17145,17232,17146, 4070, 4070, 4070, 4070, 4071, 4071,17207, 4071, 4071, 4071, 4071, 4071, 4071,17200, 4071, 4071,17163,17241,17284,17267,17241, 17349,17173,18104,17173, 4071, 4071, 4071, 4071, 4071, 4071, 4071, 4071,17173,17188,17206,17228, 4071,17206,17188,17173, 17262,17188,17237,17262,17267,17241,17228,17284,17233,17163, 17237,17206,17200, 4071, 4071, 4071, 4071, 4073, 4073,17233, 4073, 4073, 4073, 4073, 4073, 4073,17238, 4073, 4073,17262, 17200,17268,17206,17292,18245,17200,17349,17238, 4073, 4073, 4073, 4073, 4073, 4073, 4073, 4073,17244,17247,17248,17253, 4073,17254,17258,17259,17244,17247,17268,17253,17265,17248, 17258,17268,17254,17292,17259,17299,17265, 4073, 4073, 4073, 4073, 4074, 4074,17299, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4076, 4076,17449, 4076, 4076, 4076, 4076, 4076, 4076,17273, 4076, 4076,17290,17293,17291,17273,17294,17343,17287,17272, 17449, 4076, 4076, 4076, 4076, 4076, 4076, 4076,17272,17272, 17272,17272,17272, 4076,17283,17287,17300,17293,17457,17457, 17317,17285,17290,17283,17291,17291,17294,17300,17295,17272, 4076, 4076, 4076, 4076, 4077, 4077,17287, 4077, 4077, 4077, 4077, 4077, 4077,17294, 4077, 4077,17301,17304,17290,17286, 17317,17306,17285,17295,17323, 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4077,17343,17330,17316,17458, 4077,17458,17285, 17319,17301,17304,17321,17289,17286,17306,17316,17323,17321, 17286,17563,17373,17323, 4077, 4077, 4077, 4077, 4078, 4078, 17285, 4078, 4078, 4078, 4078, 4078, 4078,17286, 4078, 4078, 17319,17316,17330,17378,18246,17289,17372,17373,17289, 4078, 4078, 4078, 4078, 4078, 4078, 4078,17344,17372,17286,17563, 17271, 4078,17289,17327,17312,17312,17322,17322,17378,17271, 17271,17271,17271,17271,17271,17271,17271,17271, 4078, 4078, 4078, 4080, 4080,17289, 4080, 4080, 4080, 4080, 4080, 4080, 17271, 4080, 4080,17327,17327,17312,17322,18247,17310,17344, 17347,17325, 4080, 4080, 4080, 4080, 4080, 4080, 4080, 4080, 17433,17537,17312,17433, 4080,17328,17310,17537,17329,16915, 16915,16915,16915,16915,16915,16915,16915,16915,17310,17312, 17325, 4080, 4080, 4080, 4081,16915, 4081, 4081, 4081, 4081, 4081, 4081, 4081, 4081, 4081,17328,17347,17307,17329,17371, 17376,17347,17392,17381,16944,17325,17381,17371,17376,16915, 4081,17392,17310,16944,16944,16944,16944,16944,16944,17352, 17381,17367,16944,16958, 4081, 4082, 4082,17307, 4082, 4082, 4082, 4082, 4082, 4082,16944, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082,16944,16958,17367,18248,17377, 4082,17367, 17324,17307,17307,16958,17326,17326,17324,17307,17377,17352, 17453,16958,17663,17453,17352, 4082, 4082, 4082, 4082, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090,17324, 17339,17391,16958,17663,17326, 4090, 4090, 4090, 4090, 4090, 4090,17089,17089,17089,17089,17089,17089,17089,17089,17089, 17388,17412,17383,17450,17339,17391,18249,17089,17339,17412, 17450, 4090, 4090, 4090, 4090, 4090, 4090, 4091, 4091, 4091, 4091, 4091, 4091, 4091, 4091, 4091, 4091,17311,17311,17406, 17388,17089,17383, 4091, 4091, 4091, 4091, 4091, 4091,17249, 17249,17249,17249,17249,17249,17249,17249,17249,17419,17383, 17520,17520,18251,17408,17406,17249,17409,17419,17311, 4091, 4091, 4091, 4091, 4091, 4091, 4092, 4092, 4092, 4092, 4092, 4092, 4092, 4092, 4092, 4092,17311,17314,17408,17413,17249, 17357, 4092, 4092, 4092, 4092, 4092, 4092,17311,17357,17413, 17409,17415,17311,17420,17314,17357,17418,17426,17432,17540, 17414,17516,17426,17415,17357,17540,17314, 4092, 4092, 4092, 4092, 4092, 4092, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095,17380,17386,17414,17418,17420,17380, 4095, 4095, 4095, 4095, 4095, 4095,17366,17382,17432,17473,17434, 17516,17314,17382,17366,17400,17380,17473,17430,17434,18252, 17540, 4095,17366,17382,17386, 4095, 4095, 4095, 4095, 4095, 4095, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103,17400,17417,17366,17400,17430,17416, 4103, 4103, 4103, 4103, 4103, 4103,17416,17417,17474,17502,17417,17416,17387, 17288,17400,17386,17441,17353,17431,17474,17502,17353,17340, 17517,17401,17353, 4103, 4103, 4103, 4103, 4103, 4103, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105,17353,17387, 17431,17288,17387,17441,17517, 4105, 4105, 4105, 4105, 4105, 4105,17407,17401,17451,17341,17401,17452,17407,17288,17455, 17451,17404,17340,17452,17455,18253,17288,17467,17407,17401, 17340, 4105, 4105, 4105, 4105, 4105, 4105, 4113, 4113,17288, 4113, 4113, 4113, 4113, 4113, 4113,17340, 4113, 4113,17315, 17401,17404,17467,17428,17404,17405,18254,17341, 4113, 4113, 4113, 4113, 4113, 4113, 4113,17341,17459,17315,17541,17807, 4113,17428,17468,17459,17541,17479,17355,17466,17807,17315, 17507,17341,17355,17428,17355,17405,17356, 4113, 4113, 4113, 4113, 4114, 4114,17315, 4114, 4114, 4114, 4114, 4114, 4114, 17355, 4114, 4114,17315,17428,17436,17468,17466,17479,17308, 17421,17405, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 17507,17862,17862,17569, 4114,17429,17405,17308,17435,17309, 17356,17439,17354,17354,17436,17569,17308,17429,17356,17308, 17421, 4114, 4114, 4114, 4114, 4115, 4115,17309, 4115, 4115, 4115, 4115, 4115, 4115,17356, 4115, 4115,17435,17429,17309, 17435,17439,17475,17478,17439,17308, 4115, 4115, 4115, 4115, 4115, 4115, 4115,17308,17421,17436,17354,17470, 4115,17603, 17424,17424,17484,17438,17354,17309,17456,17475,17482,17478, 17484,17603,17456,17309,17456, 4115, 4115, 4115, 4117, 4117, 17354, 4117, 4117, 4117, 4117, 4117, 4117,17488, 4117, 4117, 17456,17424,17438,17497,17437,17470,17402,17470,17482, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117,17437,17424,17930, 17476, 4117,17501,17477,17930,17422,17424,17488,17497,18087, 17501,17495,17503,17437,18087,17424,17438,17402, 4117, 4117, 4117, 4119, 4119,17422, 4119, 4119, 4119, 4119, 4119, 4119, 17476, 4119, 4119,17477,17402,17422,17498,17503,17494,17477, 17427,17495, 4119, 4119, 4119, 4119, 4119, 4119, 4119,17402, 17505,17518,17559,17512, 4119,17402,17512,17489,17427,17423, 17423,17553,17522,17559,18261,17476,17498,17422,17494,17422, 17427, 4119, 4119, 4119, 4119, 4120, 4120,17423, 4120, 4120, 4120, 4120, 4120, 4120,17505, 4120, 4120,17489,17513,17423, 17491,17522,17518,17469,17440,17553, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120,17427,17469,17513,17494, 4120,17519, 17591,17493,18282,17715,17536,17423,17527,17519,17513,17489, 17536,17491,17469,17423,17440, 4120, 4120, 4120, 4120, 4121, 4121,17522, 4121, 4121, 4121, 4121, 4121, 4121,17491, 4121, 4121,17493,17491,17469,17536,17591,17715,17565,17515,17493, 4121, 4121, 4121, 4121, 4121, 4121, 4121,17527,17440,17491, 17515,17480, 4121,17535,17565,17440,17508,17508,17700,17535, 17480,17480,17480,17480,17480,17480,17480,17480,17480, 4121, 4121, 4121, 4123, 4123,17510, 4123, 4123, 4123, 4123, 4123, 4123,17480, 4123, 4123,17560,17514,17508,17492,17524,17566, 17515,17496,17510, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 17496,17539,17699,17514,17510, 4123,17492,17539,17496,17560, 17509,17535,17508,17523,17551,17514,17566,17524,17492,17523, 17508,17700, 4123, 4123, 4123, 4123, 4124, 4124,17509, 4124, 4124, 4124, 4124, 4124, 4124,17492, 4124, 4124,17510,17699, 17509,17526,17523,17551,17511,17511,17552, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124,17514,17492,17524,17538, 4124, 17521,17542,17544,17539,17538,17538,17545,17542,17544,17509, 17552,17526,17545,17582,17509,17511, 4124, 4124, 4124, 4124, 4125, 4125,17587, 4125, 4125, 4125, 4125, 4125, 4125,17521, 4125, 4125,17511,17587,17581,17581,17604,17582,17403,17604, 17646, 4125, 4125, 4125, 4125, 4125, 4125, 4125,17390,17511, 17526,17581,17561, 4125,17562,17555,17643,17390,17390,17390, 17390,17390,17390,17521,17542,17544,17390, 4125,17646,17403, 4125, 4125, 4125, 4125,17525,17543,17545,17403,17390,17481, 17937,17543,17561,17643,17562,17555,17403,17937,17481,17481, 17481,17481,17481,17481, 4125, 4126, 4126,17390, 4126, 4126, 4126, 4126, 4126, 4126,17525, 4126, 4126,17403,17564,17481, 17554,17573,17525,17490,17588,17561, 4126, 4126, 4126, 4126, 4126, 4126, 4126,17555,17558,17596,17586,17666, 4126,17703, 17574,17596,17558,17543,17586,17666,17573,17579,17564,17588, 17554,17611,17583,17653,17490, 4126, 4126, 4126, 4127, 4127, 17490, 4127, 4127, 4127, 4127, 4127, 4127,17554, 4127, 4127, 17574,17490,17575,17575,17592,17578,17576,17579,17583, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127,18295,17554,17667, 17611, 4127,17490,17578,17653,17593,17703,18096,17600,17574, 17667,17703,17579,17575,17592,17578,17672,17576, 4127, 4127, 4127, 4128, 4128,17609, 4128, 4128, 4128, 4128, 4128, 4128, 17575, 4128, 4128,17600,17576,17593,17577,17577,17635,17605, 17594,17609, 4128, 4128, 4128, 4128, 4128, 4128, 4128,17661, 17738,17575,17661,17609, 4128,17576,17672,17719,17594,18096, 17719,17738,17576,17635,18096,17669,17661,17577,17605,17593, 17594, 4128, 4128, 4128, 4128, 4129, 4129,17669, 4129, 4129, 4129, 4129, 4129, 4129,17577, 4129, 4129,17580,17580,17580, 17580,17580,17580,17580,17580,17594, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129,17594,17577,17683,17580, 4129,17599, 17605,17737,17595,17595,17683,17606,17608,17608,17610,17737, 17668,17599,18369,17680,18375, 4129, 4129, 4129, 4129, 4130, 4130,17597, 4130, 4130, 4130, 4130, 4130, 4130,17607, 4130, 4130,17598,17599,17595,17606,17668,17608,17607,17610,17597, 4130, 4130, 4130, 4130, 4130, 4130, 4130,17634,17638,17598, 17595,17597, 4130,17680,17645,17690,17710,17607,17745,17709, 17709,17598,17606,17610,17745,17597, 4130,17595,17595, 4130, 4130, 4130, 4130,17595,17637,17597,17645,17634,17638,17710, 17690,17645,17598,17619,17619,17619,17619,17619,17619,17619, 17619,17619,17649, 4130, 4131, 4131,17639, 4131, 4131, 4131, 4131, 4131, 4131,17637, 4131, 4131,17620,17620,17620,17620, 17620,17620,17620,17620,17620, 4131, 4131, 4131, 4131, 4131, 4131, 4131,17649,17654,17658,17659,17639, 4131,17636,17730, 17620,17636,17639,17640,17709,18379,17644,17662,17619,17644, 17676,17637,17673,17681, 4131, 4131, 4131, 4139,17636,18400, 17730,18413,17639,17654,17658,17659, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139,17644,17662,17640,17636, 17676,17673, 4139, 4139, 4139, 4139, 4139, 4139,17654,17681, 17622,17622,17622,17622,17622,17622,17622,17622,17622,17682, 17698,17698,17733,17659, 4139,18424,17804,17698, 4139, 4139, 4139, 4139, 4139, 4139, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141,17686,17686,17739,17804,17733,17682, 4141, 4141, 4141, 4141, 4141, 4141,17622,17623,17623,17623, 17623,17623,17623,17623,17623,17623,17623,17623,17684,17751, 17904,17739,17751,17656,17686,17678, 4141, 4141, 4141, 4141, 4141, 4141, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146,17787,17688,17678,17687,17656,17904,17684, 4146, 4146, 4146, 4146, 4146, 4146,17656,17678,17624,17624,17624,17624, 17624,17624,17624,17624,17624,17787,17685,17689,17684,18428, 4146,17656,17688,17687, 4146, 4146, 4146, 4146, 4146, 4146, 4147,17671, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147,17656,17671,17712,17685,17671,17689, 4147, 4147, 4147, 4147, 4147, 4147,17624,17625,17716,17625,17625,17625, 17625,17625,17625,17625,17625,17625,17749,17750,17869,17679, 17685,17869,17723,17713, 4147, 4147, 4147, 4147, 4147, 4147, 4160,17914,17712,17716,17914,17689,17749,17679,18441, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160,17679, 17716,17723,17750,17713,18442, 4160, 4160, 4160, 4160, 4160, 4160,17626,17626,17626,17626,17626,17626,17626,17626,17626, 17632,17632,17632,17632,17632,17632,17632,17632,17632,17713, 17670, 4160, 4160, 4160, 4160, 4160, 4160,17670,17655,17711, 17674,17759,17670,17734, 4160, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162,17677,17711,17780,17674,17732, 17939, 4162, 4162, 4162, 4162, 4162, 4162,17732,17626,17655, 17674,17711,17734,17677,17657,17655,17732,17711,17729,17759, 17776,17632,17939,17793,17780,17677,17655, 4162, 4162, 4162, 4162, 4162, 4162, 4167, 4167, 4167, 4167, 4167, 4167, 4167, 4167, 4167,17657,17714,17674,17657,17677,17655,17729, 4167, 4167, 4167, 4167, 4167, 4167,17660,17675,17675,17993,18479, 17776,17993,17657,17793,17660,17660,17660,17660,17660,17660, 17660,17660,17660,17714,17783, 4167, 4167, 4167, 4167, 4167, 4167,17866,17714,17657,17724,17660,17741,17675, 4167, 4168, 17717, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168,17756,17756,17752,17675,17866,17783, 4168, 4168, 4168, 4168, 4168, 4168,17702,17724,17752,17741,17717,18040,17702, 17717,17675,17706,17706,17706,17706,17706,17706,17706,17706, 17706,17756,17795, 4168, 4168, 4168, 4168, 4168, 4168, 4194, 4194,17758, 4194, 4194, 4194, 4194, 4194, 4194,17724, 4194, 4194,17746,17728,17726,18040,17949,17778,17748,17779,17843, 4194, 4194, 4194, 4194, 4194, 4194, 4194,17795,17843,17746, 17702,17758, 4194,17748,17949,17702,17754,17796, 4194,17728, 17725,17746,17728,17706,17726,17748,17778,17778,17779, 4194, 4194, 4194, 4202, 4202,17753, 4202, 4202, 4202, 4202, 4202, 4202,17726, 4202, 4202,17755,17754,17727,17781,17728,17796, 17812,17725,17777, 4202, 4202, 4202, 4202, 4202, 4202, 4202, 17725,17746,17726,17753,17799, 4202,17801,17800,17725,17777, 18550, 4202,17799,17755,17781,17743,17755,17727,17800,17754, 17781,17777, 4202, 4202, 4202, 4207, 4207,17731,17812,17725, 17777,17801, 4207,17743,17727,17753,17731,17731,17731,17731, 17731,17731,17731,17731,17731,17743, 4207,17788, 4207,17727, 4207,17757,17791, 4207,17747,17727,17747,17731, 4207,18205, 17827, 4207,18205, 4207,17789, 4207,17848, 4207, 4207, 4207, 4208, 4208,17747,17744,17744,17744, 4208,17788,17757,17743, 17743,17757,17791,17814,17747,17743,17766,17766,17766,17766, 17766,17766,17766,17766,17766,17789,17789,17792,17747,17794, 17813, 4208,17811,17827,17744,17808,17848,17857, 4208,17766, 17820,17794,17789,17814,17791,17757,17947,17788,17805,17857, 17844,17744, 4208,17808, 4208,17815, 4208,17792,17794, 4208, 17744,17811,17813,17789, 4208,17808,17805, 4208,17744, 4208, 17820, 4208,17947, 4208, 4208, 4208, 4209, 4209,17805,17790, 17844,17833, 4209,17792,17815, 4209,17808,17767,17767,17767, 17767,17767,17767,17767,17767,17767,17768,17768,17768,17768, 17768,17768,17768,17768,17768,17768,17833, 4209,17850,17816, 17790,17826,17805,17815, 4209,17769,17769,17769,17769,17769, 17769,17769,17769,17769,17769,17810,17826,17790, 4209,17839, 4209,17826, 4209,17828,18568, 4209,18189,17810,17816,17790, 4209,17806,17806, 4209,17767, 4209,17850, 4209,17790, 4209, 4209, 4209, 4210,17817,17837,17828,17828,17837,17839, 4210, 17770,17770,17770,17770,17770,17770,17770,17770,17770,17809, 17818,17851,17806, 4210,17838, 4210,17810, 4210,17816,17845, 4210,18189,17817,17890,17837, 4210,17834,17809, 4210,17806, 4210,17819, 4210,17835, 4210, 4210, 4210, 4228,17847,17809, 17818,17874,17838,17834, 4228,17846,17806,17890,17838,17770, 17845,17834,17851,17845,17770,17849,17817,17868, 4228, 4228, 4228,17819, 4228,17835,17834, 4228,17835,17845,17847,17856, 4228,17874,17818, 4228,17860, 4228,17846, 4228,17809, 4228, 4228, 4228, 4230,17854,17985,17849,17868,17819,17845, 4230, 17867,17854,17858,17846,17856,17819,17859,17847,17855,17858, 17870,17846,17849, 4230,17858, 4230,17860, 4230,17859,17855, 4230,17859,18376,17985,17846, 4230, 4230,17863, 4230,17864, 4230,17873, 4230,17908, 4230, 4230, 4230, 4231,17842,17870, 17867,17908,17871,17872, 4231,17863,17912,17864,17842,17842, 17842,17842,17842,17842,17842,17842,17842,17863, 4231,17864, 4231,17873, 4231,17870,17865, 4231, 4231,17861,17861,17842, 4231,17871,17872, 4231,17875, 4231,17865, 4231,17912, 4231, 4231, 4231, 4232,17876,17864,17861,18050,17886,18376, 4232, 17873,17877,17886,17941,17886,17886,17897,17861,18050,17878, 17871,17865,17891, 4232,17875, 4232,17885, 4232,17876,17892, 4232,17885,17894,17876,17872, 4232, 4232,17897, 4232,17891, 4232,17877, 4232,17861, 4232, 4232, 4232, 4233,17900,17878, 17909,17861,17901,17902, 4233,17941,17891,17894,17875,17892, 17891,17909,17905,17899,17885,17885,17893,17892, 4233,18632, 4233,18664, 4233,17898,17898, 4233,17877,17918,17902,17900, 4233,17910,17901, 4233,17878, 4233,17918, 4233, 4233, 4233, 4233, 4233, 4234,17893,17899,17903,17900,17917,17903,17893, 17905,17913,17899,17898,17919,17920,17910,17901,17916,17917, 17926,17899,17921,17900, 4234,17903,17915,17900,17915,17913, 17898, 4234,17923,17922,17922,17925,17916,17936,17938,17919, 17920,17913,17899,17924,17915, 4234,17927, 4234,17916, 4234, 17926, 4234, 4234,17926,17921,17928,17915, 4234,17940,17917, 4234,17923, 4234,17922, 4234,17925, 4234, 4234, 4234, 4235, 17915,17942,17924,17945,17948,17913,17927,17943,17936,17944, 17946,17938,17952,17940,17923,17928,17972,17957,17916,17964, 17925, 4235,17954,17924,17972,17955,17943,17948, 4235,18383, 4235,17956,18383,18054,17942,17944,17945,17961,17948,17954, 17944,17959, 4235,17955, 4235,18054, 4235,17927,17960, 4235, 17943,17957,17964,17946, 4235,17955,17961, 4235,17956, 4235, 17954, 4235,17954, 4235, 4235, 4235, 4236,17956,17961,17962, 17952,17959,17963,17965,17952,17952,17967,17966,17960,17969, 17973,17967,17968,17977,17978,17961,17983,17974, 4236,17984, 17965,17973,17978,18047,18090, 4236,17986,17979,18090,18742, 17962,18047,17963,17966,17969,17965,17961,17967,17968, 4236, 17983, 4236,17974, 4236,17987,17979, 4236,17962,17977,17980, 17968, 4236, 4236,17984, 4236,17986, 4236,17979, 4236,17981, 4236, 4236, 4236, 4237,18013,18032,17963,17980,17962,18024, 17962,17981,17988,17987,17989,17990,18015,17991,17986,17980, 18024,18053,17992,18137,18015, 4237,18013,18015,18058,18016, 18014,17981, 4237,18016,17987,18032,17979,18013,18025,17980, 18016,17988,18034,18385,17989,17990, 4237,17991, 4237,18025, 4237,17990,17992, 4237,18020,18058,18014,18137, 4237, 4237, 18014, 4237,18049, 4237,18053, 4237,18021, 4237, 4237, 4237, 4238,18014,18018,17988,18385,18017,18021,18021,17989,18017, 18020,17991,18034,18018,18020,18018,17992,18049,18173,18066, 18017,17992, 4238,18173,18017,18020,18033,18027,18020, 4238, 17996,17996,17996,17996,17996,17996,17996,17996,17996,18019, 18019,18031,18036, 4238,18019, 4238,18574, 4238,18022,18066, 4238,18019,18022,18033,18033, 4238,18026,18023, 4238,18026, 4238,18060, 4238,18022, 4238, 4238, 4238, 4239,18023,18039, 18026,18031,18022,18023,18028,18028,18027,18574,18026,18027, 18037,18037,18036,18028,18027,18055,18028,18027,18031, 4239, 18041,17996,18042,18038,18038,18042, 4239,18044,18125,18039, 18043,18060,18048,18055,18057,18319,18125,18041,18044,18031, 4239,18037, 4239,18048, 4239,18055,18057, 4239,18042,18041, 18319,18062, 4239, 4239,18038, 4239,18043, 4239,18037, 4239, 18051, 4239, 4239, 4239, 4240,18043,18052,18051,18059,18039, 18055,18038,18051,18061,18063,18057,18056,18127,18052,18037, 18062,18052,18097,18064,18085,18069, 4240,18065,18067,18085, 18059,18069,18038, 4240,18056,18059,18129,18068,18061,18168, 18747,18085,18127,18063,18168,18126,18056, 4240,18168, 4240, 4240, 4240,18064,18089, 4240,18062,18126,18065,18067, 4240, 18082,18129, 4240,18753, 4240,18093, 4240,18068, 4240, 4240, 4240, 4241, 4241,18083,18097,18056,18094, 4241,18083,18097, 4241,18064,18067,18063,18083,18083,18082,18084,18086,18082, 18084,18097,18115,18086,18082,18084,18088,18065,18088,18119, 18086,18089, 4241,18088,18082,18089,18089,18092,18068, 4241, 18089,18084,18241,18093,18099, 4241,18241,18093,18088,18113, 18095,18118,18093, 4241,18094, 4241,18188, 4241,18094,18110, 4241,18098,18115,18094,18100, 4241,18122,18092, 4241,18119, 4241,18105, 4241,18120, 4241, 4241, 4241, 4242, 4242,18113, 18103,18118,18102, 4242, 4242,18188, 4242,18111,18110,18092, 18120,18373,18122,18200,18092,18095,18099,18112,18120,18122, 18099,18099,18095,18095,18200,18110,18373,18095, 4242,18098, 18106,18107,18130,18098,18111, 4242,18100,18111,18098,18095, 18098,18100,18134,18105,18112,18100,18110,18112,18105, 4242, 18102, 4242,18103, 4242,18102,18102, 4242,18103,18103,18102, 18136, 4242,18130,18111, 4242,18117, 4242,18117, 4242,18134, 4242, 4242, 4242, 4258,18201,18106,18107,18106,18121,18140, 18135,18116,18106,18107,18121,18131,18106,18106,18107,18133, 18136,18107,18138,18106,18141, 4258,18117,18143,18165,18201, 18107,18133, 4258,18131,18121,18165,18155,18135,18140,18116, 18135,18199,18116,18117,18155,18131, 4258,18167, 4258,18199, 4258,18138, 4258, 4258,18141,18133,18211,18143, 4258,18116, 18155, 4258,18140, 4258,18117, 4258, 4258, 4258, 4258, 4258, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 18116,18265,18139,18823,18138,18131, 4266, 4266, 4266, 4266, 4266, 4266,18166,18193,18166,18166,18211,18170,18144,18145, 18166,18167,18170,18166,18172,18172,18167,18170,18265,18172, 18166,18139, 4266, 4266, 4266, 4266, 4266, 4266, 4268, 4268, 4268, 4268, 4268, 4268, 4268, 4268, 4268, 4268,18144,18145, 18196,18260,18193,18157, 4268, 4268, 4268, 4268, 4268, 4268, 18139,18157,18194,18169,18157,18174,18260,18171,18169,18171, 18174,18144,18169,18174,18171,18176,18196,18157,18260,18194, 4268, 4268, 4268, 4268, 4268, 4268, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269,18132,18194,18204,18312,18312, 18158, 4269, 4269, 4269, 4269, 4269, 4269, 4269,18158,18175, 18178,18237,18309,18132,18175,18178,18158,18176,18181,18237, 18219,18204,18176,18181,18158,18132,18219,18142, 4269, 4269, 4269, 4269, 4269, 4269, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4272,18186,18323,18323,18309,18161,18132, 4272, 4272, 4272, 4272, 4272, 4272,18161,18142,18185,18179, 18180,18161,18179,18142,18179,18180,18210,18834,18250,18272, 18179,18180,18161,18250,18186,18185, 4272, 4272, 4272, 4272, 4272, 4272, 4273, 4273, 4273, 4273, 4273, 4273, 4273, 4273, 4273,18142,18190,18837,18272,18210,18185,18159, 4273, 4273, 4273, 4273, 4273, 4273,18159,18159,18186,18182,18262,18159, 18208,18182,18182,18208,18192,18192,18182,18262,18154,18182, 18323,18159,18208,18190, 4273, 4273, 4273, 4273, 4273, 4273, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 18190,18328,18358,18358,18192,18162, 4281, 4281, 4281, 4281, 4281, 4281,18162,18162,18238,18190,18238,18162,18290,18162, 18264,18190,18238,18154,18838,18839,18187,18290,18328,18162, 18192,18154, 4281, 4281, 4281, 4281, 4281, 4281, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282,18154,18191,18212, 18264,18271,18163,18187, 4282, 4282, 4282, 4282, 4282, 4282, 18163,18187,18271,18255,18163,18239,18239,18195,18214,18214, 18216,18239,18286,18239,18239,18492,18163,18388,18212,18191, 4282, 4282, 4282, 4282, 4282, 4282, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290,18191,18195,18214,18336, 18216,18286, 4290, 4290, 4290, 4290, 4290, 4290,18266,18216, 18336,18212,18270,18255,18492,18388,18218,18191,18255,18177, 18270, 5073,18177,18195,18286,18266,18207,18177, 4290, 4290, 4290, 4290, 4290, 4290, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291,18177,18207,18206,18218,18207,18266,18273, 4291, 4291, 4291, 4291, 4291, 4291,18207,18274,18280,18156, 18316,18273,18156,18206,18274,18277,18259,18156,18419,18274, 18280,18419,18316,18156,18218,18206, 4291, 4291, 4291, 4291, 4291, 4291, 4296,18156, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296,18213,18206,18259,18277,18242,18308, 4296, 4296, 4296, 4296, 4296, 4296,18242,18258,18258,18258, 18258,18258,18258,18258,18258,18258,18308,18276,18267, 5071, 5069, 5066,18242,18213,18267,18259, 4296, 4296, 4296, 4296, 4296, 4296, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303,18215,18215,18267,18275,18243,18276, 4303, 4303, 4303, 4303, 4303, 4303,18243,18310,18377,18275,18213,18311, 18275,18313,18209,18281,18283,18310,18281,18377,18258,18311, 18243,18313,18215,18287, 4303, 4303, 4303, 4303, 4303, 4303, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304,18209, 18217,18278,18314,18281,18283,18209, 4304, 4304, 4304, 4304, 4304, 4304,18315,18287,18320,18456,18215,18335,18374,18278, 18284,18288,18314,18289,18320,18335,18315,18456, 5065,18315, 18217,18278, 4304, 4304, 4304, 4304, 4304, 4304, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309,18263,18284, 18318,18288,18288,18289, 4309, 4309, 4309, 4309, 4309, 4309, 18278,18374,18381,18397,18217,18380,18382,18454,18318,18325, 18284,18342,18325,18337,18397,18380,18382,18381,18454,18263, 4309, 4309, 4309, 4309, 4309, 4309, 4313, 4313, 4313, 4313, 4313, 4313, 4313, 4313, 4313, 4313,18263,18279,18337,18325, 18342,18297, 4313, 4313, 4313, 4313, 4313, 4313,18263,18297, 18384,18433,18396, 5051,18440,18279,18324,18263,18384,18326, 18396,18433,18440,18378,18296,18297,18461,18279, 4313, 4313, 4313, 4313, 4313, 4313, 4317, 4317, 4317, 4317, 4317, 4317, 4317, 4317, 4317, 4317,18285,18378,18324,18329,18299,18326, 4317, 4317, 4317, 4317, 4317, 4317,18299, 4986,18453,18532, 18461,18474,18329,18339,18331,18340,18453,18296,18434,18474, 18486,18324,18299,18285,18329,18296, 4317, 4317, 4317, 4317, 4317, 4317, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318,18296,18330,18339,18331,18340,18303,18304, 4318, 4318, 4318, 4318, 4318, 4318,18303,18304,18486,18285,18303,18434, 18304,18331,18340,18390,18330,18532,18390,18445,18530,18330, 18303,18304,18507,18356, 4318, 4318, 4318, 4318, 4318, 4318, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 18341,18398,18348,18390,18317,18332, 4323, 4323, 4323, 4323, 4323, 4323,18317,18356,18332,18488,18356,18348,18445, 4985, 18530, 4975,18507,18488,18352,18341,18398,18317,18317,18348, 18341,18332, 4323, 4323, 4323, 4323, 4323, 4323, 4327, 4327, 4327, 4327, 4327, 4327, 4327, 4327, 4327, 4327,18344,18346, 18350,18344,18346,18352, 4327, 4327, 4327, 4327, 4327, 4327, 18487,18609,18502,18501,18609,18350,18344,18346,18354,18354, 18487,18501,18350,18502,18580,18393,18393,18350,18344,18346, 4327, 4327, 4327, 4327, 4327, 4327, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328,18347,18349,18354,18347, 18349,18393, 4328, 4328, 4328, 4328, 4328, 4328,18531,18546, 4974,18523,18580,18547,18347,18349,18531,18546,18392,18359, 18420,18347,18387,18523,18547,18359,18347,18349, 4328, 4328, 4328, 4328, 4328, 4328, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330,18353,18355,18387,18392,18362,18387, 4330, 4330, 4330, 4330, 4330, 4330,18362,18588,18748,18457, 18626,18362, 4972,18748,18392,18588,18457,18300,18626,18300, 18403,18457,18362,18353,18355,18300, 4330, 4330, 4330, 4330, 4330, 4330, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335,18300,18359,18357,18420,18403,18364,18363, 4335, 4335, 4335, 4335, 4335, 4335,18364,18363,18534,18353,18589,18355, 18363,18534,18301,18414,18749, 4966, 4965,18749,18364,18589, 18364,18363,18534,18357, 4335, 4335, 4335, 4335, 4335, 4335, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 18343,18386,18414,18425,18371,18368, 4336, 4336, 4336, 4336, 4336, 4336,18371,18368,18439,18301,18368,18357,18343,18660, 4963,18770, 4957,18301,18357,18770,18414,18660,18371,18368, 18343,18386, 4336, 4336, 4336, 4336, 4336, 4336, 4341,18301, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341,18164, 18302,18164,18436,18302,18343,18351,18305,18164,18302,18438, 18164, 4341,18305,18458,18305,18386,18449,18164,18619,18425, 18818,18436,18591,18164,18302,18458,18438,18619,18458,18818, 18305,18439,18351,18449,18591, 4341, 4342, 4342,18351, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4347,18450,18412,18476,18450, 18327,18649,18391,18409, 4347, 4347, 4347, 4347, 4347, 4347, 4347, 4347, 4347,18306,18437,18437, 4956, 4954,18409,18306, 4951,18306,18450,18345,18412, 4347,18345,18307,18360,18391, 18409,18327,18391,18412,18360,18649,18360,18306, 4347, 4351, 4351,18345, 4351, 4351, 4351, 4351, 4351, 4351,18327, 4351, 4351,18366,18360,18345,18366,18401,18327,18415,18455,18366, 4351, 4351, 4351, 4351, 4351, 4351, 4351,18345,18361,18327, 18307,18476, 4351,18533,18444,18366,18402,18307,18307,18470, 18361,18437,18307,18455, 4950,18401,18415,18765,18361, 4351, 4351, 4351, 4352, 4352,18307, 4352, 4352, 4352, 4352, 4352, 4352,18444, 4352, 4352,18361,18447,18402,18411,18470,18402, 18389,18416,18415, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352,18401,18411,18365,18572, 4352, 4948,18765, 4944,18470, 18370,18365,18447,18444,18411,18370,18365,18411,18370,18533, 18416,18389, 4352, 4352, 4352, 4356, 4356,18365, 4356, 4356, 4356, 4356, 4356, 4356,18370, 4356, 4356,18367,18389,18603, 18448,18490,18404,18367,18443,18367, 4356, 4356, 4356, 4356, 4356, 4356, 4356,18416,18603,18389,18372,18367, 4356,18389, 18404,18367, 4943,18404,18372, 4941,18603,18448,18506,18372, 18572,18490,18404,18448,18443, 4356, 4356, 4356, 4357, 4357, 18372, 4357, 4357, 4357, 4357, 4357, 4357,18460, 4357, 4357, 18405,18406,18408,18405,18406,18408,18418,18462,18506, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4939,18405,18406, 18408, 4357,18406,18417,18443,18462,18422,18460,18614,18468, 18405,18406,18408,18460,18422,18408,18418,18462, 4357, 4357, 4357, 4358, 4358,18410, 4358, 4358, 4358, 4358, 4358, 4358, 18422, 4358, 4358,18417,18410,18459,18468,18468,18410,18614, 18517,18417, 4358, 4358, 4358, 4358, 4358, 4358, 4358, 4938, 18410, 4936, 4924,18473, 4358,18418,18421,18421,18421,18421, 18421,18421,18421,18421,18421,18459,18423,18517,18427,18427, 18517, 4358, 4358, 4358, 4359, 4359,18427, 4359, 4359, 4359, 4359, 4359, 4359,18473, 4359, 4359,18423,18491,18463,18467, 18503,18463,18427,18576,18423, 4359, 4359, 4359, 4359, 4359, 4359, 4359, 4359,18459,18467,18426,18463, 4359,18473, 4889, 18423,18471,18430,18426,18491,18503,18467,18426,18463,18716, 18430,18421,18467,18475, 4359, 4359, 4359, 4360, 4360,18426, 4360, 4360, 4360, 4360, 4360, 4360,18430, 4360, 4360,18435, 18471,18407,18475,18491,18407,18446,18716,18435, 4360, 4360, 4360, 4360, 4360, 4360, 4360,18407,18429,18431,18469,18407, 4360,18561,18435,18435,18429,18431,18432,18576, 4838,18429, 18431,18407, 4360,18471,18432,18469,18446, 4360, 4360, 4360, 18429,18431,18466,18651,18475,18407,18432,18469,18561,18494, 18432,18466,18494,18446,18480,18651,18561,18466,18480, 4360, 4364, 4364,18480, 4364, 4364, 4364, 4364, 4364, 4364,18466, 4364, 4364,18465,18472,18446,18465,18446,18464,18480,18494, 18464, 4364, 4364, 4364, 4364, 4364, 4364, 4364, 4837,18464, 18465,18472, 4809, 4364,18627,18464,18497,18495,18482,18497, 18495,18505,18465,18472,18482,18627,18482,18464,18465,18685, 4364, 4364, 4364, 4365, 4365,18495, 4365, 4365, 4365, 4365, 4365, 4365,18482, 4365, 4365,18537,18497,18495,18489,18715, 18521,18505,18522,18478, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365,18481,18481,18477,18682, 4365,18685,18715, 4808, 18537,18478,18477,18483,18485,18496,18505,18477,18496,18478, 18521,18485,18522, 4365, 4365, 4365, 4368, 4368,18477, 4368, 4368, 4368, 4368, 4368, 4368,18478, 4368, 4368,18508,18489, 18496,18508,18518,18518,18489,18496,18481, 4368, 4368, 4368, 4368, 4368, 4368, 4368,18481,18489,18508,18483,18683, 4368, 18522, 4740,18519,18644,18661,18483,18498,18553,18508,18520, 18481,18682,18518,18683,18498,18661, 4368, 4368, 4368, 4369, 4369,18483, 4369, 4369, 4369, 4369, 4369, 4369,18485, 4369, 4369,18519,18498,18493,18493,18644,18510,18553,18520,18510, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4369,18577,18577, 18484, 4735, 4369, 4520,18510, 4511,18592,18577,18484,18520, 18519,18535,18535,18592,18493,18484,18510,18548,18592, 4369, 4369, 4369, 4371, 4371,18484, 4371, 4371, 4371, 4371, 4371, 4371,18493, 4371, 4371,18540,18511,18512,18540,18511,18512, 18566,18535,18548, 4371, 4371, 4371, 4371, 4371, 4371, 4371, 18526, 4510,18493,18511,18512, 4371,18695,18579,18693,18514, 18511,18536,18514,18526,18540,18511,18512,18535,18695,18693, 18566,18526, 4371, 4371, 4371, 4372, 4372,18514, 4372, 4372, 4372, 4372, 4372, 4372,18579, 4372, 4372,18526,18536,18514, 18541,18513, 4497,18541,18513,18515, 4372, 4372, 4372, 4372, 4372, 4372, 4372, 4372,18696,18513,18515,18543, 4372,18513, 18515,18696,18509,18536,18542,18509,18696,18525,18579,18543, 18541,18513,18515,18541,18525, 4372, 4372, 4372, 4373, 4373, 18509, 4373, 4373, 4373, 4373, 4373, 4373,18567, 4373, 4373, 18516,18542,18509,18516,18551,18543,18538,18542,18538, 4373, 4373, 4373, 4373, 4373, 4373, 4373,18509,18575,18516,18750, 18578, 4373,18575,18539, 4496,18750,18539,18567,18525,18594, 18516,18563,18562,18575,18551, 4373,18525,18538, 4373, 4373, 4373,18524,18524,18524,18524,18524,18524,18524,18524,18524, 18578,18590,18525,18539,18538,18551,18771,18528,18562,18594, 18563,18562, 4373, 4374, 4374,18528, 4374, 4374, 4374, 4374, 4374, 4374,18528, 4374, 4374,18538,18590,18581,18560,18554, 18557,18528,18554,18557, 4374, 4374, 4374, 4374, 4374, 4374, 4374,18539,18563,18560,18527,18771, 4374,18554,18557, 4478, 18594, 4477,18527,18529,18692,18560,18524,18527,18581,18554, 18557,18560,18692, 4374, 4374, 4374, 4375, 4375,18527, 4375, 4375, 4375, 4375, 4375, 4375,18581, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375,18723,18593,18581,18529,18617, 4375, 18697,18552,18723,18617,18529,18529, 4475,18593,18582,18529, 18593,18582,18697,18796,18617,18697, 4375, 4375, 4375, 4377, 4377,18529, 4377, 4377, 4377, 4377, 4377, 4377,18564, 4377, 4377,18552,18556,18559,18601,18556,18559,18552,18582,18596, 4377, 4377, 4377, 4377, 4377, 4377, 4377,18569,18552,18601, 18556,18559, 4377,18796,18565,18585,18583,18564,18605,18583, 18606,18601,18556,18559,18601,18556,18569,18582,18596, 4377, 4377, 4377, 4378, 4378,18569, 4378, 4378, 4378, 4378, 4378, 4378,18565, 4378, 4378,18565,18585,18583,18605,18622,18606, 18569,18564,18583, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 4378,18615,18615, 4469, 4468, 4378, 4466, 4460, 4459, 4457, 18615,18585,18605,18606,18621,18622,18622,18621,18565,18570, 18628,18571, 4378, 4378, 4378, 4379, 4379,18570, 4379, 4379, 4379, 4379, 4379, 4379,18570, 4379, 4379,18558,18584,18555, 18558,18641,18555,18570,18621,18628, 4379, 4379, 4379, 4379, 4379, 4379, 4379,18555,18571,18558,18573,18555, 4379,18595, 18653,18662,18571,18573,18573,18584,18604,18558,18573,18555, 18641,18694, 4379,18558,18584, 4379, 4379, 4379,18571,18597, 18573,18558,18597,18555,18598,18607,18662,18598,18616,18595, 18653,18597, 4454,18616,18641,18604,18694,18597,18595, 4379, 4393, 4393,18598, 4393, 4393, 4393, 4393, 4393, 4393,18597, 4393, 4393,18630,18602,18598,18607,18600,18618,18656,18600, 18598, 4393, 4393, 4393, 4393, 4393, 4393, 4393,18602, 4453, 18604, 4451,18608, 4393,18600,18616,18623,18631,18717,18623, 18602,18698,18630,18612,18618,18656,18600,18607,18656,18602, 4393, 4393, 4393, 4394, 4394,18600, 4394, 4394, 4394, 4394, 4394, 4394,18608, 4394, 4394,18623,18717,18631,18631,18657, 18620,18698,18711,18620, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394,18630,18610,18618, 4447, 4394,18724,18608,18639, 18599,18610,18639,18599,18612,18657,18608,18711,18724,18610, 18620,18657,18612, 4394, 4394, 4394, 4408, 4408,18599, 4408, 4408, 4408, 4408, 4408, 4408,18610, 4408, 4408,18612,18639, 18599,18642,18634,18599, 4446,18634,18638, 4408, 4408, 4408, 4408, 4408, 4408, 4408,18599, 4444,18620,18611,18642, 4408, 18634,18638,18665,18775,18611,18611,18640,18643,18652,18611, 18642,18652,18634,18638,18638,18775, 4408, 4408, 4408, 4409, 4409,18611, 4409, 4409, 4409, 4409, 4409, 4409,18675, 4409, 4409,18636,18665,18654,18636,18640,18654,18643,18652, 4442, 4409, 4409, 4409, 4409, 4409, 4409, 4409, 4409, 4441,18636, 18613,18648, 4409, 4439,18654, 4432,18648,18675,18613, 4431, 18665,18636,18636,18654,18613,18613,18643,18648,18640, 4409, 4409, 4409, 4429, 4429,18613, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4430,18647,18667,18673,18633,18667,18738,18633,18666, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430,18633, 18678,18667,18646,18633,18713,18768,18647,18794,18673, 4426, 18646,18673,18713,18667,18647,18633,18646,18646, 4423,18666, 4419,18738,18666, 4414,18650,18816,18646, 4405,18713,18678, 18647, 4402, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4437, 4437, 4437, 4437, 4437, 4437, 4437, 4437, 4437, 4437,18635,18637,18671, 18635, 4398, 4388, 4437, 4437, 4437, 4437, 4437, 4437,18768, 18794, 4383,18650,18637,18671,18635,18677,18650,18676,18676, 18816,18684,18725,18684, 4332,18637,18671,18635,18650, 4437, 4437, 4437, 4437, 4437, 4437, 4438, 4438, 4438, 4438, 4438, 4438, 4438, 4438, 4438, 4438,18674,18677,18725,18676,18671, 18684, 4438, 4438, 4438, 4438, 4438, 4438,18645, 4331,18637, 4329,18635,18740, 4320, 4319,18645,18740, 4306, 4305, 4293, 18740,18677,18669,18645,18674,18669, 4292, 4438, 4438, 4438, 4438, 4438, 4438, 4440,18655,18668,18740,18655,18668,18645, 18669,18719, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440,18672,18669,18668,18689,18680,18719,18674, 4440, 4440, 4440, 4440, 4440, 4440,18655,18668,18672, 4284,18719, 4283, 18655,18668,18707,18686,18718,18669,18686,18718,18672,18668, 18689,18672,18743,18689, 4440, 4440, 4440, 4440, 4440, 4440, 4443, 4443, 4443, 4443, 4443, 4443, 4443, 4443, 4443, 4443, 18704,18707,18655,18686,18718,18718, 4443, 4443, 4443, 4443, 4443, 4443,18679,18680, 4275,18704, 4274,18743,18680,18708, 18708, 4271,18707,18679, 4270, 4267,18688,18704, 4251,18680, 4229,18679, 4443, 4443, 4443, 4443, 4443, 4443, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445,18679,18702,18708, 18732,18702,18681,18688, 4445, 4445, 4445, 4445, 4445, 4445, 18681,18688,18704,18681, 4164,18732,18702,18776,18751,18687, 18745,18699,18687,18745,18776, 4163,18681,18732,18702,18776, 4445, 4445, 4445, 4445, 4445, 4445, 4450, 4450, 4450, 4450, 4450, 4450, 4450, 4450, 4450, 4450,18709,18706,18751,18687, 18745,18699, 4450, 4450, 4450, 4450, 4450, 4450,18687,18699, 4161, 4143, 4142,18702, 4140,18732,18762,18754,18720,18734, 18741,18761,18709,18842,18706,18709,18741,18710, 4450, 4450, 4450, 4450, 4450, 4450, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452,18720,18720,18762,18734,18754,18761,18842, 4452, 4452, 4452, 4452, 4452, 4452,18706,18710,18714,18714, 18714,18714,18714,18714,18714,18714,18714, 4099,18864,18762, 18774,18746, 4093,18761,18727,18734, 4452, 4452, 4452, 4452, 4452, 4452, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455,18710,18727,18741,18733,18864,18774,18746, 4455, 4455, 4455, 4455, 4455, 4455,18727,18746, 4088, 3923, 3922,18733, 18774,18744, 3905, 3903,18744,18764, 3902, 3892, 3891, 3889, 18712,18733,18714,18714, 4455, 4455, 4455, 4455, 4455, 4455, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 18728,18744,18759,18728,18744,18764, 4456, 4456, 4456, 4456, 4456, 4456,18777, 3872, 3871, 3858, 3857,18759,18728,18786, 18786, 3845, 3844,18712,18777, 3836,18773,18777, 3835,18759, 18728,18712, 4456, 4456, 4456, 4456, 4456, 4456, 4458, 4458, 4458, 4458, 4458, 4458, 4458, 4458, 4458,18712,18729,18786, 18773,18729,18767,18773, 4458, 4458, 4458, 4458, 4458, 4458, 18767, 3827, 3826, 3823,18728,18767,18729,18759, 3822, 3819, 18772,18789, 3816,18772, 3815,18767,18767, 3733,18729,18729, 4458, 4458, 4458, 4458, 4458, 4458, 4461, 4461, 4461, 4461, 4461, 4461, 4461, 4461, 4461,18730,18731,18737,18730,18731, 18772,18789, 4461, 4461, 4461, 4461, 4461, 4461,18772, 3732, 3719, 3718, 3716,18730,18731, 3708, 3707,18670, 3705, 3700, 18670, 3699,18810, 3697, 3693,18730,18731,18737, 4461, 4461, 4461, 4461, 4461, 4461, 4462,18670, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 4462,18735,18670,18736,18784, 18670,18810, 4462, 4462, 4462, 4462, 4462, 4462, 3692, 3690, 18784, 3686, 3685,18730,18784, 3683, 3663,18737, 3656,18778, 3643, 3565,18810,18784, 3564,18735,18784,18736, 4462, 4462, 4462, 4462, 4462, 4462, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465,18763,18757,18778,18785,18757,18778, 4465, 4465, 4465, 4465, 4465, 4465, 3536, 3535, 3504,18735, 3478, 3336,18736,18757, 3334, 3326,18778,18811, 3315, 3314, 3299, 3298, 3279,18763,18785,18757, 4465, 4465, 4465, 4465, 4465, 4465, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467,18755,18758,18760,18755,18758,18760,18811, 4467, 4467, 4467, 4467, 4467, 4467, 3278, 3276,18763, 3268,18785,18755, 18758,18760, 3267,18757, 3265, 3260,18812, 3259,18795, 3257, 3253,18755,18758,18760, 4467, 4467, 4467, 4467, 4467, 4467, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470,18787, 18808,18788,18788,18798,18755,18812, 4470, 4470, 4470, 4470, 4470, 4470,18769,18769,18769,18769,18769,18769,18769,18769, 18769, 3252, 3250,18820, 3246, 3245, 3243,18808,18787, 3235, 18798,18788, 4470, 4470, 4470, 4470, 4470, 4470, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471,18779,18783, 18820,18779,18795,18795, 4471, 4471, 4471, 4471, 4471, 4471, 3234,18787,18798, 3166,18783,18788,18779,18808, 3149,18766, 18799, 3148,18841, 3133, 3132,18766,18783,18769,18779,18820, 4471, 4471, 4471, 4471, 4471, 4471, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474,18793,18790,18793,18841, 18799,18783, 4474, 4474, 4474, 4474, 4474, 4474, 3121, 3120, 3111, 3110, 3107,18779, 3087, 3085,18843,18793, 3084,18766, 3083, 3080, 3079, 3078,18841, 3077,18799,18766, 4474, 4474, 4474, 4474, 4474, 4474, 4476, 4476, 4476, 4476, 4476, 4476, 4476, 4476, 4476,18766,18797,18801,18843,18797,18790,18792, 4476, 4476, 4476, 4476, 4476, 4476,18790,18792, 3076,18793, 3075, 3074,18797, 3073, 3072, 3071, 3049,18819,18792, 3042, 18819,18843,18790,18792,18797,18801, 4476, 4476, 4476, 4476, 4476, 4476, 4479, 4479, 4479, 4479, 4479, 4479, 4479, 4479, 4479,18803,18802,18805,18803,18802,18805,18819, 4479, 4479, 4479, 4479, 4479, 4479, 2988,18813, 2963,18801, 2898,18803, 18802,18805, 2852,18821, 2842, 2787, 2777, 2776, 2766, 2756, 2740,18803,18802,18805, 4479, 4479, 4479, 4479, 4479, 4479, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 18831,18781,18821,18831,18781,18813, 4480, 4480, 4480, 4480, 4480, 4480, 2739,18813, 2724,18805, 2723, 2712,18809,18781, 18802, 2711,18700, 2702,18856,18700, 2701,18817,18821,18813, 18831,18781, 4480, 4480, 4480, 4480, 4480, 4480, 4483, 4483, 18700, 4483, 4483, 4483, 4483, 4483, 4483,18809, 4483, 4483, 18756,18856,18700,18756,18701,18700,18781,18701,18817, 4483, 4483, 4483, 4483, 4483, 4483, 4483,18700,18705,18756,18832, 18851, 4483,18701, 2698, 2687, 2686,18824, 2612, 2601, 2591, 18756,18809,18705,18756,18701,18856,18806, 2583, 4483, 4483, 4483, 2541,18814,18701,18705,18850, 2539,18850,18832,18851, 18817,18806,18705, 4483, 4484, 4484,18824, 4484, 4484, 4484, 4484, 4484, 4484,18806, 4484, 4484, 4484, 4484, 4484, 4484, 4484, 4484,18833,18852,18850, 4484, 4484, 4484, 4484, 4484, 4484, 4484,18807,18832, 2538,18824,18806, 4484,18815,18851, 2537, 2534,18814, 2533, 2532, 2531,18836,18807, 2530, 2529, 18814,18833,18852, 2528, 4484, 4484, 4484, 4486, 4486,18807, 4486, 4486, 4486, 4486, 4486, 4486,18814, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4486,18857,18852,18876, 4486, 4486, 4486, 4486, 4486, 4486, 4486,18833, 2527, 2526, 2525,18815, 4486,18807, 2420, 2418, 2417, 2416,18836,18815, 2364, 2308, 18835, 2297, 2296, 2257,18836,18857,18876, 4486, 4486, 4486, 4486, 4487, 4487,18815, 4487, 4487, 4487, 4487, 4487, 4487, 18836, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487,18857, 2246, 2236,18835, 2228, 4487,18876, 2212, 2211, 2193, 2061, 18835, 1938, 1937, 1921, 1910, 1909, 1834, 1833, 1573, 1571, 1570, 4487, 4487, 4487, 4488, 4488,18835, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494,18804,18825, 1558,18804,18825,18853, 4494, 4494, 4494, 4494, 4494, 4494, 1548,18853, 1547, 1482, 1481, 1480,18804,18825, 1349, 1345, 1303, 1261, 1251, 1242, 1241, 1187, 1185,18853,18804,18825, 4494, 4494, 4494, 4494, 4494, 4494, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 18826,18827,18828,18826,18827,18828,18804, 4495, 4495, 4495, 4495, 4495, 4495, 1183, 1083, 1080, 1034, 1015,18826,18827, 18828,18879,18825, 1003,18879, 993, 982, 981, 962, 920, 18826,18827,18828, 4495, 4495, 4495, 4495, 4495, 4495, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500,18829, 18849,18879,18863,18830,18854, 4500, 4500, 4500, 4500, 4500, 4500,18828,18854, 919,18829,18849, 784,18863,18830,18865, 18865,18827, 778, 774, 772, 771,18829,18849,18854,18863, 18830, 4500, 4500, 4500, 4500, 4500, 4500, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504,18840,18855,18865, 18840,18855,18849, 4504, 4504, 4504, 4504, 4504, 4504,18830, 770, 768, 767,18863, 766, 765,18829, 762, 761, 759, 18866,18866, 758, 756,18840, 755, 754,18840,18855, 4504, 4504, 4504, 4504, 4504, 4504, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509,18846,18848,18844,18846,18848,18844, 18866, 4509, 4509, 4509, 4509, 4509, 4509, 753, 752, 750, 18855, 748,18846,18848,18844,18840, 747,18847, 745,18868, 18847, 742, 741, 726,18846,18848,18844, 4509, 4509, 4509, 4509, 4509, 4509, 4514, 4514,18847, 4514, 4514, 4514, 4514, 4514, 4514,18901, 4514, 4514,18858,18868,18847,18858,18703, 18780,18844,18703,18780, 4514, 4514, 4514, 4514, 4514, 4514, 4514,18877,18867,18858,18880,18867, 4514,18703,18780,18901, 18902,18869,18847,18859,18900,18858,18859,18900,18870,18703, 18780,18870, 715, 4514, 4514, 4514,18868,18703,18780,18888, 18877,18859,18867, 696,18880, 695,18870,18887,18858, 690, 18902,18869, 689,18859,18900, 4514, 4517, 4517,18870, 4517, 4517, 4517, 4517, 4517, 4517, 4517, 4517, 4517,18888, 686, 18782,18867,18845,18782,18877,18845,18887, 4517, 4517, 4517, 4517, 4517, 4517, 4517,18782,18859,18845, 675,18782, 4517, 18845,18869, 4517, 674,18900, 628, 627,18782,18870,18845, 18782, 600,18845,18888, 590, 589, 4517, 4517, 4517, 4517, 552, 550, 549, 548,18782, 546,18845,18887, 4517, 4522, 4522, 545, 4522, 4522, 4522, 4522, 4522, 4522,18945, 4522, 4522,18871,18872,18862,18871,18872,18861, 544,18908,18861, 4522, 4522, 4522, 4522, 4522, 4522, 4522, 543,18862,18871, 18872, 541, 4522,18908,18861,18878,18889,18945,18878,18889, 18862,18871,18872, 540, 539,18908,18861, 538, 536, 4522, 4522, 4522, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524,18862, 4524, 4524,18881,18878,18889,18881,18860,18873, 18871,18860,18873, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 18861,18874,18881,18872, 535, 4524,18860,18873, 534, 533, 18878, 532, 531,18890,18881,18890,18874, 530,18860,18873, 18889, 529, 4524, 4524, 4524, 528, 527, 526,18874, 4524, 4551, 4551,18860, 4551, 4551, 4551, 4551, 4551, 4551,18860, 4551, 4551,18890,18882,18883,18875,18882,18883,18891,18891, 18885, 4551, 4551, 4551, 4551, 4551, 4551, 4551, 525,18873, 18875,18882,18883, 4551, 523,18885, 521,18884, 520,18874, 18884, 518,18875,18882,18883, 516, 515,18885,18891, 494, 4551, 4551, 4551, 4552, 4552,18884, 4552, 4552, 4552, 4552, 4552, 4552,18963, 4552, 4552,18891,18899,18884,18882,18930, 18886,18910,18910,18886, 4552, 4552, 4552, 4552, 4552, 4552, 4552, 4552,18875, 493,18883, 481, 4552,18885,18886,18911, 18892,18963,18911,18892, 480,18899, 474, 472,18930, 461, 18886,18910, 418, 4552, 4552, 4552, 4554, 4554,18892, 4554, 4554, 4554, 4554, 4554, 4554,18916, 4554, 4554,18894,18911, 18892,18894,18896,18897,18898,18897,18909, 4554, 4554, 4554, 4554, 4554, 4554, 4554,18892,18899,18894,18896,18930, 4554, 18897,18892, 402,18893,18916, 401,18893, 358,18894,18896, 357, 356,18897,18898, 355,18909, 4554, 4554, 4554, 4555, 4555,18893, 4555, 4555, 4555, 4555, 4555, 4555,18925, 4555, 4555,18925,18903,18893,18923,18903,18894,18896,18907,18916, 4555, 4555, 4555, 4555, 4555, 4555, 4555, 4555, 354,18898, 18903,18909, 4555,18907, 353, 352,18895,18895,18925,18895, 351, 350,18903,18923, 349,18907, 348,18893, 347, 4555, 4555, 4555, 4557, 4557,18895, 4557, 4557, 4557, 4557, 4557, 4557,18940, 4557, 4557,18904, 345,18895,18904,18905,18906, 18907,18905,18906, 4557, 4557, 4557, 4557, 4557, 4557, 4557, 18895,18923,18904,18903, 344, 4557,18905,18906, 342,18913, 18940, 341,18913, 340,18904,18935, 339, 338,18905,18906, 337, 336, 4557, 4557, 4557, 4558, 4558,18913, 4558, 4558, 4558, 4558, 4558, 4558,18940, 4558, 4558,18912, 335,18913, 18912,18917,18914,18905,18935,18914, 4558, 4558, 4558, 4558, 4558, 4558, 4558, 4558,18904,18912, 334, 333, 4558, 332, 18914, 331,18931,18918,18918,18915,18918,18912, 330,18935, 18917, 329,18914, 328, 327, 4558, 4558, 4558, 4559, 4559, 18915, 4559, 4559, 4559, 4559, 4559, 4559,18955, 4559, 4559, 18924,18931,18915,18918,18920,18920, 326,18920, 325, 4559, 4559, 4559, 4559, 4559, 4559, 4559,18914,18912,18922,18917, 18929, 4559,18920, 4559,18919,18921,18955,18919,18921,18924, 324,18934, 323,18922,18920,18929,18915,18931, 4559, 4559, 4559,18918,18919,18921,18936,18922,18934,18929,18920, 4559, 4561,18955, 322,18927,18919,18921,18927, 321,18934, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561,18941,18946, 18924,18927, 320,18936, 319, 303,18929, 301, 292, 274, 4561,18934,18919,18927,18926,18922, 264,18926,18950,18950, 242, 241, 239, 235, 213,18921, 203,18941,18946, 4561, 4565, 4565,18926, 4565, 4565, 4565, 4565, 4565, 4565,18936, 4565, 4565,18928,18933,18926,18928,18933,18937,18950,18959, 18937, 4565, 4565, 4565, 4565, 4565, 4565, 4565, 202, 201, 18928,18933,18941, 4565, 199,18937,18946,18932, 198,18926, 18932, 196,18928,18933, 195, 194, 192,18937,18959, 189, 4565, 4565, 4565, 4566, 4566,18932, 4566, 4566, 4566, 4566, 4566, 4566, 188, 4566, 4566,18942,18933,18932,18942,18944, 18938,18928,18959,18938, 4566, 4566, 4566, 4566, 4566, 4566, 4566, 4566, 187,18942,18944, 186, 4566,18937,18938, 185, 183, 182, 181,18939, 179,18942,18944, 178, 176, 175, 18938,18932, 174, 4566, 4566, 4566, 4570, 4570,18939, 4570, 4570, 4570, 4570, 4570, 4570, 173, 4570, 4570, 171,18943, 18939,18938,18943,18949,18942,18951, 170, 4570, 4570, 4570, 4570, 4570, 4570, 4570, 169, 167,18944,18943,18949, 4570, 166,18939, 165,18947,18967,18967,18947, 164, 163,18943, 18949, 162, 161, 160,18951, 146, 4570, 4570, 4570, 4571, 4571,18947, 4571, 4571, 4571, 4571, 4571, 4571, 138, 4571, 4571, 119,18948,18947,18967,18948,19003, 112,18954,18949, 4571, 4571, 4571, 4571, 4571, 4571, 4571, 4571, 111,18943, 18948,19003, 4571,18954,18951, 93,18947, 92, 90, 89, 78, 77,18948,19003, 76,18954, 54, 53, 48, 4571, 4571, 4571, 4574, 4574, 47, 4574, 4574, 4574, 4574, 4574, 4574, 46, 4574, 4574,18956,18960,18952,18956,18960,18952, 45,18948,18966, 4574, 4574, 4574, 4574, 4574, 4574, 4574, 18954, 44,18956,18960,18952, 4574, 43,18966, 42,18953, 41, 40,18953, 39,18956,18960,18952, 38, 37,18966, 36, 35, 4574, 4574, 4574, 4575, 4575,18953, 4575, 4575, 4575, 4575, 4575, 4575, 34, 4575, 4575,18952,18961,18953, 18973,18961,18957,18966,18960,18957, 4575, 4575, 4575, 4575, 4575, 4575, 4575, 4575,18956,18973,18961, 33, 4575, 32, 18957, 31, 30, 29, 28,18958, 27,18973,18961, 26, 25, 24,18957, 23,18953, 4575, 4575, 4575, 4577, 4577, 18958, 4577, 4577, 4577, 4577, 4577, 4577, 22, 4577, 4577, 18962,18971,18958,18962,18971,18964,18982,18982,18964, 4577, 4577, 4577, 4577, 4577, 4577, 4577,18957,18973,18962,18971, 21, 4577,18982,18964, 20,18968, 19, 18,18968, 17, 18962,18971, 16, 15,18982,18964,18958, 14, 4577, 4577, 4577, 4578, 4578,18968, 4578, 4578, 4578, 4578, 4578, 4578, 13, 4578, 4578,18972, 4,18968,18972,18969,18970, 3, 18969,18976, 4578, 4578, 4578, 4578, 4578, 4578, 4578, 4578, 18964,18972, 0,18970, 4578,18969,18976, 0, 0, 0, 0, 0, 0,18972, 0,18970, 0,18969,18976,18968, 0, 4578, 4578, 4578, 4579, 4579, 0, 4579, 4579, 4579, 4579, 4579, 4579, 4579, 4579, 4579,18970,18965,18969,18976, 18965,18975, 0,18985,18975, 4579, 4579, 4579, 4579, 4579, 4579, 4579, 4579,18972, 0,18965, 0, 4579,18985,18975, 0, 0, 0, 0, 0, 0, 0,18965, 0, 0, 18985,18975, 0, 0, 4579, 4579, 4579, 4579, 4579, 4580, 4580,18965, 4580, 4580, 4580, 4580, 4580, 4580, 0, 4580, 4580,18965,18975,18977, 0,18978,18977, 0,18978,18988, 4580, 4580, 4580, 4580, 4580, 4580, 4580, 0, 0,18985, 0,18977, 4580,18978,18988, 0,18979, 0, 0,18979, 0, 0, 0,18977, 0,18978,18988, 0, 0, 4580, 4580, 4580, 4581, 4581,18979, 4581, 4581, 4581, 4581, 4581, 4581, 0, 4581, 4581,18977,18980,18979,18991,18980,18983, 0,18988,18983, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 0,18991,18980, 0, 4581, 0,18983, 0,18974, 0, 0,18974, 0,18991,18980, 0, 0, 0,18983, 0, 0, 4581, 4581, 4581, 4584, 4584,18974, 4584, 4584, 4584, 4584, 4584, 4584, 0, 4584, 4584, 0,18984,18974, 18983,18984,18986, 0, 0,18986, 4584, 4584, 4584, 4584, 4584, 4584, 4584,18974,18991,18980,18984, 0, 4584, 0, 18986, 0, 0,18974, 0, 0, 0, 0,18984, 0, 0, 0,18986, 0, 0, 4584, 4584, 4584, 4585, 4585, 0, 4585, 4585, 4585, 4585, 4585, 4585, 0, 4585, 4585, 18990,18987,18992,18990,18987,18992, 0,18994,19000, 4585, 4585, 4585, 4585, 4585, 4585, 4585, 4585,18984,18990,18987, 18992, 4585,18994,19000, 0,18981, 0,18981,18981, 0, 18990,18987,18992, 0,18994,19000, 0, 0, 4585, 4585, 4585, 4587, 4587,18981, 4587, 4587, 4587, 4587, 4587, 4587, 0, 4587, 4587, 0,18994,18981,18987,18993,18995,19000, 18993,18995, 4587, 4587, 4587, 4587, 4587, 4587, 4587,18981, 18990,18992, 0, 0, 4587,18993,18995, 0,18996, 0, 0,18996, 0, 0, 0, 0, 0,18993,18995, 0, 0, 4587, 4587, 4587, 4588, 4588,18996, 4588, 4588, 4588, 4588, 4588, 4588, 0, 4588, 4588, 0,18993,18996,18997, 0,18998, 0,18995,18998, 4588, 4588, 4588, 4588, 4588, 4588, 4588, 4588, 0,18997, 0, 0, 4588, 0,18998, 0,18999, 0, 0,18999, 0,18997,18996, 0, 0, 0,18998, 0, 0, 4588, 4588, 4588, 4589, 4589,18999, 4589, 4589, 4589, 4589, 4589, 4589, 4589, 4589, 4589, 0, 18989,18999,18989,18989,19001,18997, 0,19001, 4589, 4589, 4589, 4589, 4589, 4589, 4589, 4589, 0, 0,18989, 0, 4589,18998,19001, 0, 0,18999, 0, 0, 0, 0, 18989, 0, 0, 0,19001, 0, 0, 4589, 4589, 4589, 4589, 4589, 4592, 4592,18989, 4592, 4592, 4592, 4592, 4592, 4592, 0, 4592, 4592,19001,19002,19004, 0,19002,19004, 0, 0, 0, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 0, 0, 0,19002,19004, 4592, 0, 0, 0,19005, 0, 0,19005, 0, 0,19002,19004, 0, 0, 0, 0, 0, 4592, 4592, 4592, 4593, 4593,19005, 4593, 4593, 4593, 4593, 4593, 4593, 0, 4593, 4593,19006, 0,19005, 19006, 0, 0, 0, 0,19004, 4593, 4593, 4593, 4593, 4593, 4593, 4593, 0, 0,19006, 0, 0, 4593, 0, 0, 0, 0,19005, 0, 0, 0,19006, 0, 0, 0, 0, 0, 0, 0, 4593, 4593, 4593, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4593, 4594, 4594, 0, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4595, 4595, 0, 4595, 4595, 4595, 4595, 4595, 4595, 4595, 4595, 4595, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4595, 4595, 4595, 4595, 4595, 4595, 4595, 0, 0, 0, 0, 0, 4595, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4595, 4595, 4595, 4595, 0, 0, 0, 0, 0, 4595, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4595, 4597, 4597, 4597, 4597, 4597, 4597, 4597, 4597, 4597, 0, 4597, 4597, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4597, 4597, 4597, 4597, 4597, 4597, 4597, 0, 0, 0, 0, 0, 4597, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4597, 4597, 4597, 4598, 4598, 4598, 4598, 4598, 4598, 4598, 4598, 4598, 0, 4598, 4598, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4598, 4598, 4598, 4598, 4598, 4598, 4598, 4598, 0, 0, 0, 0, 4598, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4598, 4598, 4598, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 0, 4599, 4599, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 0, 0, 0, 0, 0, 4599, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4599, 4599, 4599, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 0, 4600, 4600, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 0, 0, 0, 0, 4600, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4600, 4600, 4600, 4601, 4601, 4601, 4601, 4601, 4601, 4601, 4601, 4601, 0, 4601, 4601, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4601, 4601, 4601, 4601, 4601, 4601, 4601, 0, 0, 0, 0, 0, 4601, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4601, 0, 0, 0, 0, 4601, 4601, 4601, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4601, 4605, 4605, 0, 0, 0, 0, 0, 0, 0, 0, 4605, 4605, 4605, 4605, 4605, 4605, 4605, 4605, 4605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4605, 4607, 4607, 4607, 4607, 4607, 4607, 4607, 4607, 4607, 0, 4607, 4607, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4607, 4607, 4607, 4607, 4607, 4607, 4607, 0, 0, 0, 0, 0, 4607, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4607, 4607, 4607, 4608, 4608, 4608, 4608, 4608, 4608, 4608, 4608, 4608, 0, 4608, 4608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4608, 4608, 4608, 4608, 4608, 4608, 4608, 4608, 0, 0, 0, 0, 4608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4608, 4608, 4608, 4611, 4611, 4611, 4611, 4611, 4611, 4611, 4611, 4611, 0, 4611, 4611, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4611, 4611, 4611, 4611, 4611, 4611, 4611, 0, 0, 0, 0, 0, 4611, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4611, 4611, 4611, 4612, 4612, 4612, 4612, 4612, 4612, 4612, 4612, 4612, 0, 4612, 4612, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4612, 4612, 4612, 4612, 4612, 4612, 4612, 4612, 0, 0, 0, 0, 4612, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4612, 4612, 4612, 4614, 4614, 4614, 4614, 4614, 4614, 4614, 4614, 4614, 0, 4614, 4614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4614, 4614, 4614, 4614, 4614, 4614, 4614, 0, 0, 0, 0, 0, 4614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4614, 4614, 4614, 4615, 4615, 4615, 4615, 4615, 4615, 4615, 4615, 4615, 0, 4615, 4615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4615, 4615, 4615, 4615, 4615, 4615, 4615, 4615, 0, 0, 0, 0, 4615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4615, 4615, 4615, 4616, 4616, 4616, 4616, 4616, 4616, 4616, 4616, 4616, 0, 4616, 4616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4616, 4616, 4616, 4616, 4616, 4616, 4616, 0, 0, 0, 0, 0, 4616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4616, 0, 0, 4616, 4616, 4616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4616, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 0, 4617, 4617, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 0, 0, 0, 0, 0, 4617, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4617, 4617, 4617, 4618, 4618, 4618, 4618, 4618, 4618, 4618, 4618, 4618, 0, 4618, 4618, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4618, 4618, 4618, 4618, 4618, 4618, 4618, 4618, 0, 0, 0, 0, 4618, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4618, 4618, 4618, 4619, 4619, 4619, 4619, 4619, 4619, 4619, 4619, 4619, 0, 4619, 4619, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4619, 4619, 4619, 4619, 4619, 4619, 4619, 0, 0, 0, 0, 0, 4619, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4619, 4619, 4619, 4620, 4620, 4620, 4620, 4620, 4620, 4620, 4620, 4620, 0, 4620, 4620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4620, 4620, 4620, 4620, 4620, 4620, 4620, 4620, 0, 0, 0, 0, 4620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4620, 4620, 4620, 4621, 4621, 4621, 4621, 4621, 4621, 4621, 4621, 4621, 0, 4621, 4621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4621, 4621, 4621, 4621, 4621, 4621, 4621, 0, 0, 0, 0, 0, 4621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4621, 0, 0, 4621, 4621, 4621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4621, 4624, 4624, 0, 4624, 4624, 4624, 4624, 4624, 4624, 0, 4624, 4624, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 0, 0, 0, 0, 0, 4624, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4624, 4624, 4624, 0, 0, 0, 0, 4624, 4625, 4625, 0, 4625, 4625, 4625, 4625, 4625, 4625, 0, 4625, 4625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 0, 0, 0, 0, 0, 4625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4625, 4625, 4625, 4626, 4626, 0, 4626, 4626, 4626, 4626, 4626, 4626, 0, 4626, 4626, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 0, 0, 0, 0, 0, 4626, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4626, 4626, 4626, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4626, 4627, 4627, 0, 4627, 4627, 4627, 4627, 4627, 4627, 0, 4627, 4627, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 0, 0, 0, 0, 0, 4627, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4627, 4627, 4627, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4627, 4628, 4628, 0, 4628, 4628, 4628, 4628, 4628, 4628, 0, 4628, 4628, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 0, 0, 0, 0, 0, 4628, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4628, 4628, 4628, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4628, 4629, 4629, 0, 4629, 4629, 4629, 4629, 4629, 4629, 0, 4629, 4629, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 0, 0, 0, 0, 0, 4629, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4629, 4629, 4629, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4629, 4630, 4630, 0, 4630, 4630, 4630, 4630, 4630, 4630, 0, 4630, 4630, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 0, 0, 0, 0, 0, 4630, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4630, 4630, 4630, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4630, 4636, 4636, 0, 4636, 4636, 4636, 4636, 4636, 4636, 0, 4636, 4636, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 0, 0, 0, 0, 0, 4636, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4636, 4636, 4636, 4637, 4637, 0, 4637, 4637, 4637, 4637, 4637, 4637, 0, 4637, 4637, 0, 4637, 0, 0, 0, 0, 0, 0, 0, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 0, 0, 0, 0, 0, 4637, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4637, 4637, 4637, 4656, 4656, 0, 4656, 4656, 4656, 4656, 4656, 4656, 0, 4656, 4656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4656, 4656, 4656, 4656, 4656, 4656, 4656, 0, 0, 0, 0, 0, 4656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4656, 4656, 4656, 4657, 4657, 0, 4657, 4657, 4657, 4657, 4657, 4657, 0, 4657, 4657, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 0, 0, 0, 0, 4657, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4657, 4657, 4657, 4660, 4660, 0, 4660, 4660, 4660, 4660, 4660, 4660, 0, 4660, 4660, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4660, 4660, 4660, 4660, 4660, 4660, 4660, 0, 0, 0, 0, 0, 4660, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4660, 4660, 4660, 4661, 4661, 0, 4661, 4661, 4661, 4661, 4661, 4661, 0, 4661, 4661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4661, 4661, 4661, 4661, 4661, 4661, 4661, 0, 0, 0, 0, 0, 4661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4661, 0, 0, 0, 0, 4661, 4661, 4661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4661, 4662, 4662, 0, 4662, 4662, 4662, 4662, 4662, 4662, 0, 4662, 4662, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 0, 0, 0, 0, 4662, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4662, 4662, 4662, 4665, 4665, 0, 4665, 4665, 4665, 4665, 4665, 4665, 0, 4665, 4665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 0, 0, 0, 0, 0, 4665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4665, 4665, 4665, 4666, 4666, 0, 4666, 4666, 4666, 4666, 4666, 4666, 0, 4666, 4666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 0, 0, 0, 0, 4666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4666, 4666, 4666, 4668, 4668, 0, 4668, 4668, 4668, 4668, 4668, 4668, 0, 4668, 4668, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 0, 0, 0, 0, 0, 4668, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4668, 4668, 4668, 4669, 4669, 0, 4669, 4669, 4669, 4669, 4669, 4669, 0, 4669, 4669, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 0, 0, 0, 0, 4669, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4669, 4669, 4669, 4670, 4670, 0, 4670, 4670, 4670, 4670, 4670, 4670, 0, 4670, 4670, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 0, 0, 0, 0, 0, 4670, 4670, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4670, 4670, 4670, 0, 0, 0, 0, 0, 0, 0, 4670, 4671, 4671, 0, 4671, 4671, 4671, 4671, 4671, 4671, 0, 4671, 4671, 0, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 0, 0, 0, 0, 0, 4671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4671, 4671, 4671, 4672, 4672, 0, 4672, 4672, 4672, 4672, 4672, 4672, 0, 4672, 4672, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 0, 0, 0, 0, 0, 4672, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4672, 4672, 4672, 4673, 4673, 0, 4673, 4673, 4673, 4673, 4673, 4673, 0, 4673, 4673, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 0, 0, 0, 0, 0, 4673, 4673, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4673, 4673, 4673, 0, 0, 0, 0, 0, 0, 0, 4673, 4678, 4678, 0, 4678, 4678, 4678, 4678, 4678, 4678, 0, 4678, 4678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 0, 0, 0, 0, 0, 4678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4678, 4678, 4678, 4679, 4679, 0, 4679, 4679, 4679, 4679, 4679, 4679, 0, 4679, 4679, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 0, 0, 0, 0, 4679, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4679, 4679, 4679, 4683, 4683, 0, 4683, 4683, 4683, 4683, 4683, 4683, 0, 4683, 4683, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 0, 0, 0, 0, 0, 4683, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4683, 4683, 4683, 4684, 4684, 0, 4684, 4684, 4684, 4684, 4684, 4684, 0, 4684, 4684, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 0, 0, 0, 0, 4684, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4684, 4684, 4684, 4688, 4688, 0, 4688, 4688, 4688, 4688, 4688, 4688, 0, 4688, 4688, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 0, 0, 0, 0, 0, 4688, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4688, 4688, 4688, 4689, 4689, 0, 4689, 4689, 4689, 4689, 4689, 4689, 0, 4689, 4689, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 0, 0, 0, 0, 4689, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4689, 4689, 4689, 4692, 4692, 0, 4692, 4692, 4692, 4692, 4692, 4692, 0, 4692, 4692, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 0, 0, 0, 0, 0, 4692, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4692, 4692, 4692, 4693, 4693, 0, 4693, 4693, 4693, 4693, 4693, 4693, 0, 4693, 4693, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 0, 0, 0, 0, 4693, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4693, 4693, 4693, 4695, 4695, 0, 4695, 4695, 4695, 4695, 4695, 4695, 0, 4695, 4695, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 0, 0, 0, 0, 0, 4695, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4695, 0, 0, 0, 0, 0, 4695, 4695, 4695, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4695, 4696, 4696, 0, 4696, 4696, 4696, 4696, 4696, 4696, 0, 4696, 4696, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 0, 0, 0, 0, 0, 4696, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4696, 4696, 4696, 4697, 4697, 0, 4697, 4697, 4697, 4697, 4697, 4697, 0, 4697, 4697, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 0, 0, 0, 0, 4697, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4697, 4697, 4697, 4698, 4698, 0, 4698, 4698, 4698, 4698, 4698, 4698, 0, 4698, 4698, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4698, 4698, 4698, 4698, 4698, 4698, 4698, 0, 0, 0, 0, 0, 4698, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4698, 4698, 4698, 4699, 4699, 0, 4699, 4699, 4699, 4699, 4699, 4699, 0, 4699, 4699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 0, 0, 0, 0, 4699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4699, 4699, 4699, 4703, 4703, 0, 4703, 4703, 4703, 4703, 4703, 4703, 0, 4703, 4703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4703, 4703, 4703, 4703, 4703, 4703, 4703, 0, 0, 0, 0, 0, 4703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4703, 4703, 4703, 4704, 4704, 0, 4704, 4704, 4704, 4704, 4704, 4704, 0, 4704, 4704, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4704, 4704, 4704, 4704, 4704, 4704, 4704, 4704, 0, 0, 0, 0, 4704, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4704, 4704, 4704, 4707, 4707, 0, 4707, 4707, 4707, 4707, 4707, 4707, 0, 4707, 4707, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4707, 4707, 4707, 4707, 4707, 4707, 4707, 0, 0, 0, 0, 0, 4707, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4707, 4707, 4707, 4708, 4708, 0, 4708, 4708, 4708, 4708, 4708, 4708, 0, 4708, 4708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4708, 4708, 4708, 4708, 4708, 4708, 4708, 4708, 0, 0, 0, 0, 4708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4708, 4708, 4708, 4710, 4710, 0, 4710, 4710, 4710, 4710, 4710, 4710, 0, 4710, 4710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4710, 4710, 4710, 4710, 4710, 4710, 4710, 0, 0, 0, 0, 0, 4710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4710, 0, 0, 0, 0, 0, 4710, 4710, 4710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4710, 4711, 4711, 0, 4711, 4711, 4711, 4711, 4711, 4711, 0, 4711, 4711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4711, 4711, 4711, 4711, 4711, 4711, 4711, 0, 0, 0, 0, 0, 4711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4711, 4711, 4711, 4712, 4712, 0, 4712, 4712, 4712, 4712, 4712, 4712, 0, 4712, 4712, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4712, 4712, 4712, 4712, 4712, 4712, 4712, 4712, 0, 0, 0, 0, 4712, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4712, 4712, 4712, 4715, 4715, 0, 4715, 4715, 4715, 4715, 4715, 4715, 0, 4715, 4715, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4715, 4715, 4715, 4715, 4715, 4715, 4715, 0, 0, 0, 0, 0, 4715, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4715, 4715, 4715, 4715, 4716, 4716, 0, 4716, 4716, 4716, 4716, 4716, 4716, 0, 4716, 4716, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4716, 4716, 4716, 4716, 4716, 4716, 4716, 4716, 0, 0, 0, 0, 4716, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4716, 4716, 4716, 4716, 4719, 4719, 0, 4719, 4719, 4719, 4719, 4719, 4719, 0, 4719, 4719, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4719, 4719, 4719, 4719, 4719, 4719, 4719, 0, 0, 0, 0, 0, 4719, 0, 0, 4719, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4719, 4719, 4719, 4719, 4720, 4720, 0, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4722, 4722, 0, 4722, 4722, 4722, 4722, 4722, 4722, 0, 4722, 4722, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 0, 0, 0, 0, 0, 4722, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4722, 4722, 4722, 4722, 4723, 4723, 0, 4723, 4723, 4723, 4723, 4723, 4723, 0, 4723, 4723, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4723, 4723, 4723, 4723, 4723, 4723, 4723, 4723, 0, 0, 0, 0, 4723, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4723, 4723, 4723, 4723, 4724, 4724, 0, 4724, 4724, 4724, 4724, 4724, 4724, 0, 4724, 4724, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4724, 4724, 4724, 4724, 4724, 4724, 4724, 0, 0, 0, 0, 0, 4724, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4724, 4724, 4724, 4726, 4726, 0, 4726, 4726, 4726, 4726, 4726, 4726, 0, 4726, 4726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4726, 4726, 4726, 4726, 4726, 4726, 4726, 4726, 0, 0, 0, 0, 4726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4726, 4726, 4726, 4729, 4729, 0, 4729, 4729, 4729, 4729, 4729, 4729, 0, 4729, 4729, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4729, 4729, 4729, 4729, 4729, 4729, 4729, 0, 0, 0, 0, 0, 4729, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4729, 4729, 4729, 4729, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 0, 0, 0, 0, 0, 0, 4733, 4733, 4733, 4733, 4733, 4733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4733, 4733, 4733, 4733, 4733, 4733, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 0, 0, 0, 0, 0, 0, 4734, 4734, 4734, 4734, 4734, 4734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4734, 4734, 4734, 4734, 4734, 4734, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 0, 0, 0, 0, 0, 0, 4736, 4736, 4736, 4736, 4736, 4736, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4736, 4736, 4736, 4736, 4736, 4736, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 0, 0, 0, 0, 0, 0, 0, 4738, 4738, 4738, 4738, 4738, 4738, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4738, 0, 0, 0, 4738, 4738, 4738, 4738, 4738, 4738, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 0, 0, 0, 0, 0, 0, 4742, 4742, 4742, 4742, 4742, 4742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4742, 4742, 4742, 4742, 4742, 4742, 4744, 4744, 4744, 4744, 4744, 4744, 4744, 4744, 4744, 0, 0, 0, 0, 0, 0, 0, 4744, 4744, 4744, 4744, 4744, 4744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4744, 4744, 4744, 4744, 4744, 4744, 4752, 4752, 4752, 4752, 4752, 4752, 4752, 4752, 4752, 4752, 0, 0, 0, 0, 0, 0, 4752, 4752, 4752, 4752, 4752, 4752, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4752, 4752, 4752, 4752, 4752, 4752, 4755, 4755, 4755, 4755, 4755, 4755, 4755, 4755, 4755, 4755, 0, 0, 0, 0, 0, 0, 4755, 4755, 4755, 4755, 4755, 4755, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4755, 4755, 4755, 4755, 4755, 4755, 4763, 4763, 0, 4763, 4763, 4763, 4763, 4763, 4763, 0, 4763, 4763, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4763, 4763, 4763, 4763, 4763, 4763, 4763, 0, 0, 0, 0, 0, 4763, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4763, 4763, 4763, 4763, 4764, 4764, 0, 4764, 4764, 4764, 4764, 4764, 4764, 0, 4764, 4764, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4764, 4764, 4764, 4764, 4764, 4764, 4764, 4764, 0, 0, 0, 0, 4764, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4764, 4764, 4764, 4764, 4765, 4765, 0, 4765, 4765, 4765, 4765, 4765, 4765, 0, 4765, 4765, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4765, 4765, 4765, 4765, 4765, 4765, 4765, 0, 0, 0, 0, 0, 4765, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4765, 4765, 4765, 4767, 4767, 0, 4767, 4767, 4767, 4767, 4767, 4767, 0, 4767, 4767, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 0, 0, 0, 0, 4767, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4767, 4767, 4767, 4771, 4771, 0, 4771, 4771, 4771, 4771, 4771, 4771, 0, 4771, 4771, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4771, 4771, 4771, 4771, 4771, 4771, 4771, 0, 0, 0, 0, 0, 4771, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4771, 4771, 4771, 4771, 4772, 4772, 0, 4772, 4772, 4772, 4772, 4772, 4772, 0, 4772, 4772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4772, 4772, 4772, 4772, 4772, 4772, 4772, 4772, 0, 0, 0, 0, 4772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4772, 4772, 4772, 4772, 4773, 4773, 0, 4773, 4773, 4773, 4773, 4773, 4773, 0, 4773, 4773, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 0, 0, 0, 0, 0, 4773, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4773, 4773, 4773, 4775, 4775, 0, 4775, 4775, 4775, 4775, 4775, 4775, 0, 4775, 4775, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4775, 4775, 4775, 4775, 4775, 4775, 4775, 4775, 0, 0, 0, 0, 4775, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4775, 4775, 4775, 4777, 4777, 0, 4777, 4777, 4777, 4777, 4777, 4777, 0, 4777, 4777, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4777, 4777, 4777, 4777, 4777, 4777, 4777, 0, 0, 0, 0, 0, 4777, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4777, 4777, 4777, 4777, 4778, 4778, 0, 4778, 4778, 4778, 4778, 4778, 4778, 0, 4778, 4778, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4778, 4778, 4778, 4778, 4778, 4778, 4778, 4778, 0, 0, 0, 0, 4778, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4778, 4778, 4778, 4778, 4779, 4779, 0, 4779, 4779, 4779, 4779, 4779, 4779, 0, 4779, 4779, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 0, 0, 0, 0, 0, 4779, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4779, 4779, 4779, 4781, 4781, 0, 4781, 4781, 4781, 4781, 4781, 4781, 0, 4781, 4781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4781, 4781, 4781, 4781, 4781, 4781, 4781, 0, 0, 0, 0, 0, 4781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4781, 4781, 4781, 4781, 4782, 4782, 0, 4782, 4782, 4782, 4782, 4782, 4782, 0, 4782, 4782, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4782, 4782, 4782, 4782, 4782, 4782, 4782, 4782, 0, 0, 0, 0, 4782, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4782, 4782, 4782, 4782, 4783, 4783, 0, 4783, 4783, 4783, 4783, 4783, 4783, 4783, 4783, 4783, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4783, 4783, 4783, 4783, 4783, 4783, 4783, 4783, 0, 0, 0, 0, 4783, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4783, 4783, 4783, 4783, 4783, 4784, 4784, 0, 4784, 4784, 4784, 4784, 4784, 4784, 0, 4784, 4784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4784, 4784, 4784, 4784, 4784, 4784, 4784, 0, 0, 0, 0, 0, 4784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4784, 4784, 4784, 4785, 4785, 0, 4785, 4785, 4785, 4785, 4785, 4785, 0, 4785, 4785, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4785, 4785, 4785, 4785, 4785, 4785, 4785, 4785, 0, 0, 0, 0, 4785, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4785, 4785, 4785, 4787, 4787, 0, 4787, 4787, 4787, 4787, 4787, 4787, 0, 4787, 4787, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4787, 4787, 4787, 4787, 4787, 4787, 4787, 0, 0, 0, 0, 0, 4787, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4787, 4787, 4787, 4787, 4788, 4788, 0, 4788, 4788, 4788, 4788, 4788, 4788, 0, 4788, 4788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4788, 4788, 4788, 4788, 4788, 4788, 4788, 4788, 0, 0, 0, 0, 4788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4788, 4788, 4788, 4788, 4789, 4789, 0, 4789, 4789, 4789, 4789, 4789, 4789, 0, 4789, 4789, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4789, 4789, 4789, 4789, 4789, 4789, 4789, 0, 0, 0, 0, 0, 4789, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4789, 4789, 4789, 4791, 4791, 0, 4791, 4791, 4791, 4791, 4791, 4791, 0, 4791, 4791, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4791, 4791, 4791, 4791, 4791, 4791, 4791, 0, 0, 0, 0, 0, 4791, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4791, 4791, 4791, 4791, 4792, 4792, 0, 4792, 4792, 4792, 4792, 4792, 4792, 0, 4792, 4792, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4792, 4792, 4792, 4792, 4792, 4792, 4792, 4792, 0, 0, 0, 0, 4792, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4792, 4792, 4792, 4792, 4793, 4793, 0, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 0, 0, 0, 0, 4793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4793, 4793, 4793, 4793, 4793, 4794, 4794, 0, 4794, 4794, 4794, 4794, 4794, 4794, 0, 4794, 4794, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4794, 4794, 4794, 4794, 4794, 4794, 4794, 0, 0, 0, 0, 0, 4794, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4794, 4794, 4794, 4795, 4795, 0, 4795, 4795, 4795, 4795, 4795, 4795, 0, 4795, 4795, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4795, 4795, 4795, 4795, 4795, 4795, 4795, 4795, 0, 0, 0, 0, 4795, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4795, 4795, 4795, 4797, 4797, 0, 4797, 4797, 4797, 4797, 4797, 4797, 0, 4797, 4797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4797, 4797, 4797, 4797, 4797, 4797, 4797, 0, 0, 0, 0, 0, 4797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4797, 4797, 4797, 4797, 0, 0, 0, 0, 0, 0, 0, 4797, 4806, 0, 0, 0, 0, 0, 0, 0, 0, 4806, 4806, 4806, 4806, 4806, 4806, 4806, 4806, 4806, 4806, 0, 0, 0, 0, 0, 0, 4806, 4806, 4806, 4806, 4806, 4806, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4806, 0, 0, 0, 4806, 4806, 4806, 4806, 4806, 4806, 4807, 4807, 4807, 4807, 4807, 4807, 4807, 4807, 4807, 0, 0, 0, 0, 0, 0, 0, 4807, 4807, 4807, 4807, 4807, 4807, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4807, 0, 0, 0, 4807, 4807, 4807, 4807, 4807, 4807, 4812, 0, 4812, 4812, 4812, 4812, 4812, 4812, 4812, 4812, 4812, 4812, 0, 0, 0, 0, 0, 0, 4812, 4812, 4812, 4812, 4812, 4812, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4812, 4812, 4812, 4812, 4812, 4812, 4816, 4816, 4816, 4816, 4816, 4816, 4816, 4816, 4816, 4816, 0, 0, 0, 0, 0, 0, 4816, 4816, 4816, 4816, 4816, 4816, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4816, 4816, 4816, 4816, 4816, 4816, 4818, 0, 0, 0, 0, 0, 0, 0, 0, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4818, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4818, 4819, 0, 0, 0, 0, 0, 0, 0, 0, 4819, 4819, 4819, 4819, 4819, 4819, 4819, 4819, 4819, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4819, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4819, 4820, 0, 0, 0, 0, 0, 0, 0, 0, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4820, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4820, 4835, 0, 0, 0, 0, 0, 0, 0, 0, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 0, 0, 0, 0, 0, 0, 4835, 4835, 4835, 4835, 4835, 4835, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4835, 4835, 4835, 4835, 4835, 4835, 0, 0, 0, 0, 0, 0, 0, 4835, 4836, 4836, 4836, 4836, 4836, 4836, 4836, 4836, 4836, 0, 0, 0, 0, 0, 0, 0, 4836, 4836, 4836, 4836, 4836, 4836, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4836, 4836, 4836, 4836, 4836, 4836, 0, 0, 0, 0, 0, 0, 0, 4836, 4841, 0, 4841, 4841, 4841, 4841, 4841, 4841, 4841, 4841, 4841, 4841, 0, 0, 0, 0, 0, 0, 4841, 4841, 4841, 4841, 4841, 4841, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4841, 4841, 4841, 4841, 4841, 4841, 4845, 4845, 4845, 4845, 4845, 4845, 4845, 4845, 4845, 4845, 0, 0, 0, 0, 0, 0, 4845, 4845, 4845, 4845, 4845, 4845, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4845, 4845, 4845, 4845, 4845, 4845, 4847, 0, 0, 0, 0, 0, 0, 0, 0, 4847, 4847, 4847, 4847, 4847, 4847, 4847, 4847, 4847, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4847, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4847, 4848, 0, 0, 0, 0, 0, 0, 0, 0, 4848, 4848, 4848, 4848, 4848, 4848, 4848, 4848, 4848, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4848, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4848, 4849, 0, 0, 0, 0, 0, 0, 0, 0, 4849, 4849, 4849, 4849, 4849, 4849, 4849, 4849, 4849, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4849, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4849, 4866, 4866, 0, 4866, 4866, 4866, 4866, 4866, 4866, 0, 4866, 4866, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4866, 4866, 4866, 4866, 4866, 4866, 4866, 0, 0, 0, 0, 0, 4866, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4866, 4866, 4866, 4873, 4873, 0, 4873, 4873, 4873, 4873, 4873, 4873, 0, 4873, 4873, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4873, 4873, 4873, 4873, 4873, 4873, 4873, 0, 0, 0, 0, 0, 4873, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4873, 4873, 4873, 4877, 0, 0, 4877, 0, 0, 0, 4877, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4877, 0, 4877, 0, 4877, 0, 0, 4877, 0, 0, 0, 0, 4877, 0, 0, 4877, 0, 4877, 0, 4877, 0, 4877, 4877, 4877, 4878, 4878, 0, 0, 0, 0, 4878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4878, 0, 0, 0, 0, 0, 0, 4878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4878, 0, 4878, 0, 4878, 0, 0, 4878, 0, 0, 0, 0, 4878, 0, 0, 4878, 0, 4878, 0, 4878, 0, 4878, 4878, 4878, 4879, 0, 0, 0, 0, 0, 0, 4879, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4879, 0, 4879, 0, 4879, 0, 0, 4879, 4879, 0, 0, 0, 4879, 0, 0, 4879, 0, 4879, 0, 4879, 0, 4879, 4879, 4879, 4879, 4881, 4881, 0, 0, 0, 0, 4881, 0, 0, 4881, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4881, 0, 0, 0, 0, 0, 0, 4881, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4881, 0, 4881, 0, 4881, 0, 0, 4881, 0, 0, 0, 0, 4881, 0, 0, 4881, 0, 4881, 0, 4881, 0, 4881, 4881, 4881, 4896, 0, 0, 0, 0, 0, 0, 4896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4896, 0, 4896, 0, 4896, 0, 0, 4896, 0, 0, 0, 0, 4896, 0, 0, 4896, 0, 4896, 0, 4896, 0, 4896, 4896, 4896, 4897, 4897, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4897, 0, 0, 0, 0, 0, 0, 4897, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4897, 0, 4897, 0, 4897, 0, 0, 4897, 0, 0, 0, 0, 4897, 0, 0, 4897, 0, 4897, 0, 4897, 0, 4897, 4897, 4897, 4898, 0, 0, 0, 0, 0, 0, 4898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4898, 0, 4898, 0, 4898, 0, 4898, 4898, 0, 0, 0, 0, 4898, 0, 0, 4898, 0, 4898, 0, 4898, 0, 4898, 4898, 4898, 4899, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4899, 0, 0, 0, 0, 0, 0, 4899, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4899, 0, 4899, 0, 4899, 0, 0, 4899, 0, 0, 0, 0, 4899, 0, 0, 4899, 0, 4899, 0, 4899, 0, 4899, 4899, 4899, 4900, 0, 0, 0, 0, 0, 0, 4900, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4900, 0, 4900, 0, 4900, 0, 0, 4900, 0, 0, 0, 0, 4900, 0, 0, 4900, 0, 4900, 0, 4900, 0, 4900, 4900, 4900, 4901, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4901, 0, 0, 0, 0, 0, 0, 4901, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4901, 0, 4901, 0, 4901, 0, 0, 4901, 4901, 0, 0, 0, 4901, 0, 0, 4901, 0, 4901, 0, 4901, 0, 4901, 4901, 4901, 4902, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4902, 4902, 0, 0, 0, 0, 0, 4902, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4902, 0, 4902, 0, 4902, 0, 0, 4902, 0, 0, 0, 0, 4902, 0, 0, 4902, 0, 4902, 0, 4902, 0, 4902, 4902, 4902, 4903, 4903, 0, 0, 0, 0, 4903, 0, 0, 4903, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4903, 0, 0, 0, 0, 0, 0, 4903, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4903, 0, 4903, 0, 4903, 0, 0, 4903, 0, 0, 0, 0, 4903, 0, 0, 4903, 0, 4903, 0, 4903, 0, 4903, 4903, 4903, 4904, 4904, 0, 0, 0, 0, 4904, 0, 0, 4904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4904, 0, 0, 0, 0, 0, 0, 4904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4904, 0, 4904, 0, 4904, 0, 0, 4904, 0, 0, 0, 0, 4904, 0, 0, 4904, 0, 4904, 0, 4904, 0, 4904, 4904, 4904, 4905, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4905, 0, 0, 0, 0, 0, 0, 4905, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4905, 0, 4905, 0, 4905, 0, 0, 4905, 0, 0, 0, 0, 4905, 0, 0, 4905, 0, 4905, 0, 4905, 0, 4905, 4905, 4905, 4923, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4923, 0, 0, 0, 0, 0, 0, 4923, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4923, 4923, 4923, 0, 4923, 0, 0, 4923, 0, 0, 0, 0, 4923, 0, 0, 4923, 0, 4923, 0, 4923, 0, 4923, 4923, 4923, 4925, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4925, 0, 0, 0, 0, 0, 0, 4925, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4925, 0, 4925, 0, 4925, 0, 0, 4925, 0, 0, 0, 0, 4925, 4925, 0, 4925, 0, 4925, 0, 4925, 0, 4925, 4925, 4925, 4926, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4926, 0, 0, 0, 0, 0, 0, 4926, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4926, 0, 4926, 0, 4926, 0, 0, 4926, 4926, 0, 0, 0, 4926, 0, 0, 4926, 0, 4926, 0, 4926, 0, 4926, 4926, 4926, 4927, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4927, 0, 0, 0, 0, 0, 0, 4927, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4927, 0, 4927, 0, 4927, 0, 0, 4927, 0, 0, 0, 0, 4927, 4927, 0, 4927, 0, 4927, 0, 4927, 0, 4927, 4927, 4927, 4928, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4928, 0, 0, 0, 0, 0, 0, 4928, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4928, 0, 4928, 0, 4928, 0, 0, 4928, 0, 0, 0, 0, 4928, 0, 0, 4928, 0, 4928, 0, 4928, 4928, 4928, 4928, 4928, 4934, 4934, 4934, 4934, 4934, 4934, 4934, 4934, 4934, 4934, 0, 0, 0, 0, 0, 0, 4934, 4934, 4934, 4934, 4934, 4934, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4934, 4934, 4934, 4934, 4934, 4934, 4935, 4935, 4935, 4935, 4935, 4935, 4935, 4935, 4935, 4935, 0, 0, 0, 0, 0, 0, 4935, 4935, 4935, 4935, 4935, 4935, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4935, 4935, 4935, 4935, 4935, 4935, 4937, 4937, 4937, 4937, 4937, 4937, 4937, 4937, 4937, 0, 0, 0, 0, 0, 0, 4937, 4937, 4937, 4937, 4937, 4937, 4937, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4937, 4937, 4937, 4937, 4937, 4937, 4940, 4940, 4940, 4940, 4940, 4940, 4940, 4940, 4940, 4940, 0, 0, 0, 0, 0, 0, 4940, 4940, 4940, 4940, 4940, 4940, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4940, 4940, 4940, 4940, 4940, 4940, 4942, 4942, 4942, 4942, 4942, 4942, 4942, 4942, 4942, 0, 0, 0, 0, 0, 0, 0, 4942, 4942, 4942, 4942, 4942, 4942, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4942, 4942, 4942, 4942, 4942, 4942, 4947, 4947, 4947, 4947, 4947, 4947, 4947, 4947, 4947, 4947, 0, 0, 0, 0, 0, 0, 4947, 4947, 4947, 4947, 4947, 4947, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4947, 4947, 4947, 4947, 4947, 4947, 4949, 4949, 4949, 4949, 4949, 4949, 4949, 4949, 4949, 0, 0, 0, 0, 0, 0, 0, 4949, 4949, 4949, 4949, 4949, 4949, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4949, 4949, 4949, 4949, 4949, 4949, 4952, 4952, 4952, 4952, 4952, 4952, 4952, 4952, 4952, 0, 0, 0, 0, 0, 0, 0, 4952, 4952, 4952, 4952, 4952, 4952, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4952, 4952, 4952, 4952, 4952, 4952, 4953, 4953, 4953, 4953, 4953, 4953, 4953, 4953, 4953, 4953, 0, 0, 0, 0, 0, 0, 4953, 4953, 4953, 4953, 4953, 4953, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4953, 4953, 4953, 4953, 4953, 4953, 4955, 4955, 4955, 4955, 4955, 4955, 4955, 4955, 4955, 0, 0, 0, 0, 0, 0, 0, 4955, 4955, 4955, 4955, 4955, 4955, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4955, 4955, 4955, 4955, 4955, 4955, 4958, 4958, 4958, 4958, 4958, 4958, 4958, 4958, 4958, 0, 0, 0, 0, 0, 0, 0, 4958, 4958, 4958, 4958, 4958, 4958, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4958, 4958, 4958, 4958, 4958, 4958, 4959, 0, 4959, 4959, 4959, 4959, 4959, 4959, 4959, 4959, 4959, 4959, 0, 0, 0, 0, 0, 0, 4959, 4959, 4959, 4959, 4959, 4959, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4959, 4959, 4959, 4959, 4959, 4959, 4962, 4962, 4962, 4962, 4962, 4962, 4962, 4962, 4962, 4962, 0, 0, 0, 0, 0, 0, 4962, 4962, 4962, 4962, 4962, 4962, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4962, 4962, 4962, 4962, 4962, 4962, 4964, 4964, 4964, 4964, 4964, 4964, 4964, 4964, 4964, 0, 0, 0, 0, 0, 0, 0, 4964, 4964, 4964, 4964, 4964, 4964, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4964, 4964, 4964, 4964, 4964, 4964, 4967, 4967, 4967, 4967, 4967, 4967, 4967, 4967, 4967, 0, 0, 0, 0, 0, 0, 0, 4967, 4967, 4967, 4967, 4967, 4967, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4967, 4967, 4967, 4967, 4967, 4967, 4968, 4968, 4968, 4968, 4968, 4968, 4968, 4968, 4968, 4968, 0, 0, 0, 0, 0, 0, 4968, 4968, 4968, 4968, 4968, 4968, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4968, 4968, 4968, 4968, 4968, 4968, 4971, 4971, 4971, 4971, 4971, 4971, 4971, 4971, 4971, 4971, 0, 0, 0, 0, 0, 0, 4971, 4971, 4971, 4971, 4971, 4971, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4971, 4971, 4971, 4971, 4971, 4971, 4973, 4973, 4973, 4973, 4973, 4973, 4973, 4973, 4973, 0, 0, 0, 0, 0, 0, 0, 4973, 4973, 4973, 4973, 4973, 4973, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4973, 4973, 4973, 4973, 4973, 4973, 4976, 4976, 4976, 4976, 4976, 4976, 4976, 4976, 4976, 0, 0, 0, 0, 0, 0, 0, 4976, 4976, 4976, 4976, 4976, 4976, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4976, 4976, 4976, 4976, 4976, 4976, 4977, 4977, 4977, 4977, 4977, 4977, 4977, 4977, 4977, 4977, 0, 0, 0, 0, 0, 0, 4977, 4977, 4977, 4977, 4977, 4977, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4977, 4977, 4977, 4977, 4977, 4977, 4983, 4983, 4983, 4983, 4983, 4983, 4983, 4983, 4983, 4983, 0, 0, 0, 0, 0, 0, 4983, 4983, 4983, 4983, 4983, 4983, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4983, 4983, 4983, 4983, 4983, 4983, 4984, 4984, 4984, 4984, 4984, 4984, 4984, 4984, 4984, 0, 0, 0, 0, 0, 0, 0, 4984, 4984, 4984, 4984, 4984, 4984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4984, 4984, 4984, 4984, 4984, 4984, 4989, 4989, 4989, 4989, 4989, 4989, 4989, 4989, 4989, 4989, 0, 0, 0, 0, 0, 0, 4989, 4989, 4989, 4989, 4989, 4989, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4989, 4989, 4989, 4989, 4989, 4989, 4993, 4993, 4993, 4993, 4993, 4993, 4993, 4993, 4993, 4993, 0, 0, 0, 0, 0, 0, 4993, 4993, 4993, 4993, 4993, 4993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4993, 4993, 4993, 4993, 4993, 4993, 4999, 4999, 0, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 4999, 5006, 0, 0, 0, 0, 0, 0, 0, 0, 5006, 5006, 5006, 5006, 5006, 5006, 5006, 5006, 5006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5006, 5008, 5008, 0, 5008, 5008, 5008, 5008, 5008, 5008, 0, 5008, 5008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5008, 5008, 5008, 5008, 5008, 5008, 5008, 0, 0, 0, 0, 0, 5008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5008, 5008, 5008, 5009, 5009, 0, 5009, 5009, 5009, 5009, 5009, 5009, 0, 5009, 5009, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 0, 0, 0, 0, 5009, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5009, 5009, 5009, 5013, 5013, 0, 5013, 5013, 5013, 5013, 5013, 5013, 0, 5013, 5013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5013, 5013, 5013, 5013, 5013, 5013, 5013, 0, 0, 0, 0, 0, 5013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5013, 5013, 5013, 5014, 5014, 0, 5014, 5014, 5014, 5014, 5014, 5014, 0, 5014, 5014, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5014, 5014, 5014, 5014, 5014, 5014, 5014, 5014, 0, 0, 0, 0, 5014, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5014, 5014, 5014, 5016, 5016, 0, 5016, 5016, 5016, 5016, 5016, 5016, 0, 5016, 5016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5016, 5016, 5016, 5016, 5016, 5016, 5016, 0, 0, 0, 0, 0, 5016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5016, 5016, 5016, 5017, 5017, 0, 5017, 5017, 5017, 5017, 5017, 5017, 0, 5017, 5017, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5017, 5017, 5017, 5017, 5017, 5017, 5017, 5017, 0, 0, 0, 0, 5017, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5017, 5017, 5017, 5019, 5019, 0, 5019, 5019, 5019, 5019, 5019, 5019, 0, 5019, 5019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5019, 5019, 5019, 5019, 5019, 5019, 5019, 0, 0, 0, 0, 0, 5019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5019, 5019, 5019, 5020, 5020, 0, 5020, 5020, 5020, 5020, 5020, 5020, 0, 5020, 5020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 0, 0, 0, 0, 5020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5020, 5020, 5020, 5021, 5021, 0, 5021, 5021, 5021, 5021, 5021, 5021, 0, 5021, 5021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5021, 5021, 5021, 5021, 5021, 5021, 5021, 0, 0, 0, 0, 0, 5021, 0, 5021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5021, 5021, 5021, 0, 0, 0, 0, 0, 0, 0, 0, 5021, 5024, 5024, 0, 5024, 5024, 5024, 5024, 5024, 5024, 0, 5024, 5024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5024, 5024, 5024, 5024, 5024, 5024, 5024, 0, 0, 0, 0, 0, 5024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5024, 5024, 5024, 5025, 5025, 0, 5025, 5025, 5025, 5025, 5025, 5025, 0, 5025, 5025, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5025, 5025, 5025, 5025, 5025, 5025, 5025, 5025, 0, 0, 0, 0, 5025, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5025, 5025, 5025, 5029, 5029, 0, 5029, 5029, 5029, 5029, 5029, 5029, 0, 5029, 5029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5029, 5029, 5029, 5029, 5029, 5029, 5029, 0, 0, 0, 0, 0, 5029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5029, 5029, 5029, 5030, 5030, 0, 5030, 5030, 5030, 5030, 5030, 5030, 0, 5030, 5030, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5030, 5030, 5030, 5030, 5030, 5030, 5030, 5030, 0, 0, 0, 0, 5030, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5030, 5030, 5030, 5033, 5033, 0, 5033, 5033, 5033, 5033, 5033, 5033, 0, 5033, 5033, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5033, 5033, 5033, 5033, 5033, 5033, 5033, 0, 0, 0, 0, 0, 5033, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5033, 5033, 5033, 5034, 5034, 0, 5034, 5034, 5034, 5034, 5034, 5034, 0, 5034, 5034, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5034, 5034, 5034, 5034, 5034, 5034, 5034, 5034, 0, 0, 0, 0, 5034, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5034, 5034, 5034, 5036, 5036, 0, 5036, 5036, 5036, 5036, 5036, 5036, 0, 5036, 5036, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5036, 5036, 5036, 5036, 5036, 5036, 5036, 0, 0, 0, 0, 0, 5036, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5036, 5036, 5036, 5037, 5037, 0, 5037, 5037, 5037, 5037, 5037, 5037, 0, 5037, 5037, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5037, 5037, 5037, 5037, 5037, 5037, 5037, 5037, 0, 0, 0, 0, 5037, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5037, 5037, 5037, 5038, 5038, 0, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 0, 0, 0, 0, 5038, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5038, 5038, 5038, 5038, 5038, 5039, 5039, 0, 5039, 5039, 5039, 5039, 5039, 5039, 0, 5039, 5039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5039, 5039, 5039, 5039, 5039, 5039, 5039, 0, 0, 0, 0, 0, 5039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5039, 5039, 5039, 5040, 5040, 0, 5040, 5040, 5040, 5040, 5040, 5040, 0, 5040, 5040, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 0, 0, 0, 0, 5040, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5040, 5040, 5040, 5043, 5043, 0, 5043, 5043, 5043, 5043, 5043, 5043, 0, 5043, 5043, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5043, 5043, 5043, 5043, 5043, 5043, 5043, 0, 0, 0, 0, 0, 5043, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5043, 5043, 5043, 5044, 5044, 0, 5044, 5044, 5044, 5044, 5044, 5044, 0, 5044, 5044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 0, 0, 0, 0, 5044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5044, 5044, 5044, 5046, 5046, 0, 5046, 5046, 5046, 5046, 5046, 5046, 0, 5046, 5046, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5046, 5046, 5046, 5046, 5046, 5046, 5046, 0, 0, 0, 0, 0, 5046, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5046, 5046, 5046, 5047, 5047, 0, 5047, 5047, 5047, 5047, 5047, 5047, 0, 5047, 5047, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 0, 0, 0, 0, 5047, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5047, 5047, 5047, 5048, 5048, 0, 5048, 5048, 5048, 5048, 5048, 5048, 5048, 5048, 5048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5048, 5048, 5048, 5048, 5048, 5048, 5048, 5048, 0, 0, 0, 0, 5048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5048, 5048, 5048, 5048, 5048, 5061, 5061, 5061, 5061, 5061, 5061, 5061, 5061, 5061, 5061, 5061, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5061, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5061, 0, 5061, 5063, 5063, 0, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5063, 5064, 0, 0, 0, 0, 0, 0, 0, 0, 5064, 5064, 5064, 5064, 5064, 5064, 5064, 5064, 5064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5064, 5064, 5064, 5064, 5064, 5064, 5064, 5064, 5064, 5064, 5064, 5064, 5064, 5064, 5064, 5064, 5064, 5064, 5064, 5064, 5064, 5064, 5064, 5064, 5064, 5068, 5068, 5068, 5068, 5068, 5068, 5068, 5068, 5068, 5068, 0, 0, 0, 0, 0, 0, 5068, 5068, 5068, 5068, 5068, 5068, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5068, 5068, 5068, 5068, 5068, 5068, 5072, 0, 0, 0, 0, 0, 0, 0, 0, 5072, 5072, 5072, 5072, 5072, 5072, 5072, 5072, 5072, 0, 0, 0, 0, 0, 0, 0, 5072, 5072, 5072, 5072, 5072, 5072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5072, 5072, 5072, 5072, 5072, 5072, 5078, 5078, 5078, 5078, 5078, 5078, 5078, 5078, 5078, 0, 0, 0, 0, 0, 0, 0, 5078, 5078, 5078, 5078, 5078, 5078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5078, 5078, 5078, 5078, 5078, 5078, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 0, 0, 0, 0, 0, 0, 5081, 5081, 5081, 5081, 5081, 5081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5081, 5081, 5081, 5081, 5081, 5081, 5085, 5085, 5085, 5085, 5085, 5085, 5085, 5085, 5085, 0, 0, 0, 0, 0, 0, 0, 5085, 5085, 5085, 5085, 5085, 5085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5085, 5085, 5085, 5085, 5085, 5085, 5088, 0, 5088, 5088, 5088, 5088, 5088, 5088, 5088, 5088, 5088, 5088, 0, 0, 0, 0, 0, 0, 5088, 5088, 5088, 5088, 5088, 5088, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5088, 5088, 5088, 5088, 5088, 5088, 5095, 5095, 5095, 5095, 5095, 5095, 5095, 5095, 5095, 0, 0, 0, 0, 0, 0, 0, 5095, 5095, 5095, 5095, 5095, 5095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5095, 5095, 5095, 5095, 5095, 5095, 5098, 5098, 5098, 5098, 5098, 5098, 5098, 5098, 5098, 5098, 0, 0, 0, 0, 0, 0, 5098, 5098, 5098, 5098, 5098, 5098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5098, 5098, 5098, 5098, 5098, 5098, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 0, 0, 0, 0, 0, 0, 5102, 5102, 5102, 5102, 5102, 5102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5102, 5102, 5102, 5102, 5102, 5102, 5106, 5106, 5106, 5106, 5106, 5106, 5106, 5106, 5106, 0, 0, 0, 0, 0, 0, 0, 5106, 5106, 5106, 5106, 5106, 5106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5106, 5106, 5106, 5106, 5106, 5106, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 0, 0, 0, 0, 0, 0, 5109, 5109, 5109, 5109, 5109, 5109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5109, 5109, 5109, 5109, 5109, 5109, 5113, 5113, 5113, 5113, 5113, 5113, 5113, 5113, 5113, 5113, 0, 0, 0, 0, 0, 0, 5113, 5113, 5113, 5113, 5113, 5113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5113, 5113, 5113, 5113, 5113, 5113, 5117, 5117, 5117, 5117, 5117, 5117, 5117, 5117, 5117, 0, 0, 0, 0, 0, 0, 0, 5117, 5117, 5117, 5117, 5117, 5117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5117, 5117, 5117, 5117, 5117, 5117, 5120, 5120, 5120, 5120, 5120, 5120, 5120, 5120, 5120, 5120, 0, 0, 0, 0, 0, 0, 5120, 5120, 5120, 5120, 5120, 5120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5120, 5120, 5120, 5120, 5120, 5120, 5124, 5124, 5124, 5124, 5124, 5124, 5124, 5124, 5124, 5124, 0, 0, 0, 0, 0, 0, 5124, 5124, 5124, 5124, 5124, 5124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5124, 5124, 5124, 5124, 5124, 5124, 5125, 5125, 0, 5125, 5125, 5125, 5125, 5125, 5125, 0, 5125, 5125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5125, 5125, 5125, 5125, 5125, 5125, 5125, 0, 0, 0, 0, 0, 5125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5125, 5125, 5125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5125, 5126, 5126, 0, 5126, 5126, 5126, 5126, 5126, 5126, 0, 5126, 5126, 5126, 5126, 5126, 5126, 5126, 5126, 5126, 5126, 5126, 5126, 5126, 5126, 5126, 5126, 5126, 5126, 0, 0, 0, 0, 0, 5126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5126, 5126, 5126, 5129, 5129, 0, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5130, 5130, 0, 5130, 5130, 5130, 5130, 5130, 5130, 5130, 5130, 5130, 5130, 5130, 5130, 5130, 5130, 5130, 0, 0, 0, 5130, 5130, 5130, 5130, 5130, 5130, 5130, 0, 0, 0, 0, 0, 5130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5130, 5130, 5130, 5130, 5131, 5131, 0, 5131, 5131, 5131, 5131, 5131, 5131, 0, 5131, 5131, 5131, 5131, 5131, 5131, 5131, 5131, 0, 0, 0, 5131, 5131, 5131, 5131, 5131, 5131, 5131, 0, 0, 0, 0, 0, 5131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5131, 5131, 5131, 5135, 5135, 5135, 5135, 5135, 5135, 5135, 5135, 5135, 5135, 0, 0, 0, 0, 0, 0, 5135, 5135, 5135, 5135, 5135, 5135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5135, 5135, 5135, 5135, 5135, 5135, 5137, 5137, 5137, 5137, 5137, 5137, 5137, 5137, 5137, 0, 0, 0, 0, 0, 0, 0, 5137, 5137, 5137, 5137, 5137, 5137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5137, 5137, 5137, 5137, 5137, 5137, 5140, 5140, 5140, 5140, 5140, 5140, 5140, 5140, 5140, 0, 0, 0, 0, 0, 0, 0, 5140, 5140, 5140, 5140, 5140, 5140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5140, 5140, 5140, 5140, 5140, 5140, 5141, 5141, 5141, 5141, 5141, 5141, 5141, 5141, 5141, 5141, 0, 0, 0, 0, 0, 0, 5141, 5141, 5141, 5141, 5141, 5141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5141, 5141, 5141, 5141, 5141, 5141, 5145, 5145, 5145, 5145, 5145, 5145, 5145, 5145, 5145, 0, 0, 0, 0, 0, 0, 0, 5145, 5145, 5145, 5145, 5145, 5145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5145, 5145, 5145, 5145, 5145, 5145, 5148, 5148, 0, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5148, 5150, 5150, 0, 5150, 5150, 5150, 5150, 5150, 5150, 0, 5150, 5150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5150, 5150, 5150, 5150, 5150, 5150, 5150, 0, 0, 0, 0, 0, 5150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5150, 5150, 5150, 0, 0, 0, 0, 0, 5150, 5159, 5159, 5159, 5159, 5159, 5159, 5159, 5159, 5159, 0, 5159, 5159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5159, 5159, 5159, 5159, 5159, 5159, 5159, 0, 0, 0, 0, 0, 5159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5159, 5159, 5159, 5163, 0, 0, 0, 0, 0, 0, 0, 5163, 5163, 5163, 5163, 5163, 5163, 5163, 5163, 5163, 5163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5163, 5164, 0, 0, 0, 0, 0, 0, 0, 5164, 5164, 5164, 5164, 5164, 5164, 5164, 5164, 5164, 5164, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5164, 5190, 5190, 0, 5190, 5190, 5190, 5190, 5190, 5190, 0, 5190, 5190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5190, 5190, 5190, 5190, 5190, 5190, 5190, 0, 0, 0, 0, 0, 5190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5190, 5190, 5190, 5191, 5191, 0, 5191, 5191, 5191, 5191, 5191, 5191, 0, 5191, 5191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5191, 5191, 5191, 5191, 5191, 5191, 5191, 5191, 0, 0, 0, 0, 5191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5191, 5191, 5191, 5194, 5194, 0, 5194, 5194, 5194, 5194, 5194, 5194, 0, 5194, 5194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5194, 5194, 5194, 5194, 5194, 5194, 5194, 0, 0, 0, 0, 0, 5194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5194, 5194, 5194, 5195, 5195, 0, 5195, 5195, 5195, 5195, 5195, 5195, 0, 5195, 5195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5195, 5195, 5195, 5195, 5195, 5195, 5195, 0, 0, 0, 0, 0, 5195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5195, 0, 0, 0, 0, 5195, 5195, 5195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5195, 5196, 5196, 0, 5196, 5196, 5196, 5196, 5196, 5196, 0, 5196, 5196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5196, 5196, 5196, 5196, 5196, 5196, 5196, 5196, 0, 0, 0, 0, 5196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5196, 5196, 5196, 5199, 5199, 0, 5199, 5199, 5199, 5199, 5199, 5199, 0, 5199, 5199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 0, 0, 0, 0, 0, 5199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5199, 5199, 5199, 5200, 5200, 0, 5200, 5200, 5200, 5200, 5200, 5200, 0, 5200, 5200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5200, 5200, 5200, 5200, 5200, 5200, 5200, 5200, 0, 0, 0, 0, 5200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5200, 5200, 5200, 5202, 5202, 0, 5202, 5202, 5202, 5202, 5202, 5202, 0, 5202, 5202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5202, 5202, 5202, 5202, 5202, 5202, 5202, 0, 0, 0, 0, 0, 5202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5202, 5202, 5202, 5203, 5203, 0, 5203, 5203, 5203, 5203, 5203, 5203, 0, 5203, 5203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5203, 5203, 5203, 5203, 5203, 5203, 5203, 5203, 0, 0, 0, 0, 5203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5203, 5203, 5203, 5204, 5204, 0, 5204, 5204, 5204, 5204, 5204, 5204, 0, 5204, 5204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5204, 5204, 5204, 5204, 5204, 5204, 5204, 0, 0, 0, 0, 0, 5204, 5204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5204, 5204, 5204, 0, 0, 0, 0, 0, 0, 0, 5204, 5205, 5205, 0, 5205, 5205, 5205, 5205, 5205, 5205, 0, 5205, 5205, 0, 5205, 5205, 5205, 5205, 5205, 5205, 5205, 5205, 5205, 5205, 5205, 5205, 5205, 5205, 5205, 0, 0, 0, 0, 0, 5205, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5205, 5205, 5205, 5206, 5206, 0, 5206, 5206, 5206, 5206, 5206, 5206, 0, 5206, 5206, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5206, 5206, 5206, 5206, 5206, 5206, 5206, 0, 0, 0, 0, 0, 5206, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5206, 5206, 5206, 5207, 5207, 0, 5207, 5207, 5207, 5207, 5207, 5207, 0, 5207, 5207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5207, 5207, 5207, 5207, 5207, 5207, 5207, 0, 0, 0, 0, 0, 5207, 5207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5207, 5207, 5207, 0, 0, 0, 0, 0, 0, 0, 5207, 5212, 5212, 0, 5212, 5212, 5212, 5212, 5212, 5212, 0, 5212, 5212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5212, 5212, 5212, 5212, 5212, 5212, 5212, 0, 0, 0, 0, 0, 5212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5212, 5212, 5212, 5213, 5213, 0, 5213, 5213, 5213, 5213, 5213, 5213, 0, 5213, 5213, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5213, 5213, 5213, 5213, 5213, 5213, 5213, 5213, 0, 0, 0, 0, 5213, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5213, 5213, 5213, 5217, 5217, 0, 5217, 5217, 5217, 5217, 5217, 5217, 0, 5217, 5217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5217, 5217, 5217, 5217, 5217, 5217, 5217, 0, 0, 0, 0, 0, 5217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5217, 5217, 5217, 5218, 5218, 0, 5218, 5218, 5218, 5218, 5218, 5218, 0, 5218, 5218, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5218, 5218, 5218, 5218, 5218, 5218, 5218, 5218, 0, 0, 0, 0, 5218, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5218, 5218, 5218, 5222, 5222, 0, 5222, 5222, 5222, 5222, 5222, 5222, 0, 5222, 5222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5222, 5222, 5222, 5222, 5222, 5222, 5222, 0, 0, 0, 0, 0, 5222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5222, 5222, 5222, 5223, 5223, 0, 5223, 5223, 5223, 5223, 5223, 5223, 0, 5223, 5223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5223, 5223, 5223, 5223, 5223, 5223, 5223, 5223, 0, 0, 0, 0, 5223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5223, 5223, 5223, 5226, 5226, 0, 5226, 5226, 5226, 5226, 5226, 5226, 0, 5226, 5226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5226, 5226, 5226, 5226, 5226, 5226, 5226, 0, 0, 0, 0, 0, 5226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5226, 5226, 5226, 5227, 5227, 0, 5227, 5227, 5227, 5227, 5227, 5227, 0, 5227, 5227, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5227, 5227, 5227, 5227, 5227, 5227, 5227, 5227, 0, 0, 0, 0, 5227, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5227, 5227, 5227, 5229, 5229, 0, 5229, 5229, 5229, 5229, 5229, 5229, 0, 5229, 5229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5229, 5229, 5229, 5229, 5229, 5229, 5229, 0, 0, 0, 0, 0, 5229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5229, 0, 0, 0, 0, 0, 5229, 5229, 5229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5229, 5230, 5230, 0, 5230, 5230, 5230, 5230, 5230, 5230, 0, 5230, 5230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5230, 5230, 5230, 5230, 5230, 5230, 5230, 0, 0, 0, 0, 0, 5230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5230, 5230, 5230, 5231, 5231, 0, 5231, 5231, 5231, 5231, 5231, 5231, 0, 5231, 5231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5231, 5231, 5231, 5231, 5231, 5231, 5231, 5231, 0, 0, 0, 0, 5231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5231, 5231, 5231, 5232, 5232, 0, 5232, 5232, 5232, 5232, 5232, 5232, 0, 5232, 5232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5232, 5232, 5232, 5232, 5232, 5232, 5232, 0, 0, 0, 0, 0, 5232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5232, 5232, 5232, 5233, 5233, 0, 5233, 5233, 5233, 5233, 5233, 5233, 0, 5233, 5233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5233, 5233, 5233, 5233, 5233, 5233, 5233, 5233, 0, 0, 0, 0, 5233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5233, 5233, 5233, 5237, 5237, 0, 5237, 5237, 5237, 5237, 5237, 5237, 0, 5237, 5237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5237, 5237, 5237, 5237, 5237, 5237, 5237, 0, 0, 0, 0, 0, 5237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5237, 5237, 5237, 5238, 5238, 0, 5238, 5238, 5238, 5238, 5238, 5238, 0, 5238, 5238, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5238, 5238, 5238, 5238, 5238, 5238, 5238, 5238, 0, 0, 0, 0, 5238, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5238, 5238, 5238, 5241, 5241, 0, 5241, 5241, 5241, 5241, 5241, 5241, 0, 5241, 5241, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5241, 5241, 5241, 5241, 5241, 5241, 5241, 0, 0, 0, 0, 0, 5241, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5241, 5241, 5241, 5242, 5242, 0, 5242, 5242, 5242, 5242, 5242, 5242, 0, 5242, 5242, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5242, 5242, 5242, 5242, 5242, 5242, 5242, 5242, 0, 0, 0, 0, 5242, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5242, 5242, 5242, 5244, 5244, 0, 5244, 5244, 5244, 5244, 5244, 5244, 0, 5244, 5244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5244, 5244, 5244, 5244, 5244, 5244, 5244, 0, 0, 0, 0, 0, 5244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5244, 0, 0, 0, 0, 0, 5244, 5244, 5244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5244, 5245, 5245, 0, 5245, 5245, 5245, 5245, 5245, 5245, 0, 5245, 5245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5245, 5245, 5245, 5245, 5245, 5245, 5245, 0, 0, 0, 0, 0, 5245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5245, 5245, 5245, 5246, 5246, 0, 5246, 5246, 5246, 5246, 5246, 5246, 0, 5246, 5246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5246, 5246, 5246, 5246, 5246, 5246, 5246, 5246, 0, 0, 0, 0, 5246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5246, 5246, 5246, 5250, 5250, 0, 5250, 5250, 5250, 5250, 5250, 5250, 0, 5250, 5250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5250, 5250, 5250, 5250, 5250, 5250, 5250, 0, 0, 0, 0, 0, 5250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5250, 5250, 5250, 0, 0, 0, 5250, 5251, 5251, 0, 5251, 5251, 5251, 5251, 5251, 5251, 5251, 5251, 5251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5251, 5251, 5251, 5251, 5251, 5251, 5251, 0, 0, 0, 0, 0, 5251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5251, 5251, 5251, 5251, 0, 0, 0, 0, 0, 5251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5251, 5252, 5252, 0, 5252, 5252, 5252, 5252, 5252, 5252, 0, 5252, 5252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5252, 5252, 5252, 5252, 5252, 5252, 5252, 0, 0, 0, 0, 0, 5252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5252, 5252, 5252, 0, 5252, 5254, 5254, 5254, 5254, 5254, 5254, 5254, 5254, 5254, 0, 5254, 5254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5254, 5254, 5254, 5254, 5254, 5254, 5254, 0, 0, 0, 0, 0, 5254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5254, 5254, 5254, 5255, 5255, 5255, 5255, 5255, 5255, 5255, 5255, 5255, 0, 5255, 5255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5255, 5255, 5255, 5255, 5255, 5255, 5255, 5255, 0, 0, 0, 0, 5255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5255, 5255, 5255, 5257, 5257, 5257, 5257, 5257, 5257, 5257, 5257, 5257, 0, 5257, 5257, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5257, 5257, 5257, 5257, 5257, 5257, 5257, 0, 0, 0, 0, 0, 5257, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5257, 5257, 5257, 5258, 5258, 5258, 5258, 5258, 5258, 5258, 5258, 5258, 0, 5258, 5258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5258, 5258, 5258, 5258, 5258, 5258, 5258, 5258, 0, 0, 0, 0, 5258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5258, 5258, 5258, 5260, 5260, 5260, 5260, 5260, 5260, 5260, 5260, 5260, 0, 5260, 5260, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5260, 5260, 5260, 5260, 5260, 5260, 5260, 0, 0, 0, 0, 0, 5260, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5260, 5260, 5260, 5261, 5261, 5261, 5261, 5261, 5261, 5261, 5261, 5261, 0, 5261, 5261, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5261, 5261, 5261, 5261, 5261, 5261, 5261, 5261, 0, 0, 0, 0, 5261, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5261, 5261, 5261, 5262, 5262, 5262, 5262, 5262, 5262, 5262, 5262, 5262, 0, 5262, 5262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5262, 5262, 5262, 5262, 5262, 5262, 5262, 0, 0, 0, 0, 0, 5262, 0, 5262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5262, 5262, 5262, 0, 0, 0, 0, 0, 0, 0, 0, 5262, 5266, 5266, 0, 0, 0, 0, 0, 0, 0, 0, 5266, 5266, 5266, 5266, 5266, 5266, 5266, 5266, 5266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5266, 5268, 5268, 5268, 5268, 5268, 5268, 5268, 5268, 5268, 0, 5268, 5268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5268, 5268, 5268, 5268, 5268, 5268, 5268, 0, 0, 0, 0, 0, 5268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5268, 5268, 5268, 5269, 5269, 5269, 5269, 5269, 5269, 5269, 5269, 5269, 0, 5269, 5269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5269, 5269, 5269, 5269, 5269, 5269, 5269, 5269, 0, 0, 0, 0, 5269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5269, 5269, 5269, 5273, 5273, 5273, 5273, 5273, 5273, 5273, 5273, 5273, 0, 5273, 5273, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5273, 5273, 5273, 5273, 5273, 5273, 5273, 0, 0, 0, 0, 0, 5273, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5273, 5273, 5273, 5274, 5274, 5274, 5274, 5274, 5274, 5274, 5274, 5274, 0, 5274, 5274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5274, 5274, 5274, 5274, 5274, 5274, 5274, 5274, 0, 0, 0, 0, 5274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5274, 5274, 5274, 5277, 5277, 5277, 5277, 5277, 5277, 5277, 5277, 5277, 0, 5277, 5277, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5277, 5277, 5277, 5277, 5277, 5277, 5277, 0, 0, 0, 0, 0, 5277, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5277, 5277, 5277, 5278, 5278, 5278, 5278, 5278, 5278, 5278, 5278, 5278, 0, 5278, 5278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5278, 5278, 5278, 5278, 5278, 5278, 5278, 5278, 0, 0, 0, 0, 5278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5278, 5278, 5278, 5280, 5280, 5280, 5280, 5280, 5280, 5280, 5280, 5280, 0, 5280, 5280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5280, 5280, 5280, 5280, 5280, 5280, 5280, 0, 0, 0, 0, 0, 5280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5280, 5280, 5280, 5281, 5281, 5281, 5281, 5281, 5281, 5281, 5281, 5281, 0, 5281, 5281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5281, 5281, 5281, 5281, 5281, 5281, 5281, 5281, 0, 0, 0, 0, 5281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5281, 5281, 5281, 5282, 5282, 5282, 5282, 5282, 5282, 5282, 5282, 5282, 5282, 5282, 5282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5282, 5282, 5282, 5282, 5282, 5282, 5282, 5282, 0, 0, 0, 0, 5282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5282, 5282, 5282, 5282, 5282, 5283, 5283, 5283, 5283, 5283, 5283, 5283, 5283, 5283, 0, 5283, 5283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5283, 5283, 5283, 5283, 5283, 5283, 5283, 0, 0, 0, 0, 0, 5283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5283, 5283, 5283, 5284, 5284, 5284, 5284, 5284, 5284, 5284, 5284, 5284, 0, 5284, 5284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5284, 5284, 5284, 5284, 5284, 5284, 5284, 5284, 0, 0, 0, 0, 5284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5284, 5284, 5284, 5286, 5286, 5286, 5286, 5286, 5286, 5286, 5286, 5286, 0, 5286, 5286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5286, 5286, 5286, 5286, 5286, 5286, 5286, 0, 0, 0, 0, 0, 5286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5286, 5286, 5286, 5287, 5287, 5287, 5287, 5287, 5287, 5287, 5287, 5287, 0, 5287, 5287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5287, 5287, 5287, 5287, 5287, 5287, 5287, 5287, 0, 0, 0, 0, 5287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5287, 5287, 5287, 5289, 5289, 5289, 5289, 5289, 5289, 5289, 5289, 5289, 0, 5289, 5289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5289, 5289, 5289, 5289, 5289, 5289, 5289, 0, 0, 0, 0, 0, 5289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5289, 5289, 5289, 5290, 5290, 5290, 5290, 5290, 5290, 5290, 5290, 5290, 0, 5290, 5290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5290, 5290, 5290, 5290, 5290, 5290, 5290, 5290, 0, 0, 0, 0, 5290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5290, 5290, 5290, 5291, 5291, 5291, 5291, 5291, 5291, 5291, 5291, 5291, 5291, 5291, 5291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5291, 5291, 5291, 5291, 5291, 5291, 5291, 5291, 0, 0, 0, 0, 5291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5291, 5291, 5291, 5291, 5291, 5294, 5294, 0, 5294, 5294, 5294, 5294, 5294, 5294, 0, 5294, 5294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5294, 5294, 5294, 5294, 5294, 5294, 5294, 0, 0, 0, 0, 0, 5294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5294, 5294, 5294, 5296, 5296, 0, 5296, 5296, 5296, 5296, 5296, 5296, 0, 5296, 5296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5296, 5296, 5296, 5296, 5296, 5296, 5296, 0, 0, 0, 0, 0, 5296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5296, 5296, 5296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5296, 5297, 5297, 0, 5297, 5297, 5297, 5297, 5297, 5297, 0, 5297, 5297, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5297, 5297, 5297, 5297, 5297, 5297, 5297, 0, 0, 0, 0, 0, 5297, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5297, 5297, 5297, 0, 0, 0, 5297, 5298, 5298, 0, 5298, 5298, 5298, 5298, 5298, 5298, 0, 5298, 5298, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5298, 5298, 5298, 5298, 5298, 5298, 5298, 0, 0, 0, 0, 0, 5298, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5298, 5298, 5298, 5299, 5299, 0, 5299, 5299, 5299, 5299, 5299, 5299, 0, 5299, 5299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5299, 5299, 5299, 5299, 5299, 5299, 5299, 0, 0, 0, 0, 0, 5299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5299, 5299, 5299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5299, 5300, 5300, 0, 5300, 5300, 5300, 5300, 5300, 5300, 0, 5300, 5300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5300, 5300, 5300, 5300, 5300, 5300, 5300, 0, 0, 0, 0, 0, 5300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5300, 5300, 5300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5300, 5305, 5305, 0, 5305, 5305, 5305, 5305, 5305, 5305, 0, 5305, 5305, 0, 0, 0, 0, 0, 0, 0, 0, 5305, 5305, 5305, 5305, 5305, 5305, 5305, 5305, 0, 0, 0, 0, 0, 5305, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5305, 5305, 5305, 5306, 5306, 0, 5306, 5306, 5306, 5306, 5306, 5306, 0, 5306, 5306, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5306, 5306, 5306, 5306, 5306, 5306, 5306, 0, 0, 0, 0, 0, 5306, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5306, 5306, 5306, 5314, 5314, 0, 5314, 5314, 5314, 5314, 5314, 5314, 0, 5314, 5314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5314, 5314, 5314, 5314, 5314, 5314, 5314, 0, 0, 0, 0, 0, 5314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5314, 5314, 5314, 5315, 5315, 0, 5315, 5315, 5315, 5315, 5315, 5315, 0, 5315, 5315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5315, 5315, 5315, 5315, 5315, 5315, 5315, 5315, 0, 0, 0, 0, 5315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5315, 5315, 5315, 5319, 5319, 0, 5319, 5319, 5319, 5319, 5319, 5319, 0, 5319, 5319, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5319, 5319, 5319, 5319, 5319, 5319, 5319, 0, 0, 0, 0, 0, 5319, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5319, 5319, 5319, 5320, 5320, 0, 5320, 5320, 5320, 5320, 5320, 5320, 0, 5320, 5320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5320, 5320, 5320, 5320, 5320, 5320, 5320, 5320, 0, 0, 0, 0, 5320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5320, 5320, 5320, 5321, 5321, 0, 5321, 5321, 5321, 5321, 5321, 5321, 0, 5321, 5321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5321, 5321, 5321, 5321, 5321, 5321, 5321, 0, 0, 0, 0, 0, 5321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5321, 5321, 5321, 5322, 5322, 0, 5322, 5322, 5322, 5322, 5322, 5322, 0, 5322, 5322, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5322, 5322, 5322, 5322, 5322, 5322, 5322, 5322, 0, 0, 0, 0, 5322, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5322, 5322, 5322, 5323, 5323, 0, 5323, 5323, 5323, 5323, 5323, 5323, 0, 5323, 5323, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5323, 5323, 5323, 5323, 5323, 5323, 5323, 0, 0, 0, 0, 0, 5323, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5323, 0, 0, 0, 0, 5323, 5323, 5323, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5323, 5327, 5327, 0, 5327, 5327, 5327, 5327, 5327, 5327, 0, 5327, 5327, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5327, 5327, 5327, 5327, 5327, 5327, 5327, 0, 0, 0, 0, 0, 5327, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5327, 5327, 5327, 5328, 5328, 0, 5328, 5328, 5328, 5328, 5328, 5328, 0, 5328, 5328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5328, 5328, 5328, 5328, 5328, 5328, 5328, 5328, 0, 0, 0, 0, 5328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5328, 5328, 5328, 5331, 5331, 0, 5331, 5331, 5331, 5331, 5331, 5331, 0, 5331, 5331, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5331, 5331, 5331, 5331, 5331, 5331, 5331, 0, 0, 0, 0, 0, 5331, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5331, 5331, 5331, 5332, 5332, 0, 5332, 5332, 5332, 5332, 5332, 5332, 0, 5332, 5332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5332, 5332, 5332, 5332, 5332, 5332, 5332, 5332, 0, 0, 0, 0, 5332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5332, 5332, 5332, 5334, 5334, 0, 5334, 5334, 5334, 5334, 5334, 5334, 0, 5334, 5334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5334, 5334, 5334, 5334, 5334, 5334, 5334, 0, 0, 0, 0, 0, 5334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5334, 5334, 5334, 5335, 5335, 0, 5335, 5335, 5335, 5335, 5335, 5335, 0, 5335, 5335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5335, 5335, 5335, 5335, 5335, 5335, 5335, 5335, 0, 0, 0, 0, 5335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5335, 5335, 5335, 5336, 5336, 0, 5336, 5336, 5336, 5336, 5336, 5336, 0, 5336, 5336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5336, 5336, 5336, 5336, 5336, 5336, 5336, 0, 0, 0, 0, 0, 5336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5336, 0, 0, 5336, 5336, 5336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5336, 5337, 5337, 0, 5337, 5337, 5337, 5337, 5337, 5337, 0, 5337, 5337, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5337, 5337, 5337, 5337, 5337, 5337, 5337, 0, 0, 0, 0, 0, 5337, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5337, 5337, 5337, 5338, 5338, 0, 5338, 5338, 5338, 5338, 5338, 5338, 0, 5338, 5338, 5338, 5338, 5338, 5338, 5338, 5338, 5338, 5338, 5338, 5338, 5338, 5338, 5338, 5338, 5338, 5338, 0, 0, 0, 0, 0, 5338, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5338, 5338, 5338, 5340, 5340, 0, 5340, 5340, 5340, 5340, 5340, 5340, 0, 5340, 5340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5340, 5340, 5340, 5340, 5340, 5340, 5340, 0, 0, 0, 0, 0, 5340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5340, 5340, 5340, 5341, 5341, 0, 5341, 5341, 5341, 5341, 5341, 5341, 0, 5341, 5341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 0, 0, 0, 0, 5341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5341, 5341, 5341, 5342, 5342, 0, 5342, 5342, 5342, 5342, 5342, 5342, 0, 5342, 5342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5342, 5342, 5342, 5342, 5342, 5342, 5342, 0, 0, 0, 0, 0, 5342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5342, 0, 0, 5342, 5342, 5342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5342, 5356, 5356, 0, 5356, 5356, 5356, 5356, 5356, 5356, 0, 5356, 5356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5356, 5356, 5356, 5356, 5356, 5356, 5356, 0, 0, 0, 0, 0, 5356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5356, 5356, 5356, 5357, 5357, 0, 5357, 5357, 5357, 5357, 5357, 5357, 0, 5357, 5357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5357, 5357, 5357, 5357, 5357, 5357, 5357, 5357, 0, 0, 0, 0, 5357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5357, 5357, 5357, 5371, 5371, 0, 5371, 5371, 5371, 5371, 5371, 5371, 0, 5371, 5371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5371, 5371, 5371, 5371, 5371, 5371, 5371, 0, 0, 0, 0, 0, 5371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5371, 5371, 5371, 5372, 5372, 0, 5372, 5372, 5372, 5372, 5372, 5372, 0, 5372, 5372, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5372, 5372, 5372, 5372, 5372, 5372, 5372, 5372, 0, 0, 0, 0, 5372, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5372, 5372, 5372, 5394, 5394, 0, 5394, 5394, 5394, 5394, 5394, 5394, 0, 5394, 5394, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5394, 5394, 5394, 5394, 5394, 5394, 5394, 0, 0, 0, 0, 0, 5394, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5394, 5394, 5394, 5394, 5395, 5395, 0, 5395, 5395, 5395, 5395, 5395, 5395, 0, 5395, 5395, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5395, 5395, 5395, 5395, 5395, 5395, 5395, 5395, 0, 0, 0, 0, 5395, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5395, 5395, 5395, 5395, 5399, 5399, 0, 5399, 5399, 5399, 5399, 5399, 5399, 0, 5399, 5399, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5399, 5399, 5399, 5399, 5399, 5399, 5399, 0, 0, 0, 0, 0, 5399, 0, 0, 0, 0, 0, 5399, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5399, 5399, 5399, 5399, 5400, 5400, 0, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5401, 5401, 0, 5401, 5401, 5401, 5401, 5401, 5401, 0, 5401, 5401, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5401, 5401, 5401, 5401, 5401, 5401, 5401, 0, 0, 0, 0, 0, 5401, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5401, 5401, 5401, 5401, 5402, 5402, 0, 5402, 5402, 5402, 5402, 5402, 5402, 0, 5402, 5402, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5402, 5402, 5402, 5402, 5402, 5402, 5402, 5402, 0, 0, 0, 0, 5402, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5402, 5402, 5402, 5402, 5403, 5403, 0, 5403, 5403, 5403, 5403, 5403, 5403, 0, 5403, 5403, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5403, 5403, 5403, 5403, 5403, 5403, 5403, 0, 0, 0, 0, 0, 5403, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5403, 5403, 5403, 5405, 5405, 0, 5405, 5405, 5405, 5405, 5405, 5405, 0, 5405, 5405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5405, 5405, 5405, 5405, 5405, 5405, 5405, 5405, 0, 0, 0, 0, 5405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5405, 5405, 5405, 5410, 0, 0, 0, 0, 0, 0, 5410, 0, 5410, 5410, 5410, 5410, 5410, 5410, 5410, 5410, 5410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5410, 5411, 5411, 0, 5411, 5411, 5411, 5411, 5411, 5411, 0, 5411, 5411, 5411, 5411, 5411, 5411, 5411, 5411, 5411, 5411, 5411, 5411, 5411, 5411, 5411, 5411, 5411, 5411, 0, 0, 0, 0, 0, 5411, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5411, 5411, 5411, 5411, 5419, 5419, 5419, 5419, 5419, 5419, 5419, 5419, 5419, 5419, 0, 0, 0, 0, 0, 0, 5419, 5419, 5419, 5419, 5419, 5419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5419, 5419, 5419, 5419, 5419, 5419, 5421, 5421, 5421, 5421, 5421, 5421, 5421, 5421, 5421, 5421, 0, 0, 0, 0, 0, 0, 5421, 5421, 5421, 5421, 5421, 5421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5421, 5421, 5421, 5421, 5421, 5421, 5424, 5424, 5424, 5424, 5424, 5424, 5424, 5424, 5424, 5424, 0, 0, 0, 0, 0, 0, 5424, 5424, 5424, 5424, 5424, 5424, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5424, 0, 0, 0, 5424, 5424, 5424, 5424, 5424, 5424, 5430, 5430, 5430, 5430, 5430, 5430, 5430, 5430, 5430, 5430, 0, 0, 0, 0, 0, 0, 5430, 5430, 5430, 5430, 5430, 5430, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5430, 5430, 5430, 5430, 5430, 5430, 5433, 5433, 5433, 5433, 5433, 5433, 5433, 5433, 5433, 5433, 0, 0, 0, 0, 0, 0, 5433, 5433, 5433, 5433, 5433, 5433, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5433, 5433, 5433, 5433, 5433, 5433, 5446, 5446, 5446, 5446, 5446, 5446, 5446, 5446, 5446, 5446, 0, 0, 0, 0, 0, 0, 5446, 5446, 5446, 5446, 5446, 5446, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5446, 5446, 5446, 5446, 5446, 5446, 5448, 5448, 5448, 5448, 5448, 5448, 5448, 5448, 5448, 0, 0, 0, 0, 0, 0, 0, 5448, 5448, 5448, 5448, 5448, 5448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5448, 5448, 5448, 5448, 5448, 5448, 5456, 5456, 0, 5456, 5456, 5456, 5456, 5456, 5456, 0, 5456, 5456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5456, 5456, 5456, 5456, 5456, 5456, 5456, 0, 0, 0, 0, 0, 5456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5456, 5456, 5456, 5456, 5457, 5457, 0, 5457, 5457, 5457, 5457, 5457, 5457, 0, 5457, 5457, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5457, 5457, 5457, 5457, 5457, 5457, 5457, 5457, 0, 0, 0, 0, 5457, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5457, 5457, 5457, 5457, 5458, 5458, 0, 5458, 5458, 5458, 5458, 5458, 5458, 0, 5458, 5458, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5458, 5458, 5458, 5458, 5458, 5458, 5458, 0, 0, 0, 0, 0, 5458, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5458, 5458, 5458, 5460, 5460, 0, 5460, 5460, 5460, 5460, 5460, 5460, 0, 5460, 5460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5460, 5460, 5460, 5460, 5460, 5460, 5460, 5460, 0, 0, 0, 0, 5460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5460, 5460, 5460, 5465, 5465, 0, 5465, 5465, 5465, 5465, 5465, 5465, 0, 5465, 5465, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5465, 5465, 5465, 5465, 5465, 5465, 5465, 0, 0, 0, 0, 0, 5465, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5465, 5465, 5465, 5465, 5466, 5466, 0, 5466, 5466, 5466, 5466, 5466, 5466, 0, 5466, 5466, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5466, 5466, 5466, 5466, 5466, 5466, 5466, 5466, 0, 0, 0, 0, 5466, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5466, 5466, 5466, 5466, 5467, 5467, 0, 5467, 5467, 5467, 5467, 5467, 5467, 0, 5467, 5467, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5467, 5467, 5467, 5467, 5467, 5467, 5467, 0, 0, 0, 0, 0, 5467, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5467, 5467, 5467, 5469, 5469, 0, 5469, 5469, 5469, 5469, 5469, 5469, 0, 5469, 5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5469, 5469, 5469, 5469, 5469, 5469, 5469, 5469, 0, 0, 0, 0, 5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5469, 5469, 5469, 5473, 5473, 0, 5473, 5473, 5473, 5473, 5473, 5473, 0, 5473, 5473, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5473, 5473, 5473, 5473, 5473, 5473, 5473, 0, 0, 0, 0, 0, 5473, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5473, 5473, 5473, 5473, 5474, 5474, 0, 5474, 5474, 5474, 5474, 5474, 5474, 0, 5474, 5474, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5474, 5474, 5474, 5474, 5474, 5474, 5474, 5474, 0, 0, 0, 0, 5474, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5474, 5474, 5474, 5474, 5475, 5475, 0, 5475, 5475, 5475, 5475, 5475, 5475, 0, 5475, 5475, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5475, 5475, 5475, 5475, 5475, 5475, 5475, 0, 0, 0, 0, 0, 5475, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5475, 5475, 5475, 5477, 5477, 0, 5477, 5477, 5477, 5477, 5477, 5477, 0, 5477, 5477, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5477, 5477, 5477, 5477, 5477, 5477, 5477, 5477, 0, 0, 0, 0, 5477, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5477, 5477, 5477, 5479, 5479, 0, 5479, 5479, 5479, 5479, 5479, 5479, 0, 5479, 5479, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5479, 5479, 5479, 5479, 5479, 5479, 5479, 0, 0, 0, 0, 0, 5479, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5479, 5479, 5479, 5479, 5480, 5480, 0, 5480, 5480, 5480, 5480, 5480, 5480, 0, 5480, 5480, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5480, 5480, 5480, 5480, 5480, 5480, 5480, 5480, 0, 0, 0, 0, 5480, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5480, 5480, 5480, 5480, 5481, 5481, 0, 5481, 5481, 5481, 5481, 5481, 5481, 0, 5481, 5481, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5481, 5481, 5481, 5481, 5481, 5481, 5481, 0, 0, 0, 0, 0, 5481, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5481, 5481, 5481, 5483, 5483, 0, 5483, 5483, 5483, 5483, 5483, 5483, 0, 5483, 5483, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5483, 5483, 5483, 5483, 5483, 5483, 5483, 0, 0, 0, 0, 0, 5483, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5483, 0, 0, 0, 0, 0, 5483, 5483, 5483, 5483, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5483, 5484, 5484, 0, 5484, 5484, 5484, 5484, 5484, 5484, 0, 5484, 5484, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5484, 5484, 5484, 5484, 5484, 5484, 5484, 0, 0, 0, 0, 0, 5484, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5484, 5484, 5484, 5484, 5485, 5485, 0, 5485, 5485, 5485, 5485, 5485, 5485, 0, 5485, 5485, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5485, 5485, 5485, 5485, 5485, 5485, 5485, 5485, 0, 0, 0, 0, 5485, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5485, 5485, 5485, 5485, 5486, 5486, 0, 5486, 5486, 5486, 5486, 5486, 5486, 0, 5486, 5486, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5486, 5486, 5486, 5486, 5486, 5486, 5486, 0, 0, 0, 0, 0, 5486, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5486, 0, 0, 0, 0, 0, 5486, 5486, 5486, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5486, 5487, 5487, 0, 5487, 5487, 5487, 5487, 5487, 5487, 0, 5487, 5487, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5487, 5487, 5487, 5487, 5487, 5487, 5487, 5487, 0, 0, 0, 0, 5487, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5487, 5487, 5487, 5490, 5490, 0, 5490, 5490, 5490, 5490, 5490, 5490, 0, 5490, 5490, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5490, 5490, 5490, 5490, 5490, 5490, 5490, 0, 0, 0, 0, 0, 5490, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5490, 5490, 5490, 5490, 5491, 5491, 0, 5491, 5491, 5491, 5491, 5491, 5491, 0, 5491, 5491, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5491, 5491, 5491, 5491, 5491, 5491, 5491, 5491, 0, 0, 0, 0, 5491, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5491, 5491, 5491, 5491, 5492, 5492, 0, 5492, 5492, 5492, 5492, 5492, 5492, 0, 5492, 5492, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5492, 5492, 5492, 5492, 5492, 5492, 5492, 0, 0, 0, 0, 0, 5492, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5492, 5492, 5492, 5494, 5494, 0, 5494, 5494, 5494, 5494, 5494, 5494, 0, 5494, 5494, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5494, 5494, 5494, 5494, 5494, 5494, 5494, 5494, 0, 0, 0, 0, 5494, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5494, 5494, 5494, 5496, 5496, 0, 5496, 5496, 5496, 5496, 5496, 5496, 0, 5496, 5496, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5496, 5496, 5496, 5496, 5496, 5496, 5496, 0, 0, 0, 0, 0, 5496, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5496, 5496, 5496, 5496, 5497, 5497, 0, 5497, 5497, 5497, 5497, 5497, 5497, 0, 5497, 5497, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5497, 5497, 5497, 5497, 5497, 5497, 5497, 5497, 0, 0, 0, 0, 5497, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5497, 5497, 5497, 5497, 5498, 5498, 0, 5498, 5498, 5498, 5498, 5498, 5498, 0, 5498, 5498, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5498, 5498, 5498, 5498, 5498, 5498, 5498, 0, 0, 0, 0, 0, 5498, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5498, 5498, 5498, 5500, 5500, 0, 5500, 5500, 5500, 5500, 5500, 5500, 0, 5500, 5500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5500, 5500, 5500, 5500, 5500, 5500, 5500, 0, 0, 0, 0, 0, 5500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5500, 0, 0, 0, 0, 0, 5500, 5500, 5500, 5500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5500, 5501, 5501, 0, 5501, 5501, 5501, 5501, 5501, 5501, 0, 5501, 5501, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5501, 5501, 5501, 5501, 5501, 5501, 5501, 0, 0, 0, 0, 0, 5501, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5501, 5501, 5501, 5501, 5502, 5502, 0, 5502, 5502, 5502, 5502, 5502, 5502, 0, 5502, 5502, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5502, 5502, 5502, 5502, 5502, 5502, 5502, 5502, 0, 0, 0, 0, 5502, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5502, 5502, 5502, 5502, 5503, 5503, 0, 5503, 5503, 5503, 5503, 5503, 5503, 0, 5503, 5503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5503, 5503, 5503, 5503, 5503, 5503, 5503, 0, 0, 0, 0, 0, 5503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5503, 0, 0, 0, 0, 0, 5503, 5503, 5503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5503, 5504, 5504, 0, 5504, 5504, 5504, 5504, 5504, 5504, 0, 5504, 5504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 0, 0, 0, 0, 5504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5504, 5504, 5504, 5506, 5506, 0, 5506, 5506, 5506, 5506, 5506, 5506, 0, 5506, 5506, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5506, 5506, 5506, 5506, 5506, 5506, 5506, 0, 0, 0, 0, 0, 5506, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5506, 5506, 5506, 5507, 5507, 0, 5507, 5507, 5507, 5507, 5507, 5507, 0, 5507, 5507, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5507, 5507, 5507, 5507, 5507, 5507, 5507, 0, 0, 0, 0, 0, 5507, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5507, 5507, 5507, 5507, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5507, 5513, 0, 0, 0, 0, 0, 0, 0, 0, 5513, 5513, 5513, 5513, 5513, 5513, 5513, 5513, 5513, 5513, 0, 0, 0, 0, 0, 0, 5513, 5513, 5513, 5513, 5513, 5513, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5513, 0, 0, 0, 5513, 5513, 5513, 5513, 5513, 5513, 5515, 5515, 5515, 5515, 5515, 5515, 5515, 5515, 5515, 5515, 0, 0, 0, 0, 0, 0, 5515, 5515, 5515, 5515, 5515, 5515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5515, 5515, 5515, 5515, 5515, 5515, 5518, 0, 0, 0, 0, 0, 0, 0, 0, 5518, 5518, 5518, 5518, 5518, 5518, 5518, 5518, 5518, 0, 0, 0, 0, 0, 0, 0, 5518, 5518, 5518, 5518, 5518, 5518, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5518, 5518, 5518, 5518, 5518, 5518, 5519, 0, 5519, 5519, 5519, 5519, 5519, 5519, 5519, 5519, 5519, 5519, 0, 0, 0, 0, 0, 0, 5519, 5519, 5519, 5519, 5519, 5519, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5519, 5519, 5519, 5519, 5519, 5519, 5533, 0, 0, 0, 0, 0, 0, 0, 0, 5533, 5533, 5533, 5533, 5533, 5533, 5533, 5533, 5533, 5533, 0, 0, 0, 0, 0, 0, 5533, 5533, 5533, 5533, 5533, 5533, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5533, 5533, 5533, 5533, 5533, 5533, 0, 0, 0, 0, 0, 0, 0, 5533, 5535, 5535, 5535, 5535, 5535, 5535, 5535, 5535, 5535, 5535, 0, 0, 0, 0, 0, 0, 5535, 5535, 5535, 5535, 5535, 5535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5535, 5535, 5535, 5535, 5535, 5535, 5538, 0, 0, 0, 0, 0, 0, 0, 0, 5538, 5538, 5538, 5538, 5538, 5538, 5538, 5538, 5538, 0, 0, 0, 0, 0, 0, 0, 5538, 5538, 5538, 5538, 5538, 5538, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5538, 5538, 5538, 5538, 5538, 5538, 5539, 0, 5539, 5539, 5539, 5539, 5539, 5539, 5539, 5539, 5539, 5539, 0, 0, 0, 0, 0, 0, 5539, 5539, 5539, 5539, 5539, 5539, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5539, 5539, 5539, 5539, 5539, 5539, 5571, 0, 0, 0, 0, 0, 0, 5571, 5571, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5571, 0, 5571, 0, 5571, 0, 0, 5571, 0, 0, 0, 0, 5571, 0, 0, 5571, 0, 5571, 0, 5571, 0, 5571, 5571, 5571, 5572, 0, 0, 0, 0, 0, 0, 5572, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5572, 0, 5572, 0, 5572, 0, 0, 5572, 0, 0, 0, 0, 5572, 5572, 0, 5572, 0, 5572, 0, 5572, 0, 5572, 5572, 5572, 5574, 5574, 0, 0, 0, 0, 5574, 0, 0, 0, 5574, 5574, 5574, 5574, 5574, 5574, 5574, 5574, 5574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5574, 0, 0, 0, 0, 0, 0, 5574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5574, 0, 5574, 0, 5574, 0, 0, 5574, 0, 0, 0, 0, 5574, 0, 0, 5574, 0, 5574, 0, 5574, 0, 5574, 5574, 5574, 5575, 5575, 0, 0, 0, 0, 5575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5575, 0, 0, 0, 0, 0, 0, 5575, 0, 5575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5575, 0, 5575, 0, 5575, 0, 0, 5575, 0, 0, 0, 0, 5575, 0, 0, 5575, 0, 5575, 0, 5575, 0, 5575, 5575, 5575, 5586, 0, 0, 0, 0, 0, 0, 5586, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5586, 0, 5586, 0, 5586, 0, 0, 5586, 0, 0, 0, 0, 5586, 0, 0, 5586, 0, 5586, 0, 5586, 0, 5586, 5586, 5586, 5587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5587, 0, 0, 0, 0, 0, 0, 5587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5587, 0, 5587, 0, 5587, 0, 0, 5587, 0, 0, 0, 0, 5587, 0, 0, 5587, 0, 5587, 0, 5587, 0, 5587, 5587, 5587, 5588, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5588, 0, 0, 0, 0, 0, 0, 5588, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5588, 0, 5588, 0, 5588, 0, 0, 5588, 0, 0, 0, 0, 5588, 5588, 0, 5588, 0, 5588, 0, 5588, 0, 5588, 5588, 5588, 5589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5589, 0, 0, 5589, 0, 0, 0, 5589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5589, 0, 5589, 0, 5589, 0, 0, 5589, 0, 0, 0, 0, 5589, 0, 0, 5589, 0, 5589, 0, 5589, 0, 5589, 5589, 5589, 5590, 5590, 0, 0, 0, 0, 5590, 0, 0, 5590, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5590, 0, 0, 0, 0, 0, 0, 5590, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5590, 0, 5590, 0, 5590, 0, 0, 5590, 0, 0, 0, 0, 5590, 0, 0, 5590, 0, 5590, 0, 5590, 0, 5590, 5590, 5590, 5591, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5591, 0, 0, 0, 0, 0, 0, 5591, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5591, 0, 5591, 0, 5591, 0, 0, 5591, 5591, 0, 0, 0, 5591, 0, 0, 5591, 0, 5591, 0, 5591, 0, 5591, 5591, 5591, 5591, 5592, 5592, 0, 0, 0, 0, 5592, 0, 0, 5592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5592, 0, 0, 0, 0, 0, 0, 5592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5592, 0, 5592, 0, 5592, 0, 0, 5592, 0, 0, 0, 0, 5592, 0, 0, 5592, 0, 5592, 0, 5592, 0, 5592, 5592, 5592, 5616, 5616, 5616, 5616, 5616, 5616, 5616, 5616, 5616, 5616, 0, 0, 0, 0, 0, 0, 5616, 5616, 5616, 5616, 5616, 5616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5616, 5616, 5616, 5616, 5616, 5616, 5620, 5620, 5620, 5620, 5620, 5620, 5620, 5620, 5620, 0, 0, 0, 0, 0, 0, 5620, 5620, 5620, 5620, 5620, 5620, 5620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5620, 5620, 5620, 5620, 5620, 5620, 5626, 5626, 5626, 5626, 5626, 5626, 5626, 5626, 5626, 0, 0, 0, 0, 0, 0, 0, 5626, 5626, 5626, 5626, 5626, 5626, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5626, 5626, 5626, 5626, 5626, 5626, 5629, 5629, 5629, 5629, 5629, 5629, 5629, 5629, 5629, 5629, 0, 0, 0, 0, 0, 0, 5629, 5629, 5629, 5629, 5629, 5629, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5629, 5629, 5629, 5629, 5629, 5629, 5633, 5633, 5633, 5633, 5633, 5633, 5633, 5633, 5633, 0, 0, 0, 0, 0, 0, 0, 5633, 5633, 5633, 5633, 5633, 5633, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5633, 5633, 5633, 5633, 5633, 5633, 5636, 0, 5636, 5636, 5636, 5636, 5636, 5636, 5636, 5636, 5636, 5636, 0, 0, 0, 0, 0, 0, 5636, 5636, 5636, 5636, 5636, 5636, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5636, 5636, 5636, 5636, 5636, 5636, 5643, 5643, 5643, 5643, 5643, 5643, 5643, 5643, 5643, 0, 0, 0, 0, 0, 0, 0, 5643, 5643, 5643, 5643, 5643, 5643, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5643, 5643, 5643, 5643, 5643, 5643, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 0, 0, 0, 0, 0, 0, 5646, 5646, 5646, 5646, 5646, 5646, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5646, 5646, 5646, 5646, 5646, 5646, 5650, 5650, 5650, 5650, 5650, 5650, 5650, 5650, 5650, 5650, 0, 0, 0, 0, 0, 0, 5650, 5650, 5650, 5650, 5650, 5650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5650, 5650, 5650, 5650, 5650, 5650, 5654, 5654, 5654, 5654, 5654, 5654, 5654, 5654, 5654, 0, 0, 0, 0, 0, 0, 0, 5654, 5654, 5654, 5654, 5654, 5654, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5654, 5654, 5654, 5654, 5654, 5654, 5657, 5657, 5657, 5657, 5657, 5657, 5657, 5657, 5657, 5657, 0, 0, 0, 0, 0, 0, 5657, 5657, 5657, 5657, 5657, 5657, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5657, 5657, 5657, 5657, 5657, 5657, 5661, 5661, 5661, 5661, 5661, 5661, 5661, 5661, 5661, 5661, 0, 0, 0, 0, 0, 0, 5661, 5661, 5661, 5661, 5661, 5661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5661, 5661, 5661, 5661, 5661, 5661, 5665, 5665, 5665, 5665, 5665, 5665, 5665, 5665, 5665, 0, 0, 0, 0, 0, 0, 0, 5665, 5665, 5665, 5665, 5665, 5665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5665, 5665, 5665, 5665, 5665, 5665, 5668, 5668, 5668, 5668, 5668, 5668, 5668, 5668, 5668, 5668, 0, 0, 0, 0, 0, 0, 5668, 5668, 5668, 5668, 5668, 5668, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5668, 5668, 5668, 5668, 5668, 5668, 5672, 5672, 5672, 5672, 5672, 5672, 5672, 5672, 5672, 5672, 0, 0, 0, 0, 0, 0, 5672, 5672, 5672, 5672, 5672, 5672, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5672, 5672, 5672, 5672, 5672, 5672, 5673, 5673, 5673, 5673, 5673, 5673, 5673, 5673, 5673, 5673, 0, 0, 0, 0, 0, 0, 5673, 5673, 5673, 5673, 5673, 5673, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5673, 5673, 5673, 5673, 5673, 5673, 5675, 5675, 5675, 5675, 5675, 5675, 5675, 5675, 5675, 0, 0, 0, 0, 0, 0, 0, 5675, 5675, 5675, 5675, 5675, 5675, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5675, 5675, 5675, 5675, 5675, 5675, 5678, 5678, 5678, 5678, 5678, 5678, 5678, 5678, 5678, 0, 0, 0, 0, 0, 0, 0, 5678, 5678, 5678, 5678, 5678, 5678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5678, 5678, 5678, 5678, 5678, 5678, 5679, 5679, 5679, 5679, 5679, 5679, 5679, 5679, 5679, 5679, 0, 0, 0, 0, 0, 0, 5679, 5679, 5679, 5679, 5679, 5679, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5679, 5679, 5679, 5679, 5679, 5679, 5684, 5684, 0, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5694, 5694, 0, 5694, 5694, 5694, 5694, 5694, 5694, 0, 5694, 5694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5694, 5694, 5694, 5694, 5694, 5694, 5694, 0, 0, 0, 0, 0, 5694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5694, 5694, 5694, 5695, 5695, 0, 5695, 5695, 5695, 5695, 5695, 5695, 0, 5695, 5695, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5695, 5695, 5695, 5695, 5695, 5695, 5695, 5695, 0, 0, 0, 0, 5695, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5695, 5695, 5695, 5699, 5699, 0, 5699, 5699, 5699, 5699, 5699, 5699, 0, 5699, 5699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5699, 5699, 5699, 5699, 5699, 5699, 5699, 0, 0, 0, 0, 0, 5699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5699, 5699, 5699, 5700, 5700, 0, 5700, 5700, 5700, 5700, 5700, 5700, 0, 5700, 5700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5700, 5700, 5700, 5700, 5700, 5700, 5700, 5700, 0, 0, 0, 0, 5700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5700, 5700, 5700, 5703, 5703, 0, 5703, 5703, 5703, 5703, 5703, 5703, 0, 5703, 5703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5703, 5703, 5703, 5703, 5703, 5703, 5703, 0, 0, 0, 0, 0, 5703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5703, 5703, 5703, 5704, 5704, 0, 5704, 5704, 5704, 5704, 5704, 5704, 0, 5704, 5704, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5704, 5704, 5704, 5704, 5704, 5704, 5704, 5704, 0, 0, 0, 0, 5704, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5704, 5704, 5704, 5707, 5707, 0, 5707, 5707, 5707, 5707, 5707, 5707, 0, 5707, 5707, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5707, 5707, 5707, 5707, 5707, 5707, 5707, 0, 0, 0, 0, 0, 5707, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5707, 5707, 5707, 5708, 5708, 0, 5708, 5708, 5708, 5708, 5708, 5708, 0, 5708, 5708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5708, 5708, 5708, 5708, 5708, 5708, 5708, 5708, 0, 0, 0, 0, 5708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5708, 5708, 5708, 5710, 5710, 0, 5710, 5710, 5710, 5710, 5710, 5710, 0, 5710, 5710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5710, 5710, 5710, 5710, 5710, 5710, 5710, 0, 0, 0, 0, 0, 5710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5710, 5710, 5710, 5711, 5711, 0, 5711, 5711, 5711, 5711, 5711, 5711, 0, 5711, 5711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5711, 5711, 5711, 5711, 5711, 5711, 5711, 5711, 0, 0, 0, 0, 5711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5711, 5711, 5711, 5712, 5712, 0, 5712, 5712, 5712, 5712, 5712, 5712, 0, 5712, 5712, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5712, 5712, 5712, 5712, 5712, 5712, 5712, 0, 0, 0, 0, 0, 5712, 5712, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5712, 5712, 5712, 0, 0, 0, 0, 0, 0, 0, 5712, 5713, 5713, 0, 5713, 5713, 5713, 5713, 5713, 5713, 0, 5713, 5713, 0, 5713, 5713, 5713, 5713, 5713, 5713, 5713, 5713, 5713, 5713, 5713, 5713, 5713, 5713, 5713, 0, 0, 0, 0, 0, 5713, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5713, 5713, 5713, 5714, 5714, 0, 5714, 5714, 5714, 5714, 5714, 5714, 0, 5714, 5714, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5714, 5714, 5714, 5714, 5714, 5714, 5714, 0, 0, 0, 0, 0, 5714, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5714, 5714, 5714, 5715, 5715, 0, 5715, 5715, 5715, 5715, 5715, 5715, 0, 5715, 5715, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5715, 5715, 5715, 5715, 5715, 5715, 5715, 0, 0, 0, 0, 0, 5715, 5715, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5715, 5715, 5715, 0, 0, 0, 0, 0, 0, 0, 5715, 5717, 5717, 0, 5717, 5717, 5717, 5717, 5717, 5717, 0, 5717, 5717, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5717, 5717, 5717, 5717, 5717, 5717, 5717, 0, 0, 0, 0, 0, 5717, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5717, 5717, 5717, 5718, 5718, 0, 5718, 5718, 5718, 5718, 5718, 5718, 0, 5718, 5718, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5718, 5718, 5718, 5718, 5718, 5718, 5718, 5718, 0, 0, 0, 0, 5718, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5718, 5718, 5718, 5722, 5722, 0, 5722, 5722, 5722, 5722, 5722, 5722, 0, 5722, 5722, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5722, 5722, 5722, 5722, 5722, 5722, 5722, 0, 0, 0, 0, 0, 5722, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5722, 5722, 5722, 5723, 5723, 0, 5723, 5723, 5723, 5723, 5723, 5723, 0, 5723, 5723, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5723, 5723, 5723, 5723, 5723, 5723, 5723, 5723, 0, 0, 0, 0, 5723, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5723, 5723, 5723, 5727, 5727, 0, 5727, 5727, 5727, 5727, 5727, 5727, 0, 5727, 5727, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5727, 5727, 5727, 5727, 5727, 5727, 5727, 0, 0, 0, 0, 0, 5727, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5727, 5727, 5727, 5728, 5728, 0, 5728, 5728, 5728, 5728, 5728, 5728, 0, 5728, 5728, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5728, 5728, 5728, 5728, 5728, 5728, 5728, 5728, 0, 0, 0, 0, 5728, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5728, 5728, 5728, 5731, 5731, 0, 5731, 5731, 5731, 5731, 5731, 5731, 0, 5731, 5731, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5731, 5731, 5731, 5731, 5731, 5731, 5731, 0, 0, 0, 0, 0, 5731, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5731, 5731, 5731, 5732, 5732, 0, 5732, 5732, 5732, 5732, 5732, 5732, 0, 5732, 5732, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 0, 0, 0, 0, 5732, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5732, 5732, 5732, 5734, 5734, 0, 5734, 5734, 5734, 5734, 5734, 5734, 0, 5734, 5734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 0, 0, 0, 0, 0, 5734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5734, 0, 0, 0, 0, 0, 5734, 5734, 5734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5734, 5735, 5735, 0, 5735, 5735, 5735, 5735, 5735, 5735, 0, 5735, 5735, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5735, 5735, 5735, 5735, 5735, 5735, 5735, 0, 0, 0, 0, 0, 5735, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5735, 5735, 5735, 5736, 5736, 0, 5736, 5736, 5736, 5736, 5736, 5736, 0, 5736, 5736, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5736, 5736, 5736, 5736, 5736, 5736, 5736, 5736, 0, 0, 0, 0, 5736, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5736, 5736, 5736, 5737, 5737, 0, 5737, 5737, 5737, 5737, 5737, 5737, 0, 5737, 5737, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5737, 5737, 5737, 5737, 5737, 5737, 5737, 0, 0, 0, 0, 0, 5737, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5737, 5737, 5737, 5738, 5738, 0, 5738, 5738, 5738, 5738, 5738, 5738, 0, 5738, 5738, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5738, 5738, 5738, 5738, 5738, 5738, 5738, 5738, 0, 0, 0, 0, 5738, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5738, 5738, 5738, 5742, 5742, 0, 5742, 5742, 5742, 5742, 5742, 5742, 0, 5742, 5742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5742, 5742, 5742, 5742, 5742, 5742, 5742, 0, 0, 0, 0, 0, 5742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5742, 5742, 5742, 5743, 5743, 0, 5743, 5743, 5743, 5743, 5743, 5743, 0, 5743, 5743, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5743, 5743, 5743, 5743, 5743, 5743, 5743, 5743, 0, 0, 0, 0, 5743, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5743, 5743, 5743, 5746, 5746, 0, 5746, 5746, 5746, 5746, 5746, 5746, 0, 5746, 5746, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5746, 5746, 5746, 5746, 5746, 5746, 5746, 0, 0, 0, 0, 0, 5746, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5746, 5746, 5746, 5747, 5747, 0, 5747, 5747, 5747, 5747, 5747, 5747, 0, 5747, 5747, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 0, 0, 0, 0, 5747, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5747, 5747, 5747, 5749, 5749, 0, 5749, 5749, 5749, 5749, 5749, 5749, 0, 5749, 5749, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5749, 5749, 5749, 5749, 5749, 5749, 5749, 0, 0, 0, 0, 0, 5749, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5749, 0, 0, 0, 0, 0, 5749, 5749, 5749, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5749, 5750, 5750, 0, 5750, 5750, 5750, 5750, 5750, 5750, 0, 5750, 5750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5750, 5750, 5750, 5750, 5750, 5750, 5750, 0, 0, 0, 0, 0, 5750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5750, 5750, 5750, 5751, 5751, 0, 5751, 5751, 5751, 5751, 5751, 5751, 0, 5751, 5751, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5751, 5751, 5751, 5751, 5751, 5751, 5751, 5751, 0, 0, 0, 0, 5751, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5751, 5751, 5751, 5754, 5754, 0, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5754, 5755, 0, 0, 0, 0, 0, 0, 0, 0, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 5762, 0, 0, 0, 0, 0, 0, 0, 0, 5762, 5762, 5762, 5762, 5762, 5762, 5762, 5762, 5762, 0, 0, 0, 0, 0, 0, 0, 5762, 5762, 5762, 5762, 5762, 5762, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5762, 5762, 5762, 5762, 5762, 5762, 5765, 5765, 5765, 5765, 5765, 5765, 5765, 5765, 5765, 0, 0, 0, 0, 0, 0, 0, 5765, 5765, 5765, 5765, 5765, 5765, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5765, 5765, 5765, 5765, 5765, 5765, 5768, 0, 5768, 5768, 5768, 5768, 5768, 5768, 5768, 5768, 5768, 5768, 0, 0, 0, 0, 0, 0, 5768, 5768, 5768, 5768, 5768, 5768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5768, 5768, 5768, 5768, 5768, 5768, 5772, 5772, 5772, 5772, 5772, 5772, 5772, 5772, 5772, 0, 0, 0, 0, 0, 0, 0, 5772, 5772, 5772, 5772, 5772, 5772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5772, 5772, 5772, 5772, 5772, 5772, 5775, 0, 5775, 5775, 5775, 5775, 5775, 5775, 5775, 5775, 5775, 5775, 0, 0, 0, 0, 0, 0, 5775, 5775, 5775, 5775, 5775, 5775, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5775, 5775, 5775, 5775, 5775, 5775, 5778, 5778, 5778, 5778, 5778, 5778, 5778, 5778, 5778, 0, 0, 0, 0, 0, 0, 0, 5778, 5778, 5778, 5778, 5778, 5778, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5778, 5778, 5778, 5778, 5778, 5778, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 0, 0, 0, 0, 0, 0, 5781, 5781, 5781, 5781, 5781, 5781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5781, 5781, 5781, 5781, 5781, 5781, 5784, 5784, 5784, 5784, 5784, 5784, 5784, 5784, 5784, 0, 0, 0, 0, 0, 0, 0, 5784, 5784, 5784, 5784, 5784, 5784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5784, 5784, 5784, 5784, 5784, 5784, 5787, 5787, 5787, 5787, 5787, 5787, 5787, 5787, 5787, 5787, 0, 0, 0, 0, 0, 0, 5787, 5787, 5787, 5787, 5787, 5787, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5787, 5787, 5787, 5787, 5787, 5787, 5790, 5790, 5790, 5790, 5790, 5790, 5790, 5790, 5790, 0, 0, 0, 0, 0, 0, 0, 5790, 5790, 5790, 5790, 5790, 5790, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5790, 5790, 5790, 5790, 5790, 5790, 5793, 5793, 5793, 5793, 5793, 5793, 5793, 5793, 5793, 5793, 0, 0, 0, 0, 0, 0, 5793, 5793, 5793, 5793, 5793, 5793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5793, 5793, 5793, 5793, 5793, 5793, 5796, 5796, 0, 5796, 5796, 5796, 5796, 5796, 5796, 0, 5796, 5796, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5796, 5796, 5796, 5796, 5796, 5796, 5796, 0, 0, 0, 0, 0, 5796, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5796, 5796, 5796, 0, 0, 0, 0, 0, 5796, 5797, 5797, 0, 5797, 5797, 5797, 5797, 5797, 5797, 5797, 5797, 5797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5797, 5797, 5797, 5797, 5797, 5797, 5797, 0, 0, 0, 0, 0, 5797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5797, 5797, 5797, 5797, 5800, 5800, 0, 5800, 5800, 5800, 5800, 5800, 5800, 5800, 5800, 5800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5800, 5800, 5800, 5800, 5800, 5800, 5800, 0, 0, 0, 0, 0, 5800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5800, 5800, 5800, 5800, 5800, 5801, 5801, 0, 5801, 5801, 5801, 5801, 5801, 5801, 0, 5801, 5801, 5801, 5801, 5801, 5801, 5801, 5801, 5801, 5801, 5801, 5801, 5801, 5801, 5801, 5801, 5801, 5801, 0, 0, 0, 0, 0, 5801, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5801, 5801, 5801, 5802, 5802, 0, 5802, 5802, 5802, 5802, 5802, 5802, 0, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 0, 0, 0, 0, 0, 5802, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5802, 5802, 5802, 5809, 5809, 5809, 5809, 5809, 5809, 5809, 5809, 5809, 0, 0, 0, 0, 0, 0, 0, 5809, 5809, 5809, 5809, 5809, 5809, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5809, 5809, 5809, 5809, 5809, 5809, 5812, 5812, 5812, 5812, 5812, 5812, 5812, 5812, 5812, 5812, 0, 0, 0, 0, 0, 0, 5812, 5812, 5812, 5812, 5812, 5812, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5812, 5812, 5812, 5812, 5812, 5812, 5816, 5816, 5816, 5816, 5816, 5816, 5816, 5816, 5816, 5816, 0, 0, 0, 0, 0, 0, 5816, 5816, 5816, 5816, 5816, 5816, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5816, 5816, 5816, 5816, 5816, 5816, 5817, 5817, 5817, 5817, 5817, 5817, 5817, 5817, 5817, 0, 0, 0, 0, 0, 0, 0, 5817, 5817, 5817, 5817, 5817, 5817, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5817, 5817, 5817, 5817, 5817, 5817, 5820, 5820, 0, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5820, 5821, 5821, 0, 5821, 5821, 5821, 5821, 5821, 5821, 0, 5821, 5821, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5821, 5821, 5821, 5821, 5821, 5821, 5821, 0, 0, 0, 0, 0, 5821, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5821, 5821, 5821, 5821, 5822, 5822, 0, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5822, 5827, 5827, 0, 5827, 5827, 5827, 5827, 5827, 5827, 5827, 5827, 5827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5827, 5827, 5827, 5827, 5827, 5827, 5827, 0, 0, 0, 0, 0, 5827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5827, 5827, 5827, 5827, 5830, 0, 5830, 5830, 5830, 5830, 5830, 5830, 5830, 5830, 5830, 5830, 0, 0, 0, 0, 0, 0, 5830, 5830, 5830, 5830, 5830, 5830, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5830, 5830, 5830, 5830, 5830, 5830, 5831, 5831, 0, 5831, 5831, 5831, 5831, 5831, 5831, 0, 5831, 5831, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5831, 5831, 5831, 5831, 5831, 5831, 5831, 0, 0, 0, 0, 0, 5831, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5831, 0, 0, 0, 0, 5831, 5831, 5831, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5831, 5834, 5834, 0, 5834, 5834, 5834, 5834, 5834, 5834, 0, 5834, 5834, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5834, 5834, 5834, 5834, 5834, 5834, 5834, 0, 0, 0, 0, 0, 5834, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5834, 5834, 5834, 0, 0, 0, 0, 5834, 5849, 0, 0, 0, 0, 0, 0, 0, 5849, 5849, 5849, 5849, 5849, 5849, 5849, 5849, 5849, 5849, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5849, 5865, 5865, 0, 5865, 5865, 5865, 5865, 5865, 5865, 0, 5865, 5865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5865, 5865, 5865, 5865, 5865, 5865, 5865, 0, 0, 0, 0, 0, 5865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5865, 5865, 5865, 5866, 5866, 0, 5866, 5866, 5866, 5866, 5866, 5866, 0, 5866, 5866, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5866, 5866, 5866, 5866, 5866, 5866, 5866, 5866, 0, 0, 0, 0, 5866, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5866, 5866, 5866, 5870, 5870, 0, 5870, 5870, 5870, 5870, 5870, 5870, 0, 5870, 5870, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5870, 5870, 5870, 5870, 5870, 5870, 5870, 0, 0, 0, 0, 0, 5870, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5870, 5870, 5870, 5871, 5871, 0, 5871, 5871, 5871, 5871, 5871, 5871, 0, 5871, 5871, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5871, 5871, 5871, 5871, 5871, 5871, 5871, 5871, 0, 0, 0, 0, 5871, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5871, 5871, 5871, 5872, 5872, 0, 5872, 5872, 5872, 5872, 5872, 5872, 0, 5872, 5872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5872, 5872, 5872, 5872, 5872, 5872, 5872, 0, 0, 0, 0, 0, 5872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5872, 5872, 5872, 5873, 5873, 0, 5873, 5873, 5873, 5873, 5873, 5873, 0, 5873, 5873, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5873, 5873, 5873, 5873, 5873, 5873, 5873, 5873, 0, 0, 0, 0, 5873, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5873, 5873, 5873, 5874, 5874, 0, 5874, 5874, 5874, 5874, 5874, 5874, 0, 5874, 5874, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5874, 5874, 5874, 5874, 5874, 5874, 5874, 0, 0, 0, 0, 0, 5874, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5874, 0, 0, 0, 0, 5874, 5874, 5874, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5874, 5878, 5878, 0, 5878, 5878, 5878, 5878, 5878, 5878, 0, 5878, 5878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5878, 5878, 5878, 5878, 5878, 5878, 5878, 0, 0, 0, 0, 0, 5878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5878, 5878, 5878, 5879, 5879, 0, 5879, 5879, 5879, 5879, 5879, 5879, 0, 5879, 5879, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5879, 5879, 5879, 5879, 5879, 5879, 5879, 5879, 0, 0, 0, 0, 5879, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5879, 5879, 5879, 5882, 5882, 0, 5882, 5882, 5882, 5882, 5882, 5882, 0, 5882, 5882, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5882, 5882, 5882, 5882, 5882, 5882, 5882, 0, 0, 0, 0, 0, 5882, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5882, 5882, 5882, 5883, 5883, 0, 5883, 5883, 5883, 5883, 5883, 5883, 0, 5883, 5883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5883, 5883, 5883, 5883, 5883, 5883, 5883, 5883, 0, 0, 0, 0, 5883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5883, 5883, 5883, 5885, 5885, 0, 5885, 5885, 5885, 5885, 5885, 5885, 0, 5885, 5885, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5885, 5885, 5885, 5885, 5885, 5885, 5885, 0, 0, 0, 0, 0, 5885, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5885, 5885, 5885, 5886, 5886, 0, 5886, 5886, 5886, 5886, 5886, 5886, 0, 5886, 5886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5886, 5886, 5886, 5886, 5886, 5886, 5886, 5886, 0, 0, 0, 0, 5886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5886, 5886, 5886, 5887, 5887, 0, 5887, 5887, 5887, 5887, 5887, 5887, 0, 5887, 5887, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5887, 5887, 5887, 5887, 5887, 5887, 5887, 0, 0, 0, 0, 0, 5887, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5887, 0, 0, 5887, 5887, 5887, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5887, 5888, 5888, 0, 5888, 5888, 5888, 5888, 5888, 5888, 0, 5888, 5888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5888, 5888, 5888, 5888, 5888, 5888, 5888, 0, 0, 0, 0, 0, 5888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5888, 5888, 5888, 5889, 5889, 0, 5889, 5889, 5889, 5889, 5889, 5889, 0, 5889, 5889, 5889, 5889, 5889, 5889, 5889, 5889, 5889, 5889, 5889, 5889, 5889, 5889, 5889, 5889, 5889, 5889, 0, 0, 0, 0, 0, 5889, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5889, 5889, 5889, 5891, 5891, 0, 5891, 5891, 5891, 5891, 5891, 5891, 0, 5891, 5891, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5891, 5891, 5891, 5891, 5891, 5891, 5891, 0, 0, 0, 0, 0, 5891, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5891, 5891, 5891, 5892, 5892, 0, 5892, 5892, 5892, 5892, 5892, 5892, 0, 5892, 5892, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5892, 5892, 5892, 5892, 5892, 5892, 5892, 5892, 0, 0, 0, 0, 5892, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5892, 5892, 5892, 5893, 5893, 0, 5893, 5893, 5893, 5893, 5893, 5893, 0, 5893, 5893, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5893, 5893, 5893, 5893, 5893, 5893, 5893, 0, 0, 0, 0, 0, 5893, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5893, 0, 0, 5893, 5893, 5893, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5893, 5907, 5907, 0, 5907, 5907, 5907, 5907, 5907, 5907, 0, 5907, 5907, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5907, 5907, 5907, 5907, 5907, 5907, 5907, 0, 0, 0, 0, 0, 5907, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5907, 5907, 5907, 5908, 5908, 0, 5908, 5908, 5908, 5908, 5908, 5908, 0, 5908, 5908, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5908, 5908, 5908, 5908, 5908, 5908, 5908, 5908, 0, 0, 0, 0, 5908, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5908, 5908, 5908, 5922, 5922, 0, 5922, 5922, 5922, 5922, 5922, 5922, 0, 5922, 5922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5922, 5922, 5922, 5922, 5922, 5922, 5922, 0, 0, 0, 0, 0, 5922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5922, 5922, 5922, 5923, 5923, 0, 5923, 5923, 5923, 5923, 5923, 5923, 0, 5923, 5923, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5923, 5923, 5923, 5923, 5923, 5923, 5923, 5923, 0, 0, 0, 0, 5923, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5923, 5923, 5923, 5946, 5946, 0, 5946, 5946, 5946, 5946, 5946, 5946, 0, 5946, 5946, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5946, 5946, 5946, 5946, 5946, 5946, 5946, 0, 0, 0, 0, 0, 5946, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5946, 5946, 5946, 0, 0, 0, 5946, 5948, 5948, 0, 5948, 5948, 5948, 5948, 5948, 5948, 0, 5948, 5948, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5948, 5948, 5948, 5948, 5948, 5948, 5948, 5948, 0, 0, 0, 0, 5948, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5948, 5948, 5948, 0, 0, 0, 5948, 5950, 5950, 0, 5950, 5950, 5950, 5950, 5950, 5950, 0, 5950, 5950, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5950, 5950, 5950, 5950, 5950, 5950, 5950, 0, 0, 0, 0, 0, 5950, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5950, 5950, 5950, 0, 5950, 5951, 5951, 0, 5951, 5951, 5951, 5951, 5951, 5951, 0, 5951, 5951, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5951, 5951, 5951, 5951, 5951, 5951, 5951, 0, 0, 0, 0, 0, 5951, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5951, 5951, 5951, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5951, 5952, 5952, 5952, 5952, 5952, 5952, 5952, 5952, 5952, 0, 5952, 5952, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5952, 5952, 5952, 5952, 5952, 5952, 5952, 0, 0, 0, 0, 0, 5952, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5952, 5952, 5952, 5953, 5953, 5953, 5953, 5953, 5953, 5953, 5953, 5953, 0, 5953, 5953, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5953, 5953, 5953, 5953, 5953, 5953, 5953, 5953, 0, 0, 0, 0, 5953, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5953, 5953, 5953, 5956, 5956, 5956, 5956, 5956, 5956, 5956, 5956, 5956, 0, 5956, 5956, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5956, 5956, 5956, 5956, 5956, 5956, 5956, 0, 0, 0, 0, 0, 5956, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5956, 5956, 5956, 5957, 5957, 5957, 5957, 5957, 5957, 5957, 5957, 5957, 0, 5957, 5957, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5957, 5957, 5957, 5957, 5957, 5957, 5957, 0, 0, 0, 0, 0, 5957, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5957, 0, 0, 0, 0, 5957, 5957, 5957, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5957, 5958, 5958, 5958, 5958, 5958, 5958, 5958, 5958, 5958, 0, 5958, 5958, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5958, 5958, 5958, 5958, 5958, 5958, 5958, 5958, 0, 0, 0, 0, 5958, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5958, 5958, 5958, 5961, 5961, 5961, 5961, 5961, 5961, 5961, 5961, 5961, 0, 5961, 5961, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5961, 5961, 5961, 5961, 5961, 5961, 5961, 0, 0, 0, 0, 0, 5961, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5961, 5961, 5961, 5962, 5962, 5962, 5962, 5962, 5962, 5962, 5962, 5962, 0, 5962, 5962, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5962, 5962, 5962, 5962, 5962, 5962, 5962, 5962, 0, 0, 0, 0, 5962, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5962, 5962, 5962, 5964, 5964, 5964, 5964, 5964, 5964, 5964, 5964, 5964, 0, 5964, 5964, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5964, 5964, 5964, 5964, 5964, 5964, 5964, 0, 0, 0, 0, 0, 5964, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5964, 5964, 5964, 5965, 5965, 5965, 5965, 5965, 5965, 5965, 5965, 5965, 0, 5965, 5965, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5965, 5965, 5965, 5965, 5965, 5965, 5965, 5965, 0, 0, 0, 0, 5965, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5965, 5965, 5965, 5966, 5966, 5966, 5966, 5966, 5966, 5966, 5966, 5966, 0, 5966, 5966, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5966, 5966, 5966, 5966, 5966, 5966, 5966, 0, 0, 0, 0, 0, 5966, 5966, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5966, 5966, 5966, 0, 0, 0, 0, 0, 0, 0, 5966, 5967, 5967, 0, 5967, 5967, 5967, 5967, 5967, 5967, 0, 5967, 5967, 0, 5967, 5967, 5967, 5967, 5967, 5967, 5967, 5967, 5967, 5967, 5967, 5967, 5967, 5967, 5967, 0, 0, 0, 0, 0, 5967, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5967, 5967, 5967, 5968, 5968, 5968, 5968, 5968, 5968, 5968, 5968, 5968, 0, 5968, 5968, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5968, 5968, 5968, 5968, 5968, 5968, 5968, 0, 0, 0, 0, 0, 5968, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5968, 5968, 5968, 5969, 5969, 5969, 5969, 5969, 5969, 5969, 5969, 5969, 0, 5969, 5969, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5969, 5969, 5969, 5969, 5969, 5969, 5969, 0, 0, 0, 0, 0, 5969, 5969, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5969, 5969, 5969, 0, 0, 0, 0, 0, 0, 0, 5969, 5975, 5975, 5975, 5975, 5975, 5975, 5975, 5975, 5975, 0, 5975, 5975, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5975, 5975, 5975, 5975, 5975, 5975, 5975, 0, 0, 0, 0, 0, 5975, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5975, 5975, 5975, 5976, 5976, 5976, 5976, 5976, 5976, 5976, 5976, 5976, 0, 5976, 5976, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5976, 5976, 5976, 5976, 5976, 5976, 5976, 5976, 0, 0, 0, 0, 5976, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5976, 5976, 5976, 5980, 5980, 5980, 5980, 5980, 5980, 5980, 5980, 5980, 0, 5980, 5980, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5980, 5980, 5980, 5980, 5980, 5980, 5980, 0, 0, 0, 0, 0, 5980, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5980, 5980, 5980, 5981, 5981, 5981, 5981, 5981, 5981, 5981, 5981, 5981, 0, 5981, 5981, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5981, 5981, 5981, 5981, 5981, 5981, 5981, 5981, 0, 0, 0, 0, 5981, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5981, 5981, 5981, 5985, 5985, 5985, 5985, 5985, 5985, 5985, 5985, 5985, 0, 5985, 5985, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985, 5985, 5985, 5985, 5985, 5985, 5985, 0, 0, 0, 0, 0, 5985, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985, 5985, 5985, 5986, 5986, 5986, 5986, 5986, 5986, 5986, 5986, 5986, 0, 5986, 5986, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5986, 5986, 5986, 5986, 5986, 5986, 5986, 5986, 0, 0, 0, 0, 5986, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5986, 5986, 5986, 5989, 5989, 5989, 5989, 5989, 5989, 5989, 5989, 5989, 0, 5989, 5989, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5989, 5989, 5989, 5989, 5989, 5989, 5989, 0, 0, 0, 0, 0, 5989, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5989, 5989, 5989, 5990, 5990, 5990, 5990, 5990, 5990, 5990, 5990, 5990, 0, 5990, 5990, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5990, 5990, 5990, 5990, 5990, 5990, 5990, 5990, 0, 0, 0, 0, 5990, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5990, 5990, 5990, 5992, 5992, 5992, 5992, 5992, 5992, 5992, 5992, 5992, 0, 5992, 5992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5992, 5992, 5992, 5992, 5992, 5992, 5992, 0, 0, 0, 0, 0, 5992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5992, 0, 0, 0, 0, 0, 5992, 5992, 5992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5992, 5993, 5993, 5993, 5993, 5993, 5993, 5993, 5993, 5993, 0, 5993, 5993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5993, 5993, 5993, 5993, 5993, 5993, 5993, 0, 0, 0, 0, 0, 5993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5993, 5993, 5993, 5994, 5994, 5994, 5994, 5994, 5994, 5994, 5994, 5994, 0, 5994, 5994, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5994, 5994, 5994, 5994, 5994, 5994, 5994, 5994, 0, 0, 0, 0, 5994, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5994, 5994, 5994, 5995, 5995, 5995, 5995, 5995, 5995, 5995, 5995, 5995, 0, 5995, 5995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5995, 5995, 5995, 5995, 5995, 5995, 5995, 0, 0, 0, 0, 0, 5995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5995, 5995, 5995, 5996, 5996, 5996, 5996, 5996, 5996, 5996, 5996, 5996, 0, 5996, 5996, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5996, 5996, 5996, 5996, 5996, 5996, 5996, 5996, 0, 0, 0, 0, 5996, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5996, 5996, 5996, 5999, 5999, 5999, 5999, 5999, 5999, 5999, 5999, 5999, 0, 5999, 5999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5999, 5999, 5999, 5999, 5999, 5999, 5999, 0, 0, 0, 0, 0, 5999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5999, 5999, 5999, 6000, 6000, 6000, 6000, 6000, 6000, 6000, 6000, 6000, 0, 6000, 6000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6000, 6000, 6000, 6000, 6000, 6000, 6000, 6000, 0, 0, 0, 0, 6000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6000, 6000, 6000, 6003, 6003, 6003, 6003, 6003, 6003, 6003, 6003, 6003, 0, 6003, 6003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6003, 6003, 6003, 6003, 6003, 6003, 6003, 0, 0, 0, 0, 0, 6003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6003, 6003, 6003, 6004, 6004, 6004, 6004, 6004, 6004, 6004, 6004, 6004, 0, 6004, 6004, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6004, 6004, 6004, 6004, 6004, 6004, 6004, 6004, 0, 0, 0, 0, 6004, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6004, 6004, 6004, 6006, 6006, 6006, 6006, 6006, 6006, 6006, 6006, 6006, 0, 6006, 6006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6006, 6006, 6006, 6006, 6006, 6006, 6006, 0, 0, 0, 0, 0, 6006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6006, 0, 0, 0, 0, 0, 6006, 6006, 6006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6006, 6007, 6007, 6007, 6007, 6007, 6007, 6007, 6007, 6007, 0, 6007, 6007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6007, 6007, 6007, 6007, 6007, 6007, 6007, 0, 0, 0, 0, 0, 6007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6007, 6007, 6007, 6008, 6008, 6008, 6008, 6008, 6008, 6008, 6008, 6008, 0, 6008, 6008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6008, 6008, 6008, 6008, 6008, 6008, 6008, 6008, 0, 0, 0, 0, 6008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6008, 6008, 6008, 6013, 6013, 0, 6013, 6013, 6013, 6013, 6013, 6013, 0, 6013, 6013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6013, 6013, 6013, 6013, 6013, 6013, 6013, 0, 0, 0, 0, 0, 6013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6013, 6013, 6013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6013, 6014, 6014, 0, 6014, 6014, 6014, 6014, 6014, 6014, 0, 6014, 6014, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6014, 6014, 6014, 6014, 6014, 6014, 6014, 0, 0, 0, 0, 0, 6014, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6014, 6014, 6014, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6014, 6016, 6016, 0, 6016, 6016, 6016, 6016, 6016, 6016, 0, 6016, 6016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6016, 6016, 6016, 6016, 6016, 6016, 6016, 0, 0, 0, 0, 0, 6016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6016, 6016, 6016, 0, 0, 0, 6016, 6017, 6017, 0, 6017, 6017, 6017, 6017, 6017, 6017, 0, 6017, 6017, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6017, 6017, 6017, 6017, 6017, 6017, 6017, 0, 0, 0, 0, 0, 6017, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6017, 6017, 6017, 6021, 6021, 0, 6021, 6021, 6021, 6021, 6021, 6021, 0, 6021, 6021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6021, 6021, 6021, 6021, 6021, 6021, 6021, 0, 0, 0, 0, 0, 6021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6021, 6021, 6021, 6027, 0, 0, 0, 0, 0, 0, 0, 0, 6027, 6027, 6027, 6027, 6027, 6027, 6027, 6027, 6027, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6027, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6027, 6030, 6030, 0, 6030, 6030, 6030, 6030, 6030, 6030, 0, 6030, 6030, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6030, 6030, 6030, 6030, 6030, 6030, 6030, 0, 0, 0, 0, 0, 6030, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6030, 6030, 6030, 6031, 6031, 0, 6031, 6031, 6031, 6031, 6031, 6031, 0, 6031, 6031, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6031, 6031, 6031, 6031, 6031, 6031, 6031, 6031, 0, 0, 0, 0, 6031, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6031, 6031, 6031, 6035, 6035, 0, 6035, 6035, 6035, 6035, 6035, 6035, 0, 6035, 6035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6035, 6035, 6035, 6035, 6035, 6035, 6035, 0, 0, 0, 0, 0, 6035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6035, 6035, 6035, 6036, 6036, 0, 6036, 6036, 6036, 6036, 6036, 6036, 0, 6036, 6036, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6036, 6036, 6036, 6036, 6036, 6036, 6036, 6036, 0, 0, 0, 0, 6036, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6036, 6036, 6036, 6038, 6038, 0, 6038, 6038, 6038, 6038, 6038, 6038, 0, 6038, 6038, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6038, 6038, 6038, 6038, 6038, 6038, 6038, 0, 0, 0, 0, 0, 6038, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6038, 6038, 6038, 6039, 6039, 0, 6039, 6039, 6039, 6039, 6039, 6039, 0, 6039, 6039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6039, 6039, 6039, 6039, 6039, 6039, 6039, 6039, 0, 0, 0, 0, 6039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6039, 6039, 6039, 6041, 6041, 0, 6041, 6041, 6041, 6041, 6041, 6041, 0, 6041, 6041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6041, 6041, 6041, 6041, 6041, 6041, 6041, 0, 0, 0, 0, 0, 6041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6041, 6041, 6041, 6042, 6042, 0, 6042, 6042, 6042, 6042, 6042, 6042, 0, 6042, 6042, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6042, 6042, 6042, 6042, 6042, 6042, 6042, 6042, 0, 0, 0, 0, 6042, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6042, 6042, 6042, 6043, 6043, 0, 6043, 6043, 6043, 6043, 6043, 6043, 0, 6043, 6043, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6043, 6043, 6043, 6043, 6043, 6043, 6043, 0, 0, 0, 0, 0, 6043, 0, 6043, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6043, 6043, 6043, 0, 0, 0, 0, 0, 0, 0, 0, 6043, 6046, 6046, 0, 6046, 6046, 6046, 6046, 6046, 6046, 0, 6046, 6046, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6046, 6046, 6046, 6046, 6046, 6046, 6046, 0, 0, 0, 0, 0, 6046, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6046, 6046, 6046, 6047, 6047, 0, 6047, 6047, 6047, 6047, 6047, 6047, 0, 6047, 6047, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6047, 6047, 6047, 6047, 6047, 6047, 6047, 6047, 0, 0, 0, 0, 6047, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6047, 6047, 6047, 6051, 6051, 0, 6051, 6051, 6051, 6051, 6051, 6051, 0, 6051, 6051, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6051, 6051, 6051, 6051, 6051, 6051, 6051, 0, 0, 0, 0, 0, 6051, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6051, 6051, 6051, 6052, 6052, 0, 6052, 6052, 6052, 6052, 6052, 6052, 0, 6052, 6052, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6052, 6052, 6052, 6052, 6052, 6052, 6052, 6052, 0, 0, 0, 0, 6052, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6052, 6052, 6052, 6055, 6055, 0, 6055, 6055, 6055, 6055, 6055, 6055, 0, 6055, 6055, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6055, 6055, 6055, 6055, 6055, 6055, 6055, 0, 0, 0, 0, 0, 6055, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6055, 6055, 6055, 6056, 6056, 0, 6056, 6056, 6056, 6056, 6056, 6056, 0, 6056, 6056, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6056, 6056, 6056, 6056, 6056, 6056, 6056, 6056, 0, 0, 0, 0, 6056, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6056, 6056, 6056, 6058, 6058, 0, 6058, 6058, 6058, 6058, 6058, 6058, 0, 6058, 6058, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6058, 6058, 6058, 6058, 6058, 6058, 6058, 0, 0, 0, 0, 0, 6058, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6058, 6058, 6058, 6059, 6059, 0, 6059, 6059, 6059, 6059, 6059, 6059, 0, 6059, 6059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6059, 6059, 6059, 6059, 6059, 6059, 6059, 6059, 0, 0, 0, 0, 6059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6059, 6059, 6059, 6060, 6060, 0, 6060, 6060, 6060, 6060, 6060, 6060, 6060, 6060, 6060, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6060, 6060, 6060, 6060, 6060, 6060, 6060, 6060, 0, 0, 0, 0, 6060, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6060, 6060, 6060, 6060, 6060, 6061, 6061, 0, 6061, 6061, 6061, 6061, 6061, 6061, 0, 6061, 6061, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6061, 6061, 6061, 6061, 6061, 6061, 6061, 0, 0, 0, 0, 0, 6061, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6061, 6061, 6061, 6062, 6062, 0, 6062, 6062, 6062, 6062, 6062, 6062, 0, 6062, 6062, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6062, 6062, 6062, 6062, 6062, 6062, 6062, 6062, 0, 0, 0, 0, 6062, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6062, 6062, 6062, 6065, 6065, 0, 6065, 6065, 6065, 6065, 6065, 6065, 0, 6065, 6065, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6065, 6065, 6065, 6065, 6065, 6065, 6065, 0, 0, 0, 0, 0, 6065, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6065, 6065, 6065, 6066, 6066, 0, 6066, 6066, 6066, 6066, 6066, 6066, 0, 6066, 6066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6066, 6066, 6066, 6066, 6066, 6066, 6066, 6066, 0, 0, 0, 0, 6066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6066, 6066, 6066, 6068, 6068, 0, 6068, 6068, 6068, 6068, 6068, 6068, 0, 6068, 6068, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6068, 6068, 6068, 6068, 6068, 6068, 6068, 0, 0, 0, 0, 0, 6068, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6068, 6068, 6068, 6069, 6069, 0, 6069, 6069, 6069, 6069, 6069, 6069, 0, 6069, 6069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6069, 6069, 6069, 6069, 6069, 6069, 6069, 6069, 0, 0, 0, 0, 6069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6069, 6069, 6069, 6070, 6070, 0, 6070, 6070, 6070, 6070, 6070, 6070, 6070, 6070, 6070, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6070, 6070, 6070, 6070, 6070, 6070, 6070, 6070, 0, 0, 0, 0, 6070, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6070, 6070, 6070, 6070, 6070, 6083, 6083, 6083, 6083, 6083, 6083, 6083, 6083, 6083, 6083, 6083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6083, 0, 6083, 6087, 6087, 0, 6087, 6087, 6087, 6087, 6087, 6087, 0, 6087, 6087, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6087, 6087, 6087, 6087, 6087, 6087, 6087, 0, 0, 0, 0, 0, 6087, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6087, 6087, 6087, 6087, 6088, 6088, 0, 6088, 6088, 6088, 6088, 6088, 6088, 0, 6088, 6088, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6088, 6088, 6088, 6088, 6088, 6088, 6088, 6088, 0, 0, 0, 0, 6088, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6088, 6088, 6088, 6088, 6092, 6092, 0, 6092, 6092, 6092, 6092, 6092, 6092, 0, 6092, 6092, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6092, 6092, 6092, 6092, 6092, 6092, 6092, 0, 0, 0, 0, 0, 6092, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6092, 6092, 6092, 6092, 6093, 6093, 0, 6093, 6093, 6093, 6093, 6093, 6093, 0, 6093, 6093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6093, 6093, 6093, 6093, 6093, 6093, 6093, 0, 0, 0, 0, 0, 6093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6093, 6093, 6093, 6093, 6094, 6094, 0, 6094, 6094, 6094, 6094, 6094, 6094, 0, 6094, 6094, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6094, 6094, 6094, 6094, 6094, 6094, 6094, 6094, 0, 0, 0, 0, 6094, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6094, 6094, 6094, 6094, 6095, 6095, 0, 6095, 6095, 6095, 6095, 6095, 6095, 0, 6095, 6095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6095, 6095, 6095, 6095, 6095, 6095, 6095, 0, 0, 0, 0, 0, 6095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6095, 6095, 6095, 6097, 6097, 0, 6097, 6097, 6097, 6097, 6097, 6097, 0, 6097, 6097, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6097, 6097, 6097, 6097, 6097, 6097, 6097, 6097, 0, 0, 0, 0, 6097, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6097, 6097, 6097, 6103, 6103, 0, 6103, 6103, 6103, 6103, 6103, 6103, 0, 6103, 6103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6103, 6103, 6103, 6103, 6103, 6103, 6103, 0, 0, 0, 0, 0, 6103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6103, 6103, 6103, 6103, 6107, 6107, 6107, 6107, 6107, 6107, 6107, 6107, 6107, 6107, 0, 0, 0, 0, 0, 0, 6107, 6107, 6107, 6107, 6107, 6107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6107, 6107, 6107, 6107, 6107, 6107, 6108, 6108, 6108, 6108, 6108, 6108, 6108, 6108, 6108, 6108, 0, 0, 0, 0, 0, 0, 6108, 6108, 6108, 6108, 6108, 6108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6108, 6108, 6108, 6108, 6108, 6108, 6110, 6110, 6110, 6110, 6110, 6110, 6110, 6110, 6110, 6110, 0, 0, 0, 0, 0, 0, 6110, 6110, 6110, 6110, 6110, 6110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6110, 6110, 6110, 6110, 6110, 6110, 6112, 6112, 6112, 6112, 6112, 6112, 6112, 6112, 6112, 0, 0, 0, 0, 0, 0, 0, 6112, 6112, 6112, 6112, 6112, 6112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6112, 0, 0, 0, 6112, 6112, 6112, 6112, 6112, 6112, 6116, 6116, 6116, 6116, 6116, 6116, 6116, 6116, 6116, 6116, 0, 0, 0, 0, 0, 0, 6116, 6116, 6116, 6116, 6116, 6116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6116, 6116, 6116, 6116, 6116, 6116, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 0, 0, 0, 0, 0, 0, 0, 6118, 6118, 6118, 6118, 6118, 6118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6118, 6118, 6118, 6118, 6118, 6118, 6128, 6128, 6128, 6128, 6128, 6128, 6128, 6128, 6128, 6128, 0, 0, 0, 0, 0, 0, 6128, 6128, 6128, 6128, 6128, 6128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6128, 6128, 6128, 6128, 6128, 6128, 6130, 6130, 6130, 6130, 6130, 6130, 6130, 6130, 6130, 0, 0, 0, 0, 0, 0, 0, 6130, 6130, 6130, 6130, 6130, 6130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6130, 6130, 6130, 6130, 6130, 6130, 6138, 6138, 6138, 6138, 6138, 6138, 6138, 6138, 6138, 6138, 0, 0, 0, 0, 0, 0, 6138, 6138, 6138, 6138, 6138, 6138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6138, 6138, 6138, 6138, 6138, 6138, 6141, 6141, 6141, 6141, 6141, 6141, 6141, 6141, 6141, 6141, 0, 0, 0, 0, 0, 0, 6141, 6141, 6141, 6141, 6141, 6141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6141, 6141, 6141, 6141, 6141, 6141, 6149, 6149, 6149, 6149, 6149, 6149, 6149, 6149, 6149, 0, 0, 0, 0, 0, 0, 0, 6149, 6149, 6149, 6149, 6149, 6149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6149, 6149, 6149, 6149, 6149, 6149, 6169, 6169, 0, 6169, 6169, 6169, 6169, 6169, 6169, 0, 6169, 6169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6169, 6169, 6169, 6169, 6169, 6169, 6169, 0, 0, 0, 0, 0, 6169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6169, 6169, 6169, 6169, 6170, 6170, 0, 6170, 6170, 6170, 6170, 6170, 6170, 0, 6170, 6170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6170, 6170, 6170, 6170, 6170, 6170, 6170, 6170, 0, 0, 0, 0, 6170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6170, 6170, 6170, 6170, 6171, 6171, 0, 6171, 6171, 6171, 6171, 6171, 6171, 0, 6171, 6171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6171, 6171, 6171, 6171, 6171, 6171, 6171, 0, 0, 0, 0, 0, 6171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6171, 6171, 6171, 6173, 6173, 0, 6173, 6173, 6173, 6173, 6173, 6173, 0, 6173, 6173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6173, 6173, 6173, 6173, 6173, 6173, 6173, 6173, 0, 0, 0, 0, 6173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6173, 6173, 6173, 6231, 0, 0, 0, 0, 0, 0, 0, 0, 6231, 6231, 6231, 6231, 6231, 6231, 6231, 6231, 6231, 0, 0, 0, 0, 0, 0, 0, 6231, 6231, 6231, 6231, 6231, 6231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6231, 0, 0, 0, 6231, 6231, 6231, 6231, 6231, 6231, 6234, 0, 6234, 6234, 6234, 6234, 6234, 6234, 6234, 6234, 6234, 6234, 0, 0, 0, 0, 0, 0, 6234, 6234, 6234, 6234, 6234, 6234, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6234, 6234, 6234, 6234, 6234, 6234, 6238, 6238, 6238, 6238, 6238, 6238, 6238, 6238, 6238, 6238, 0, 0, 0, 0, 0, 0, 6238, 6238, 6238, 6238, 6238, 6238, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6238, 6238, 6238, 6238, 6238, 6238, 6252, 0, 0, 0, 0, 0, 0, 0, 0, 6252, 6252, 6252, 6252, 6252, 6252, 6252, 6252, 6252, 0, 0, 0, 0, 0, 0, 0, 6252, 6252, 6252, 6252, 6252, 6252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6252, 6252, 6252, 6252, 6252, 6252, 0, 0, 0, 0, 0, 0, 0, 6252, 6255, 0, 6255, 6255, 6255, 6255, 6255, 6255, 6255, 6255, 6255, 6255, 0, 0, 0, 0, 0, 0, 6255, 6255, 6255, 6255, 6255, 6255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6255, 6255, 6255, 6255, 6255, 6255, 6259, 6259, 6259, 6259, 6259, 6259, 6259, 6259, 6259, 6259, 0, 0, 0, 0, 0, 0, 6259, 6259, 6259, 6259, 6259, 6259, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6259, 6259, 6259, 6259, 6259, 6259, 6285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6285, 0, 0, 0, 0, 0, 0, 6285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6285, 0, 6285, 0, 6285, 0, 0, 6285, 0, 0, 0, 0, 6285, 0, 0, 6285, 0, 6285, 0, 6285, 0, 6285, 6285, 6285, 6286, 6286, 0, 0, 0, 0, 6286, 0, 0, 6286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6286, 0, 0, 0, 0, 0, 0, 6286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6286, 0, 6286, 0, 6286, 0, 0, 6286, 0, 0, 0, 0, 6286, 0, 0, 6286, 0, 6286, 0, 6286, 0, 6286, 6286, 6286, 6288, 6288, 6288, 0, 0, 0, 6288, 0, 6288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6288, 0, 0, 0, 0, 0, 0, 6288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6288, 0, 6288, 0, 6288, 0, 0, 6288, 0, 0, 0, 0, 6288, 0, 0, 6288, 0, 6288, 0, 6288, 0, 6288, 6288, 6288, 6299, 0, 0, 0, 0, 0, 0, 6299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6299, 0, 6299, 0, 6299, 0, 0, 6299, 0, 0, 0, 0, 6299, 0, 0, 6299, 0, 6299, 0, 6299, 0, 6299, 6299, 6299, 6300, 0, 0, 0, 0, 0, 0, 6300, 6300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6300, 0, 0, 0, 0, 0, 0, 6300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6300, 0, 6300, 0, 6300, 0, 0, 6300, 0, 0, 0, 0, 6300, 0, 0, 6300, 0, 6300, 0, 6300, 0, 6300, 6300, 6300, 6301, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6301, 0, 0, 0, 0, 0, 0, 6301, 6301, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6301, 0, 6301, 0, 6301, 0, 0, 6301, 0, 0, 0, 0, 6301, 0, 0, 6301, 0, 6301, 0, 6301, 0, 6301, 6301, 6301, 6302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6302, 0, 0, 0, 0, 0, 0, 6302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6302, 0, 6302, 0, 6302, 0, 0, 6302, 0, 0, 0, 0, 6302, 6302, 0, 6302, 0, 6302, 0, 6302, 0, 6302, 6302, 6302, 6303, 6303, 0, 0, 0, 0, 6303, 0, 0, 6303, 6303, 6303, 6303, 6303, 6303, 6303, 6303, 6303, 6303, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6303, 0, 0, 0, 0, 0, 0, 6303, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6303, 0, 6303, 0, 6303, 0, 0, 6303, 0, 0, 0, 0, 6303, 0, 0, 6303, 0, 6303, 0, 6303, 0, 6303, 6303, 6303, 6304, 6304, 0, 0, 0, 0, 6304, 0, 0, 6304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6304, 0, 0, 0, 0, 0, 0, 6304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6304, 0, 6304, 0, 6304, 0, 6304, 6304, 0, 0, 0, 0, 6304, 0, 0, 6304, 0, 6304, 0, 6304, 0, 6304, 6304, 6304, 6316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6316, 0, 0, 0, 0, 0, 0, 6316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6316, 0, 6316, 0, 6316, 0, 0, 6316, 0, 0, 0, 0, 6316, 0, 0, 6316, 0, 6316, 0, 6316, 0, 6316, 6316, 6316, 6317, 6317, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6317, 0, 0, 0, 0, 0, 0, 6317, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6317, 0, 6317, 0, 6317, 0, 0, 6317, 0, 0, 0, 0, 6317, 0, 0, 6317, 0, 6317, 0, 6317, 0, 6317, 6317, 6317, 6324, 6324, 6324, 6324, 6324, 6324, 6324, 6324, 6324, 0, 0, 0, 0, 0, 0, 6324, 6324, 6324, 6324, 6324, 6324, 6324, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6324, 6324, 6324, 6324, 6324, 6324, 6327, 6327, 6327, 6327, 6327, 6327, 6327, 6327, 6327, 0, 0, 0, 0, 0, 0, 0, 6327, 6327, 6327, 6327, 6327, 6327, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6327, 6327, 6327, 6327, 6327, 6327, 6330, 0, 6330, 6330, 6330, 6330, 6330, 6330, 6330, 6330, 6330, 6330, 0, 0, 0, 0, 0, 0, 6330, 6330, 6330, 6330, 6330, 6330, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6330, 6330, 6330, 6330, 6330, 6330, 6334, 6334, 6334, 6334, 6334, 6334, 6334, 6334, 6334, 0, 0, 0, 0, 0, 0, 0, 6334, 6334, 6334, 6334, 6334, 6334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6334, 6334, 6334, 6334, 6334, 6334, 6337, 0, 6337, 6337, 6337, 6337, 6337, 6337, 6337, 6337, 6337, 6337, 0, 0, 0, 0, 0, 0, 6337, 6337, 6337, 6337, 6337, 6337, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6337, 6337, 6337, 6337, 6337, 6337, 6340, 6340, 6340, 6340, 6340, 6340, 6340, 6340, 6340, 0, 0, 0, 0, 0, 0, 0, 6340, 6340, 6340, 6340, 6340, 6340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6340, 6340, 6340, 6340, 6340, 6340, 6343, 6343, 6343, 6343, 6343, 6343, 6343, 6343, 6343, 6343, 0, 0, 0, 0, 0, 0, 6343, 6343, 6343, 6343, 6343, 6343, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6343, 6343, 6343, 6343, 6343, 6343, 6346, 6346, 6346, 6346, 6346, 6346, 6346, 6346, 6346, 0, 0, 0, 0, 0, 0, 0, 6346, 6346, 6346, 6346, 6346, 6346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6346, 6346, 6346, 6346, 6346, 6346, 6349, 6349, 6349, 6349, 6349, 6349, 6349, 6349, 6349, 6349, 0, 0, 0, 0, 0, 0, 6349, 6349, 6349, 6349, 6349, 6349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6349, 6349, 6349, 6349, 6349, 6349, 6352, 6352, 6352, 6352, 6352, 6352, 6352, 6352, 6352, 0, 0, 0, 0, 0, 0, 0, 6352, 6352, 6352, 6352, 6352, 6352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6352, 6352, 6352, 6352, 6352, 6352, 6355, 6355, 6355, 6355, 6355, 6355, 6355, 6355, 6355, 6355, 0, 0, 0, 0, 0, 0, 6355, 6355, 6355, 6355, 6355, 6355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6355, 6355, 6355, 6355, 6355, 6355, 6361, 6361, 6361, 6361, 6361, 6361, 6361, 6361, 6361, 0, 0, 0, 0, 0, 0, 0, 6361, 6361, 6361, 6361, 6361, 6361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6361, 6361, 6361, 6361, 6361, 6361, 6364, 6364, 6364, 6364, 6364, 6364, 6364, 6364, 6364, 6364, 0, 0, 0, 0, 0, 0, 6364, 6364, 6364, 6364, 6364, 6364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6364, 6364, 6364, 6364, 6364, 6364, 6368, 6368, 6368, 6368, 6368, 6368, 6368, 6368, 6368, 6368, 0, 0, 0, 0, 0, 0, 6368, 6368, 6368, 6368, 6368, 6368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6368, 6368, 6368, 6368, 6368, 6368, 6370, 6370, 0, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6372, 0, 0, 0, 0, 0, 0, 0, 0, 6372, 6372, 6372, 6372, 6372, 6372, 6372, 6372, 6372, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6372, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6372, 6380, 6380, 0, 6380, 6380, 6380, 6380, 6380, 6380, 0, 6380, 6380, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6380, 6380, 6380, 6380, 6380, 6380, 6380, 0, 0, 0, 0, 0, 6380, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6380, 6380, 6380, 6381, 6381, 0, 6381, 6381, 6381, 6381, 6381, 6381, 0, 6381, 6381, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6381, 6381, 6381, 6381, 6381, 6381, 6381, 6381, 0, 0, 0, 0, 6381, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6381, 6381, 6381, 6385, 6385, 0, 6385, 6385, 6385, 6385, 6385, 6385, 0, 6385, 6385, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6385, 6385, 6385, 6385, 6385, 6385, 6385, 0, 0, 0, 0, 0, 6385, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6385, 6385, 6385, 6386, 6386, 0, 6386, 6386, 6386, 6386, 6386, 6386, 0, 6386, 6386, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6386, 6386, 6386, 6386, 6386, 6386, 6386, 6386, 0, 0, 0, 0, 6386, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6386, 6386, 6386, 6390, 6390, 0, 6390, 6390, 6390, 6390, 6390, 6390, 0, 6390, 6390, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6390, 6390, 6390, 6390, 6390, 6390, 6390, 0, 0, 0, 0, 0, 6390, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6390, 6390, 6390, 6391, 6391, 0, 6391, 6391, 6391, 6391, 6391, 6391, 0, 6391, 6391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6391, 6391, 6391, 6391, 6391, 6391, 6391, 6391, 0, 0, 0, 0, 6391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6391, 6391, 6391, 6395, 6395, 0, 6395, 6395, 6395, 6395, 6395, 6395, 0, 6395, 6395, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6395, 6395, 6395, 6395, 6395, 6395, 6395, 0, 0, 0, 0, 0, 6395, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6395, 6395, 6395, 6396, 6396, 0, 6396, 6396, 6396, 6396, 6396, 6396, 0, 6396, 6396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6396, 6396, 6396, 6396, 6396, 6396, 6396, 6396, 0, 0, 0, 0, 6396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6396, 6396, 6396, 6399, 6399, 0, 6399, 6399, 6399, 6399, 6399, 6399, 0, 6399, 6399, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6399, 6399, 6399, 6399, 6399, 6399, 6399, 0, 0, 0, 0, 0, 6399, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6399, 6399, 6399, 6400, 6400, 0, 6400, 6400, 6400, 6400, 6400, 6400, 0, 6400, 6400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6400, 6400, 6400, 6400, 6400, 6400, 6400, 6400, 0, 0, 0, 0, 6400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6400, 6400, 6400, 6402, 6402, 0, 6402, 6402, 6402, 6402, 6402, 6402, 0, 6402, 6402, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6402, 6402, 6402, 6402, 6402, 6402, 6402, 0, 0, 0, 0, 0, 6402, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6402, 6402, 6402, 6403, 6403, 0, 6403, 6403, 6403, 6403, 6403, 6403, 0, 6403, 6403, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6403, 6403, 6403, 6403, 6403, 6403, 6403, 6403, 0, 0, 0, 0, 6403, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6403, 6403, 6403, 6404, 6404, 0, 6404, 6404, 6404, 6404, 6404, 6404, 0, 6404, 6404, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6404, 6404, 6404, 6404, 6404, 6404, 6404, 0, 0, 0, 0, 0, 6404, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6404, 0, 0, 6404, 6404, 6404, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6404, 6405, 6405, 0, 6405, 6405, 6405, 6405, 6405, 6405, 0, 6405, 6405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6405, 6405, 6405, 6405, 6405, 6405, 6405, 0, 0, 0, 0, 0, 6405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6405, 6405, 6405, 6406, 6406, 0, 6406, 6406, 6406, 6406, 6406, 6406, 0, 6406, 6406, 6406, 6406, 6406, 6406, 6406, 6406, 6406, 6406, 6406, 6406, 6406, 6406, 6406, 6406, 6406, 6406, 0, 0, 0, 0, 0, 6406, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6406, 6406, 6406, 6408, 6408, 0, 6408, 6408, 6408, 6408, 6408, 6408, 0, 6408, 6408, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6408, 6408, 6408, 6408, 6408, 6408, 6408, 0, 0, 0, 0, 0, 6408, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6408, 6408, 6408, 6409, 6409, 0, 6409, 6409, 6409, 6409, 6409, 6409, 0, 6409, 6409, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6409, 6409, 6409, 6409, 6409, 6409, 6409, 6409, 0, 0, 0, 0, 6409, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6409, 6409, 6409, 6410, 6410, 0, 6410, 6410, 6410, 6410, 6410, 6410, 0, 6410, 6410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6410, 6410, 6410, 6410, 6410, 6410, 6410, 0, 0, 0, 0, 0, 6410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6410, 0, 0, 6410, 6410, 6410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6410, 6421, 6421, 0, 6421, 6421, 6421, 6421, 6421, 6421, 0, 6421, 6421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6421, 6421, 6421, 6421, 6421, 6421, 6421, 0, 0, 0, 0, 0, 6421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6421, 6421, 6421, 6422, 6422, 0, 6422, 6422, 6422, 6422, 6422, 6422, 0, 6422, 6422, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6422, 6422, 6422, 6422, 6422, 6422, 6422, 6422, 0, 0, 0, 0, 6422, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6422, 6422, 6422, 6436, 6436, 0, 6436, 6436, 6436, 6436, 6436, 6436, 0, 6436, 6436, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6436, 6436, 6436, 6436, 6436, 6436, 6436, 0, 0, 0, 0, 0, 6436, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6436, 6436, 6436, 6437, 6437, 0, 6437, 6437, 6437, 6437, 6437, 6437, 0, 6437, 6437, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6437, 6437, 6437, 6437, 6437, 6437, 6437, 6437, 0, 0, 0, 0, 6437, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6437, 6437, 6437, 6459, 6459, 0, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6459, 6460, 0, 0, 0, 0, 0, 0, 0, 0, 6460, 6460, 6460, 6460, 6460, 6460, 6460, 6460, 6460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6460, 6460, 6460, 6460, 6460, 6460, 6460, 6460, 6460, 6460, 6460, 6460, 6460, 6460, 6460, 6460, 6460, 6460, 6460, 6460, 6460, 6460, 6460, 6460, 6460, 6463, 6463, 0, 6463, 6463, 6463, 6463, 6463, 6463, 0, 6463, 6463, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6463, 6463, 6463, 6463, 6463, 6463, 6463, 0, 0, 0, 0, 0, 6463, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6463, 6463, 6463, 6463, 6470, 0, 6470, 6470, 6470, 6470, 6470, 6470, 6470, 6470, 6470, 6470, 0, 0, 0, 0, 0, 0, 6470, 6470, 6470, 6470, 6470, 6470, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6470, 6470, 6470, 6470, 6470, 6470, 6476, 0, 0, 0, 0, 0, 0, 0, 0, 6476, 6476, 6476, 6476, 6476, 6476, 6476, 6476, 6476, 6476, 0, 0, 0, 0, 0, 0, 6476, 6476, 6476, 6476, 6476, 6476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6476, 6476, 6476, 6476, 6476, 6476, 6480, 6480, 6480, 6480, 6480, 6480, 6480, 6480, 6480, 6480, 0, 0, 0, 0, 0, 0, 6480, 6480, 6480, 6480, 6480, 6480, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6480, 6480, 6480, 6480, 6480, 6480, 6484, 6484, 6484, 6484, 6484, 6484, 6484, 6484, 6484, 6484, 0, 0, 0, 0, 0, 0, 6484, 6484, 6484, 6484, 6484, 6484, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6484, 6484, 6484, 6484, 6484, 6484, 6488, 6488, 6488, 6488, 6488, 6488, 6488, 6488, 6488, 6488, 0, 0, 0, 0, 0, 0, 6488, 6488, 6488, 6488, 6488, 6488, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6488, 6488, 6488, 6488, 6488, 6488, 6489, 6489, 0, 6489, 6489, 6489, 6489, 6489, 6489, 0, 6489, 6489, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6489, 6489, 6489, 6489, 6489, 6489, 6489, 0, 0, 0, 0, 0, 6489, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6489, 6489, 6489, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6489, 6490, 6490, 0, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6490, 6493, 6493, 0, 6493, 6493, 6493, 6493, 6493, 6493, 0, 6493, 6493, 6493, 6493, 6493, 0, 0, 0, 0, 0, 0, 6493, 6493, 6493, 6493, 6493, 6493, 6493, 0, 0, 0, 0, 0, 6493, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6493, 6493, 6493, 6494, 6494, 0, 6494, 6494, 6494, 6494, 6494, 6494, 0, 6494, 6494, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6494, 6494, 6494, 6494, 6494, 6494, 6494, 0, 0, 0, 0, 0, 6494, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6494, 6494, 6494, 6496, 6496, 0, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6497, 6497, 0, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 0, 0, 0, 0, 0, 0, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 0, 0, 0, 0, 0, 6497, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6497, 6497, 6497, 6497, 6498, 6498, 0, 6498, 6498, 6498, 6498, 6498, 6498, 6498, 6498, 6498, 6498, 6498, 6498, 6498, 6498, 6498, 6498, 6498, 6498, 6498, 6498, 6498, 6498, 6498, 6498, 6498, 0, 0, 0, 0, 0, 6498, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6498, 6498, 6498, 6498, 6499, 6499, 0, 6499, 6499, 6499, 6499, 6499, 6499, 0, 6499, 6499, 6499, 6499, 6499, 0, 0, 0, 0, 0, 0, 6499, 6499, 6499, 6499, 6499, 6499, 6499, 0, 0, 0, 0, 0, 6499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6499, 6499, 6499, 6499, 6500, 6500, 0, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6501, 6501, 0, 6501, 6501, 6501, 6501, 6501, 6501, 0, 6501, 6501, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6501, 6501, 6501, 6501, 6501, 6501, 6501, 0, 0, 0, 0, 0, 6501, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6501, 6501, 6501, 6501, 6502, 6502, 0, 6502, 6502, 6502, 6502, 6502, 6502, 6502, 6502, 6502, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6502, 6502, 6502, 6502, 6502, 6502, 6502, 0, 0, 0, 0, 0, 6502, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6502, 6502, 6502, 6502, 6506, 0, 0, 0, 0, 0, 0, 0, 0, 6506, 6506, 6506, 6506, 6506, 6506, 6506, 6506, 6506, 0, 0, 0, 0, 0, 0, 0, 6506, 6506, 6506, 6506, 6506, 6506, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6506, 6506, 6506, 6506, 6506, 6506, 6509, 6509, 6509, 6509, 6509, 6509, 6509, 6509, 6509, 6509, 0, 0, 0, 0, 0, 0, 6509, 6509, 6509, 6509, 6509, 6509, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6509, 6509, 6509, 6509, 6509, 6509, 6512, 6512, 6512, 6512, 6512, 6512, 6512, 6512, 6512, 0, 0, 0, 0, 0, 0, 0, 6512, 6512, 6512, 6512, 6512, 6512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6512, 6512, 6512, 6512, 6512, 6512, 6515, 6515, 0, 6515, 6515, 6515, 6515, 6515, 6515, 0, 6515, 6515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 0, 0, 0, 0, 0, 6515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6515, 6515, 6515, 6515, 6516, 6516, 0, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6523, 0, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 0, 0, 0, 0, 0, 0, 6523, 6523, 6523, 6523, 6523, 6523, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6523, 6523, 6523, 6523, 6523, 6523, 6525, 6525, 0, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6525, 6526, 6526, 0, 6526, 6526, 6526, 6526, 6526, 6526, 0, 6526, 6526, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6526, 6526, 6526, 6526, 6526, 6526, 6526, 6526, 0, 0, 0, 0, 6526, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6526, 6526, 6526, 6526, 6527, 6527, 0, 6527, 6527, 6527, 6527, 6527, 6527, 6527, 6527, 6527, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6527, 6527, 6527, 6527, 6527, 6527, 6527, 0, 0, 0, 0, 0, 6527, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6527, 0, 0, 0, 0, 6527, 6527, 6527, 6527, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6527, 6528, 6528, 0, 6528, 6528, 6528, 6528, 6528, 6528, 0, 6528, 6528, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 0, 0, 0, 0, 0, 6528, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6528, 6528, 6528, 6528, 6530, 6530, 0, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6530, 6532, 6532, 6532, 6532, 6532, 6532, 6532, 6532, 6532, 6532, 0, 0, 0, 0, 0, 0, 6532, 6532, 6532, 6532, 6532, 6532, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6532, 6532, 6532, 6532, 6532, 6532, 6534, 6534, 0, 6534, 6534, 6534, 6534, 6534, 6534, 0, 6534, 6534, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6534, 6534, 6534, 6534, 6534, 6534, 6534, 0, 0, 0, 0, 0, 6534, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6534, 6534, 6534, 6540, 0, 0, 0, 0, 0, 0, 0, 0, 6540, 6540, 6540, 6540, 6540, 6540, 6540, 6540, 6540, 0, 0, 0, 0, 0, 0, 0, 6540, 6540, 6540, 6540, 6540, 6540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6540, 6540, 6540, 6540, 6540, 6540, 6541, 6541, 0, 6541, 6541, 6541, 6541, 6541, 6541, 6541, 6541, 6541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6541, 6541, 6541, 6541, 6541, 6541, 6541, 0, 0, 0, 0, 0, 6541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6541, 6541, 6541, 6541, 6542, 6542, 0, 6542, 6542, 6542, 6542, 6542, 6542, 6542, 6542, 6542, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6542, 6542, 6542, 6542, 6542, 6542, 6542, 6542, 0, 0, 0, 0, 6542, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6542, 6542, 6542, 6542, 6544, 6544, 0, 6544, 6544, 6544, 6544, 6544, 6544, 0, 6544, 6544, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6544, 6544, 6544, 6544, 6544, 6544, 6544, 6544, 0, 0, 0, 0, 6544, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6544, 6544, 6544, 6544, 6545, 6545, 0, 6545, 6545, 6545, 6545, 6545, 6545, 0, 6545, 6545, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6545, 6545, 6545, 6545, 6545, 6545, 6545, 0, 0, 0, 0, 0, 6545, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6545, 6545, 6545, 6546, 6546, 0, 6546, 6546, 6546, 6546, 6546, 6546, 0, 6546, 6546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6546, 6546, 6546, 6546, 6546, 6546, 6546, 6546, 0, 0, 0, 0, 6546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6546, 6546, 6546, 6547, 6547, 0, 6547, 6547, 6547, 6547, 6547, 6547, 0, 6547, 6547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6547, 6547, 6547, 6547, 6547, 6547, 6547, 0, 0, 0, 0, 0, 6547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6547, 0, 0, 0, 0, 6547, 6547, 6547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6547, 6552, 6552, 0, 6552, 6552, 6552, 6552, 6552, 6552, 0, 6552, 6552, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6552, 6552, 6552, 6552, 6552, 6552, 6552, 0, 0, 0, 0, 0, 6552, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6552, 6552, 6552, 0, 6552, 6575, 6575, 0, 6575, 6575, 6575, 6575, 6575, 6575, 0, 6575, 6575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6575, 6575, 6575, 6575, 6575, 6575, 6575, 0, 0, 0, 0, 0, 6575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6575, 6575, 6575, 0, 0, 0, 6575, 6584, 0, 0, 0, 0, 0, 0, 0, 0, 6584, 6584, 6584, 6584, 6584, 6584, 6584, 6584, 6584, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6584, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6584, 6587, 6587, 0, 6587, 6587, 6587, 6587, 6587, 6587, 0, 6587, 6587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6587, 6587, 6587, 6587, 6587, 6587, 6587, 0, 0, 0, 0, 0, 6587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6587, 6587, 6587, 6588, 6588, 0, 6588, 6588, 6588, 6588, 6588, 6588, 0, 6588, 6588, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6588, 6588, 6588, 6588, 6588, 6588, 6588, 6588, 0, 0, 0, 0, 6588, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6588, 6588, 6588, 6592, 6592, 0, 6592, 6592, 6592, 6592, 6592, 6592, 0, 6592, 6592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6592, 6592, 6592, 6592, 6592, 6592, 6592, 0, 0, 0, 0, 0, 6592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6592, 6592, 6592, 6593, 6593, 0, 6593, 6593, 6593, 6593, 6593, 6593, 0, 6593, 6593, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6593, 6593, 6593, 6593, 6593, 6593, 6593, 6593, 0, 0, 0, 0, 6593, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6593, 6593, 6593, 6595, 6595, 0, 6595, 6595, 6595, 6595, 6595, 6595, 0, 6595, 6595, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6595, 6595, 6595, 6595, 6595, 6595, 6595, 0, 0, 0, 0, 0, 6595, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6595, 6595, 6595, 6596, 6596, 0, 6596, 6596, 6596, 6596, 6596, 6596, 0, 6596, 6596, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6596, 6596, 6596, 6596, 6596, 6596, 6596, 6596, 0, 0, 0, 0, 6596, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6596, 6596, 6596, 6598, 6598, 0, 6598, 6598, 6598, 6598, 6598, 6598, 0, 6598, 6598, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6598, 6598, 6598, 6598, 6598, 6598, 6598, 0, 0, 0, 0, 0, 6598, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6598, 6598, 6598, 6599, 6599, 0, 6599, 6599, 6599, 6599, 6599, 6599, 0, 6599, 6599, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6599, 6599, 6599, 6599, 6599, 6599, 6599, 6599, 0, 0, 0, 0, 6599, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6599, 6599, 6599, 6600, 6600, 0, 6600, 6600, 6600, 6600, 6600, 6600, 0, 6600, 6600, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6600, 6600, 6600, 6600, 6600, 6600, 6600, 0, 0, 0, 0, 0, 6600, 0, 6600, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6600, 6600, 6600, 0, 0, 0, 0, 0, 0, 0, 0, 6600, 6603, 6603, 0, 6603, 6603, 6603, 6603, 6603, 6603, 0, 6603, 6603, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6603, 6603, 6603, 6603, 6603, 6603, 6603, 0, 0, 0, 0, 0, 6603, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6603, 6603, 6603, 6604, 6604, 0, 6604, 6604, 6604, 6604, 6604, 6604, 0, 6604, 6604, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 0, 0, 0, 0, 6604, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6604, 6604, 6604, 6608, 6608, 0, 6608, 6608, 6608, 6608, 6608, 6608, 0, 6608, 6608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6608, 6608, 6608, 6608, 6608, 6608, 6608, 0, 0, 0, 0, 0, 6608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6608, 6608, 6608, 6609, 6609, 0, 6609, 6609, 6609, 6609, 6609, 6609, 0, 6609, 6609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6609, 6609, 6609, 6609, 6609, 6609, 6609, 6609, 0, 0, 0, 0, 6609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6609, 6609, 6609, 6612, 6612, 0, 6612, 6612, 6612, 6612, 6612, 6612, 0, 6612, 6612, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6612, 6612, 6612, 6612, 6612, 6612, 6612, 0, 0, 0, 0, 0, 6612, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6612, 6612, 6612, 6613, 6613, 0, 6613, 6613, 6613, 6613, 6613, 6613, 0, 6613, 6613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6613, 6613, 6613, 6613, 6613, 6613, 6613, 6613, 0, 0, 0, 0, 6613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6613, 6613, 6613, 6615, 6615, 0, 6615, 6615, 6615, 6615, 6615, 6615, 0, 6615, 6615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6615, 6615, 6615, 6615, 6615, 6615, 6615, 0, 0, 0, 0, 0, 6615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6615, 6615, 6615, 6616, 6616, 0, 6616, 6616, 6616, 6616, 6616, 6616, 0, 6616, 6616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6616, 6616, 6616, 6616, 6616, 6616, 6616, 6616, 0, 0, 0, 0, 6616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6616, 6616, 6616, 6617, 6617, 0, 6617, 6617, 6617, 6617, 6617, 6617, 6617, 6617, 6617, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6617, 6617, 6617, 6617, 6617, 6617, 6617, 6617, 0, 0, 0, 0, 6617, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6617, 6617, 6617, 6617, 6617, 6618, 6618, 0, 6618, 6618, 6618, 6618, 6618, 6618, 0, 6618, 6618, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6618, 6618, 6618, 6618, 6618, 6618, 6618, 0, 0, 0, 0, 0, 6618, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6618, 6618, 6618, 6619, 6619, 0, 6619, 6619, 6619, 6619, 6619, 6619, 0, 6619, 6619, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6619, 6619, 6619, 6619, 6619, 6619, 6619, 6619, 0, 0, 0, 0, 6619, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6619, 6619, 6619, 6622, 6622, 0, 6622, 6622, 6622, 6622, 6622, 6622, 0, 6622, 6622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6622, 6622, 6622, 6622, 6622, 6622, 6622, 0, 0, 0, 0, 0, 6622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6622, 6622, 6622, 6623, 6623, 0, 6623, 6623, 6623, 6623, 6623, 6623, 0, 6623, 6623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6623, 6623, 6623, 6623, 6623, 6623, 6623, 6623, 0, 0, 0, 0, 6623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6623, 6623, 6623, 6625, 6625, 0, 6625, 6625, 6625, 6625, 6625, 6625, 0, 6625, 6625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6625, 6625, 6625, 6625, 6625, 6625, 6625, 0, 0, 0, 0, 0, 6625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6625, 6625, 6625, 6626, 6626, 0, 6626, 6626, 6626, 6626, 6626, 6626, 0, 6626, 6626, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6626, 6626, 6626, 6626, 6626, 6626, 6626, 6626, 0, 0, 0, 0, 6626, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6626, 6626, 6626, 6627, 6627, 0, 6627, 6627, 6627, 6627, 6627, 6627, 6627, 6627, 6627, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6627, 6627, 6627, 6627, 6627, 6627, 6627, 6627, 0, 0, 0, 0, 6627, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6627, 6627, 6627, 6627, 6627, 6640, 0, 0, 0, 0, 0, 0, 0, 6640, 6640, 6640, 6640, 6640, 6640, 6640, 6640, 6640, 6640, 6640, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6640, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6640, 0, 6640, 6646, 6646, 0, 6646, 6646, 6646, 6646, 6646, 6646, 0, 6646, 6646, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6646, 6646, 6646, 6646, 6646, 6646, 6646, 6646, 0, 0, 6646, 0, 6646, 0, 0, 0, 6646, 0, 0, 6646, 6646, 6646, 0, 0, 6646, 0, 0, 0, 0, 6646, 6646, 6646, 0, 0, 0, 6646, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6646, 6647, 6647, 0, 6647, 6647, 6647, 6647, 6647, 6647, 0, 6647, 6647, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6647, 6647, 6647, 6647, 6647, 6647, 6647, 0, 0, 0, 0, 0, 6647, 0, 0, 6647, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6647, 6647, 6647, 0, 0, 0, 6647, 6648, 6648, 0, 6648, 6648, 6648, 6648, 6648, 6648, 0, 6648, 6648, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6648, 6648, 6648, 6648, 6648, 6648, 6648, 0, 0, 0, 0, 0, 6648, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6648, 6648, 6648, 0, 0, 0, 6648, 0, 0, 0, 0, 0, 6648, 6649, 6649, 0, 6649, 6649, 6649, 6649, 6649, 6649, 0, 6649, 6649, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6649, 6649, 6649, 6649, 6649, 6649, 6649, 0, 0, 0, 0, 0, 6649, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6649, 6649, 6649, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6649, 6650, 6650, 0, 6650, 6650, 6650, 6650, 6650, 6650, 0, 6650, 6650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6650, 6650, 6650, 6650, 6650, 6650, 6650, 0, 0, 0, 0, 0, 6650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6650, 6650, 6650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6650, 6651, 6651, 6651, 6651, 6651, 6651, 6651, 6651, 6651, 0, 6651, 6651, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6651, 6651, 6651, 6651, 6651, 6651, 6651, 0, 0, 0, 0, 0, 6651, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6651, 6651, 6651, 6652, 6652, 6652, 6652, 6652, 6652, 6652, 6652, 6652, 0, 6652, 6652, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6652, 6652, 6652, 6652, 6652, 6652, 6652, 6652, 0, 0, 0, 0, 6652, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6652, 6652, 6652, 6656, 6656, 6656, 6656, 6656, 6656, 6656, 6656, 6656, 0, 6656, 6656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6656, 6656, 6656, 6656, 6656, 6656, 6656, 0, 0, 0, 0, 0, 6656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6656, 6656, 6656, 6657, 6657, 6657, 6657, 6657, 6657, 6657, 6657, 6657, 0, 6657, 6657, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6657, 6657, 6657, 6657, 6657, 6657, 6657, 6657, 0, 0, 0, 0, 6657, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6657, 6657, 6657, 6658, 6658, 6658, 6658, 6658, 6658, 6658, 6658, 6658, 0, 6658, 6658, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6658, 6658, 6658, 6658, 6658, 6658, 6658, 0, 0, 0, 0, 0, 6658, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6658, 6658, 6658, 6659, 6659, 6659, 6659, 6659, 6659, 6659, 6659, 6659, 0, 6659, 6659, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6659, 6659, 6659, 6659, 6659, 6659, 6659, 6659, 0, 0, 0, 0, 6659, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6659, 6659, 6659, 6660, 6660, 6660, 6660, 6660, 6660, 6660, 6660, 6660, 0, 6660, 6660, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6660, 6660, 6660, 6660, 6660, 6660, 6660, 0, 0, 0, 0, 0, 6660, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6660, 0, 0, 0, 0, 6660, 6660, 6660, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6660, 6664, 6664, 6664, 6664, 6664, 6664, 6664, 6664, 6664, 0, 6664, 6664, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6664, 6664, 6664, 6664, 6664, 6664, 6664, 0, 0, 0, 0, 0, 6664, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6664, 6664, 6664, 6665, 6665, 6665, 6665, 6665, 6665, 6665, 6665, 6665, 0, 6665, 6665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6665, 6665, 6665, 6665, 6665, 6665, 6665, 6665, 0, 0, 0, 0, 6665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6665, 6665, 6665, 6668, 6668, 6668, 6668, 6668, 6668, 6668, 6668, 6668, 0, 6668, 6668, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6668, 6668, 6668, 6668, 6668, 6668, 6668, 0, 0, 0, 0, 0, 6668, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6668, 6668, 6668, 6669, 6669, 6669, 6669, 6669, 6669, 6669, 6669, 6669, 0, 6669, 6669, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6669, 6669, 6669, 6669, 6669, 6669, 6669, 6669, 0, 0, 0, 0, 6669, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6669, 6669, 6669, 6671, 6671, 6671, 6671, 6671, 6671, 6671, 6671, 6671, 0, 6671, 6671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6671, 6671, 6671, 6671, 6671, 6671, 6671, 0, 0, 0, 0, 0, 6671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6671, 6671, 6671, 6672, 6672, 6672, 6672, 6672, 6672, 6672, 6672, 6672, 0, 6672, 6672, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6672, 6672, 6672, 6672, 6672, 6672, 6672, 6672, 0, 0, 0, 0, 6672, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6672, 6672, 6672, 6673, 6673, 6673, 6673, 6673, 6673, 6673, 6673, 6673, 0, 6673, 6673, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6673, 6673, 6673, 6673, 6673, 6673, 6673, 0, 0, 0, 0, 0, 6673, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6673, 0, 0, 6673, 6673, 6673, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6673, 6674, 6674, 6674, 6674, 6674, 6674, 6674, 6674, 6674, 0, 6674, 6674, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6674, 6674, 6674, 6674, 6674, 6674, 6674, 0, 0, 0, 0, 0, 6674, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6674, 6674, 6674, 6675, 6675, 6675, 6675, 6675, 6675, 6675, 6675, 6675, 0, 6675, 6675, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6675, 6675, 6675, 6675, 6675, 6675, 6675, 6675, 0, 0, 0, 0, 6675, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6675, 6675, 6675, 6676, 6676, 6676, 6676, 6676, 6676, 6676, 6676, 6676, 0, 6676, 6676, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6676, 6676, 6676, 6676, 6676, 6676, 6676, 0, 0, 0, 0, 0, 6676, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6676, 6676, 6676, 6677, 6677, 6677, 6677, 6677, 6677, 6677, 6677, 6677, 0, 6677, 6677, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6677, 6677, 6677, 6677, 6677, 6677, 6677, 6677, 0, 0, 0, 0, 6677, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6677, 6677, 6677, 6678, 6678, 6678, 6678, 6678, 6678, 6678, 6678, 6678, 0, 6678, 6678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6678, 6678, 6678, 6678, 6678, 6678, 6678, 0, 0, 0, 0, 0, 6678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6678, 0, 0, 6678, 6678, 6678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6678, 6680, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6680, 6680, 6680, 6680, 6680, 6680, 6680, 6680, 6680, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6680, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6680, 6693, 6693, 6693, 6693, 6693, 6693, 6693, 6693, 6693, 0, 6693, 6693, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6693, 6693, 6693, 6693, 6693, 6693, 6693, 0, 0, 0, 0, 0, 6693, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6693, 6693, 6693, 6694, 6694, 6694, 6694, 6694, 6694, 6694, 6694, 6694, 0, 6694, 6694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6694, 6694, 6694, 6694, 6694, 6694, 6694, 6694, 0, 0, 0, 0, 6694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6694, 6694, 6694, 6708, 6708, 6708, 6708, 6708, 6708, 6708, 6708, 6708, 0, 6708, 6708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6708, 6708, 6708, 6708, 6708, 6708, 6708, 0, 0, 0, 0, 0, 6708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6708, 6708, 6708, 6709, 6709, 6709, 6709, 6709, 6709, 6709, 6709, 6709, 0, 6709, 6709, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6709, 6709, 6709, 6709, 6709, 6709, 6709, 6709, 0, 0, 0, 0, 6709, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6709, 6709, 6709, 6732, 6732, 0, 6732, 6732, 6732, 6732, 6732, 6732, 0, 6732, 6732, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6732, 6732, 6732, 6732, 6732, 6732, 6732, 0, 0, 0, 0, 0, 6732, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6732, 6732, 6732, 0, 0, 0, 0, 0, 6732, 6733, 6733, 0, 6733, 6733, 6733, 6733, 6733, 6733, 0, 6733, 6733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6733, 6733, 6733, 6733, 6733, 6733, 6733, 0, 0, 0, 0, 0, 6733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6733, 6733, 6733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6733, 6735, 6735, 0, 6735, 6735, 6735, 6735, 6735, 6735, 0, 6735, 6735, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6735, 6735, 6735, 6735, 6735, 6735, 6735, 0, 0, 0, 0, 0, 6735, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6735, 6735, 6735, 0, 6735, 6738, 6738, 0, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6747, 0, 0, 0, 0, 0, 0, 0, 0, 6747, 6747, 6747, 6747, 6747, 6747, 6747, 6747, 6747, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6747, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6747, 6748, 6748, 0, 6748, 6748, 6748, 6748, 6748, 6748, 0, 6748, 6748, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6748, 6748, 6748, 6748, 6748, 6748, 6748, 0, 0, 0, 0, 0, 6748, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6748, 6748, 6748, 6749, 6749, 0, 6749, 6749, 6749, 6749, 6749, 6749, 0, 6749, 6749, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6749, 6749, 6749, 6749, 6749, 6749, 6749, 6749, 0, 0, 0, 0, 6749, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6749, 6749, 6749, 6753, 6753, 0, 6753, 6753, 6753, 6753, 6753, 6753, 0, 6753, 6753, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6753, 6753, 6753, 6753, 6753, 6753, 6753, 0, 0, 0, 0, 0, 6753, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6753, 6753, 6753, 6754, 6754, 0, 6754, 6754, 6754, 6754, 6754, 6754, 0, 6754, 6754, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6754, 6754, 6754, 6754, 6754, 6754, 6754, 6754, 0, 0, 0, 0, 6754, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6754, 6754, 6754, 6757, 6757, 0, 6757, 6757, 6757, 6757, 6757, 6757, 0, 6757, 6757, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6757, 6757, 6757, 6757, 6757, 6757, 6757, 0, 0, 0, 0, 0, 6757, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6757, 6757, 6757, 6758, 6758, 0, 6758, 6758, 6758, 6758, 6758, 6758, 0, 6758, 6758, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6758, 6758, 6758, 6758, 6758, 6758, 6758, 6758, 0, 0, 0, 0, 6758, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6758, 6758, 6758, 6761, 6761, 0, 6761, 6761, 6761, 6761, 6761, 6761, 0, 6761, 6761, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6761, 6761, 6761, 6761, 6761, 6761, 6761, 0, 0, 0, 0, 0, 6761, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6761, 6761, 6761, 6762, 6762, 0, 6762, 6762, 6762, 6762, 6762, 6762, 0, 6762, 6762, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6762, 6762, 6762, 6762, 6762, 6762, 6762, 6762, 0, 0, 0, 0, 6762, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6762, 6762, 6762, 6764, 6764, 0, 6764, 6764, 6764, 6764, 6764, 6764, 0, 6764, 6764, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6764, 6764, 6764, 6764, 6764, 6764, 6764, 0, 0, 0, 0, 0, 6764, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6764, 6764, 6764, 6765, 6765, 0, 6765, 6765, 6765, 6765, 6765, 6765, 0, 6765, 6765, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6765, 6765, 6765, 6765, 6765, 6765, 6765, 6765, 0, 0, 0, 0, 6765, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6765, 6765, 6765, 6766, 6766, 0, 6766, 6766, 6766, 6766, 6766, 6766, 0, 6766, 6766, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6766, 6766, 6766, 6766, 6766, 6766, 6766, 0, 0, 0, 0, 0, 6766, 6766, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6766, 6766, 6766, 0, 0, 0, 0, 0, 0, 0, 6766, 6767, 6767, 0, 6767, 6767, 6767, 6767, 6767, 6767, 0, 6767, 6767, 0, 6767, 6767, 6767, 6767, 6767, 6767, 6767, 6767, 6767, 6767, 6767, 6767, 6767, 6767, 6767, 0, 0, 0, 0, 0, 6767, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6767, 6767, 6767, 6768, 6768, 0, 6768, 6768, 6768, 6768, 6768, 6768, 0, 6768, 6768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6768, 6768, 6768, 6768, 6768, 6768, 6768, 0, 0, 0, 0, 0, 6768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6768, 6768, 6768, 6769, 6769, 0, 6769, 6769, 6769, 6769, 6769, 6769, 0, 6769, 6769, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6769, 6769, 6769, 6769, 6769, 6769, 6769, 0, 0, 0, 0, 0, 6769, 6769, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6769, 6769, 6769, 0, 0, 0, 0, 0, 0, 0, 6769, 6771, 6771, 0, 6771, 6771, 6771, 6771, 6771, 6771, 0, 6771, 6771, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6771, 6771, 6771, 6771, 6771, 6771, 6771, 0, 0, 0, 0, 0, 6771, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6771, 6771, 6771, 6772, 6772, 0, 6772, 6772, 6772, 6772, 6772, 6772, 0, 6772, 6772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6772, 6772, 6772, 6772, 6772, 6772, 6772, 6772, 0, 0, 0, 0, 6772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6772, 6772, 6772, 6776, 6776, 0, 6776, 6776, 6776, 6776, 6776, 6776, 0, 6776, 6776, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6776, 6776, 6776, 6776, 6776, 6776, 6776, 0, 0, 0, 0, 0, 6776, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6776, 6776, 6776, 6777, 6777, 0, 6777, 6777, 6777, 6777, 6777, 6777, 0, 6777, 6777, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6777, 6777, 6777, 6777, 6777, 6777, 6777, 6777, 0, 0, 0, 0, 6777, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6777, 6777, 6777, 6781, 6781, 0, 6781, 6781, 6781, 6781, 6781, 6781, 0, 6781, 6781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6781, 6781, 6781, 6781, 6781, 6781, 6781, 0, 0, 0, 0, 0, 6781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6781, 6781, 6781, 6782, 6782, 0, 6782, 6782, 6782, 6782, 6782, 6782, 0, 6782, 6782, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6782, 6782, 6782, 6782, 6782, 6782, 6782, 6782, 0, 0, 0, 0, 6782, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6782, 6782, 6782, 6785, 6785, 0, 6785, 6785, 6785, 6785, 6785, 6785, 0, 6785, 6785, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6785, 6785, 6785, 6785, 6785, 6785, 6785, 0, 0, 0, 0, 0, 6785, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6785, 6785, 6785, 6786, 6786, 0, 6786, 6786, 6786, 6786, 6786, 6786, 0, 6786, 6786, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6786, 6786, 6786, 6786, 6786, 6786, 6786, 6786, 0, 0, 0, 0, 6786, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6786, 6786, 6786, 6788, 6788, 0, 6788, 6788, 6788, 6788, 6788, 6788, 0, 6788, 6788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6788, 6788, 6788, 6788, 6788, 6788, 6788, 0, 0, 0, 0, 0, 6788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6788, 0, 0, 0, 0, 0, 6788, 6788, 6788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6788, 6789, 6789, 0, 6789, 6789, 6789, 6789, 6789, 6789, 0, 6789, 6789, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 0, 0, 0, 0, 0, 6789, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6789, 6789, 6789, 6790, 6790, 0, 6790, 6790, 6790, 6790, 6790, 6790, 0, 6790, 6790, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6790, 6790, 6790, 6790, 6790, 6790, 6790, 6790, 0, 0, 0, 0, 6790, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6790, 6790, 6790, 6791, 6791, 0, 6791, 6791, 6791, 6791, 6791, 6791, 0, 6791, 6791, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6791, 6791, 6791, 6791, 6791, 6791, 6791, 0, 0, 0, 0, 0, 6791, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6791, 6791, 6791, 6792, 6792, 0, 6792, 6792, 6792, 6792, 6792, 6792, 0, 6792, 6792, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6792, 6792, 6792, 6792, 6792, 6792, 6792, 6792, 0, 0, 0, 0, 6792, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6792, 6792, 6792, 6796, 6796, 0, 6796, 6796, 6796, 6796, 6796, 6796, 0, 6796, 6796, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6796, 6796, 6796, 6796, 6796, 6796, 6796, 0, 0, 0, 0, 0, 6796, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6796, 6796, 6796, 6797, 6797, 0, 6797, 6797, 6797, 6797, 6797, 6797, 0, 6797, 6797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6797, 6797, 6797, 6797, 6797, 6797, 6797, 6797, 0, 0, 0, 0, 6797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6797, 6797, 6797, 6800, 6800, 0, 6800, 6800, 6800, 6800, 6800, 6800, 0, 6800, 6800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6800, 6800, 6800, 6800, 6800, 6800, 6800, 0, 0, 0, 0, 0, 6800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6800, 6800, 6800, 6801, 6801, 0, 6801, 6801, 6801, 6801, 6801, 6801, 0, 6801, 6801, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6801, 6801, 6801, 6801, 6801, 6801, 6801, 6801, 0, 0, 0, 0, 6801, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6801, 6801, 6801, 6803, 6803, 0, 6803, 6803, 6803, 6803, 6803, 6803, 0, 6803, 6803, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6803, 6803, 6803, 6803, 6803, 6803, 6803, 0, 0, 0, 0, 0, 6803, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6803, 0, 0, 0, 0, 0, 6803, 6803, 6803, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6803, 6804, 6804, 0, 6804, 6804, 6804, 6804, 6804, 6804, 0, 6804, 6804, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6804, 6804, 6804, 6804, 6804, 6804, 6804, 0, 0, 0, 0, 0, 6804, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6804, 6804, 6804, 6805, 6805, 0, 6805, 6805, 6805, 6805, 6805, 6805, 0, 6805, 6805, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6805, 6805, 6805, 6805, 6805, 6805, 6805, 6805, 0, 0, 0, 0, 6805, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6805, 6805, 6805, 6810, 6810, 0, 6810, 6810, 6810, 6810, 6810, 6810, 0, 6810, 6810, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6810, 6810, 6810, 6810, 6810, 6810, 6810, 0, 0, 0, 0, 0, 6810, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6810, 6810, 6810, 6810, 6811, 6811, 0, 6811, 6811, 6811, 6811, 6811, 6811, 0, 6811, 6811, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6811, 6811, 6811, 6811, 6811, 6811, 6811, 6811, 0, 0, 0, 0, 6811, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6811, 6811, 6811, 6811, 6815, 6815, 0, 6815, 6815, 6815, 6815, 6815, 6815, 0, 6815, 6815, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6815, 6815, 6815, 6815, 6815, 6815, 6815, 0, 0, 0, 0, 0, 6815, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6815, 6815, 6815, 6815, 6816, 6816, 0, 6816, 6816, 6816, 6816, 6816, 6816, 0, 6816, 6816, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6816, 6816, 6816, 6816, 6816, 6816, 6816, 6816, 0, 0, 0, 0, 6816, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6816, 6816, 6816, 6816, 6817, 6817, 0, 6817, 6817, 6817, 6817, 6817, 6817, 0, 6817, 6817, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6817, 6817, 6817, 6817, 6817, 6817, 6817, 0, 0, 0, 0, 0, 6817, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6817, 6817, 6817, 6819, 6819, 0, 6819, 6819, 6819, 6819, 6819, 6819, 0, 6819, 6819, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6819, 6819, 6819, 6819, 6819, 6819, 6819, 6819, 0, 0, 0, 0, 6819, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6819, 6819, 6819, 6825, 6825, 0, 6825, 6825, 6825, 6825, 6825, 6825, 0, 6825, 6825, 6825, 6825, 6825, 6825, 6825, 6825, 6825, 6825, 6825, 6825, 6825, 6825, 6825, 6825, 6825, 6825, 0, 0, 0, 0, 0, 6825, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6825, 6825, 6825, 6825, 6826, 6826, 0, 6826, 6826, 6826, 6826, 6826, 6826, 0, 6826, 6826, 6826, 6826, 6826, 6826, 6826, 6826, 6826, 6826, 6826, 6826, 6826, 6826, 6826, 6826, 6826, 6826, 0, 0, 0, 0, 0, 6826, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6826, 6826, 6826, 6826, 6833, 6833, 6833, 6833, 6833, 6833, 6833, 6833, 6833, 6833, 0, 0, 0, 0, 0, 0, 6833, 6833, 6833, 6833, 6833, 6833, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6833, 6833, 6833, 6833, 6833, 6833, 6835, 6835, 6835, 6835, 6835, 6835, 6835, 6835, 6835, 6835, 0, 0, 0, 0, 0, 0, 6835, 6835, 6835, 6835, 6835, 6835, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6835, 6835, 6835, 6835, 6835, 6835, 6838, 6838, 6838, 6838, 6838, 6838, 6838, 6838, 6838, 6838, 0, 0, 0, 0, 0, 0, 6838, 6838, 6838, 6838, 6838, 6838, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6838, 0, 0, 0, 6838, 6838, 6838, 6838, 6838, 6838, 6844, 6844, 6844, 6844, 6844, 6844, 6844, 6844, 6844, 6844, 0, 0, 0, 0, 0, 0, 6844, 6844, 6844, 6844, 6844, 6844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6844, 6844, 6844, 6844, 6844, 6844, 6847, 6847, 6847, 6847, 6847, 6847, 6847, 6847, 6847, 6847, 0, 0, 0, 0, 0, 0, 6847, 6847, 6847, 6847, 6847, 6847, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6847, 6847, 6847, 6847, 6847, 6847, 6855, 6855, 6855, 6855, 6855, 6855, 6855, 6855, 6855, 6855, 0, 0, 0, 0, 0, 0, 6855, 6855, 6855, 6855, 6855, 6855, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6855, 6855, 6855, 6855, 6855, 6855, 6858, 6858, 6858, 6858, 6858, 6858, 6858, 6858, 6858, 6858, 0, 0, 0, 0, 0, 0, 6858, 6858, 6858, 6858, 6858, 6858, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6858, 6858, 6858, 6858, 6858, 6858, 6866, 6866, 6866, 6866, 6866, 6866, 6866, 6866, 6866, 0, 0, 0, 0, 0, 0, 0, 6866, 6866, 6866, 6866, 6866, 6866, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6866, 6866, 6866, 6866, 6866, 6866, 6871, 6871, 6871, 6871, 6871, 6871, 6871, 6871, 6871, 6871, 0, 0, 0, 0, 0, 0, 6871, 6871, 6871, 6871, 6871, 6871, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6871, 6871, 6871, 6871, 6871, 6871, 6873, 6873, 6873, 6873, 6873, 6873, 6873, 6873, 6873, 0, 0, 0, 0, 0, 0, 0, 6873, 6873, 6873, 6873, 6873, 6873, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6873, 6873, 6873, 6873, 6873, 6873, 6881, 0, 6881, 6881, 6881, 6881, 6881, 6881, 6881, 6881, 6881, 6881, 0, 0, 0, 0, 0, 0, 6881, 6881, 6881, 6881, 6881, 6881, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6881, 6881, 6881, 6881, 6881, 6881, 6903, 0, 0, 0, 0, 0, 0, 0, 0, 6903, 6903, 6903, 6903, 6903, 6903, 6903, 6903, 6903, 0, 0, 0, 0, 0, 0, 0, 6903, 6903, 6903, 6903, 6903, 6903, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6903, 0, 0, 0, 6903, 6903, 6903, 6903, 6903, 6903, 6906, 0, 6906, 6906, 6906, 6906, 6906, 6906, 6906, 6906, 6906, 6906, 0, 0, 0, 0, 0, 0, 6906, 6906, 6906, 6906, 6906, 6906, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6906, 6906, 6906, 6906, 6906, 6906, 6923, 0, 0, 0, 0, 0, 0, 0, 0, 6923, 6923, 6923, 6923, 6923, 6923, 6923, 6923, 6923, 0, 0, 0, 0, 0, 0, 0, 6923, 6923, 6923, 6923, 6923, 6923, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6923, 6923, 6923, 6923, 6923, 6923, 0, 0, 0, 0, 0, 0, 0, 6923, 6926, 0, 6926, 6926, 6926, 6926, 6926, 6926, 6926, 6926, 6926, 6926, 0, 0, 0, 0, 0, 0, 6926, 6926, 6926, 6926, 6926, 6926, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6926, 6926, 6926, 6926, 6926, 6926, 6960, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6960, 0, 0, 0, 0, 0, 0, 6960, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6960, 0, 6960, 0, 6960, 0, 0, 6960, 0, 0, 0, 0, 6960, 0, 0, 6960, 0, 6960, 0, 6960, 0, 6960, 6960, 6960, 6962, 6962, 0, 0, 0, 0, 6962, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6962, 0, 0, 0, 0, 0, 0, 6962, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6962, 0, 6962, 0, 6962, 0, 0, 6962, 0, 0, 0, 0, 6962, 0, 0, 6962, 0, 6962, 0, 6962, 0, 6962, 6962, 6962, 6963, 6963, 0, 0, 0, 0, 6963, 0, 0, 0, 6963, 6963, 6963, 6963, 6963, 6963, 6963, 6963, 6963, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6963, 0, 0, 0, 0, 0, 0, 6963, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6963, 0, 6963, 0, 6963, 0, 0, 6963, 0, 0, 0, 0, 6963, 0, 0, 6963, 0, 6963, 0, 6963, 0, 6963, 6963, 6963, 6965, 6965, 6965, 6965, 6965, 6965, 6965, 6965, 6965, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6965, 0, 0, 0, 0, 0, 0, 0, 6965, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6965, 6971, 0, 0, 0, 0, 0, 0, 6971, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6971, 0, 6971, 0, 6971, 0, 0, 6971, 0, 0, 0, 0, 6971, 0, 6971, 6971, 0, 6971, 0, 6971, 0, 6971, 6971, 6971, 6972, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6972, 0, 6972, 0, 0, 0, 0, 6972, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6972, 0, 6972, 0, 6972, 0, 0, 6972, 0, 0, 0, 0, 6972, 0, 0, 6972, 0, 6972, 0, 6972, 0, 6972, 6972, 6972, 6973, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6973, 0, 0, 0, 0, 0, 0, 6973, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6973, 0, 6973, 0, 6973, 0, 0, 6973, 0, 0, 0, 0, 6973, 0, 0, 6973, 0, 6973, 0, 6973, 0, 6973, 6973, 6973, 6974, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6974, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6974, 0, 0, 0, 0, 0, 0, 6974, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6974, 0, 6974, 0, 6974, 0, 0, 6974, 0, 0, 0, 0, 6974, 0, 0, 6974, 0, 6974, 0, 6974, 0, 6974, 6974, 6974, 6975, 6975, 0, 0, 0, 0, 6975, 0, 0, 6975, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6975, 0, 0, 0, 0, 0, 0, 6975, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6975, 0, 6975, 0, 6975, 0, 0, 6975, 0, 0, 0, 0, 6975, 0, 0, 6975, 0, 6975, 0, 6975, 0, 6975, 6975, 6975, 6976, 6976, 6976, 0, 0, 0, 6976, 0, 6976, 6976, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6976, 0, 0, 0, 0, 0, 0, 6976, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6976, 0, 6976, 0, 6976, 0, 0, 6976, 0, 0, 0, 0, 6976, 0, 0, 6976, 0, 6976, 0, 6976, 0, 6976, 6976, 6976, 6988, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6988, 0, 0, 0, 0, 0, 0, 6988, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6988, 0, 6988, 0, 6988, 0, 0, 6988, 0, 0, 0, 0, 6988, 0, 0, 6988, 0, 6988, 0, 6988, 0, 6988, 6988, 6988, 6997, 0, 6997, 6997, 6997, 6997, 6997, 6997, 6997, 6997, 6997, 6997, 0, 0, 0, 0, 0, 0, 6997, 6997, 6997, 6997, 6997, 6997, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6997, 6997, 6997, 6997, 6997, 6997, 7003, 7003, 7003, 7003, 7003, 7003, 7003, 7003, 7003, 7003, 0, 0, 0, 0, 0, 7003, 7003, 7003, 7003, 7003, 7003, 7003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7003, 7003, 7003, 7003, 7003, 7003, 7007, 7007, 7007, 7007, 7007, 7007, 7007, 7007, 7007, 7007, 0, 0, 0, 0, 0, 0, 7007, 7007, 7007, 7007, 7007, 7007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7007, 7007, 7007, 7007, 7007, 7007, 7011, 7011, 7011, 7011, 7011, 7011, 7011, 7011, 7011, 7011, 0, 0, 0, 0, 0, 0, 7011, 7011, 7011, 7011, 7011, 7011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7011, 7011, 7011, 7011, 7011, 7011, 7015, 7015, 7015, 7015, 7015, 7015, 7015, 7015, 7015, 7015, 0, 0, 0, 0, 0, 0, 7015, 7015, 7015, 7015, 7015, 7015, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7015, 7015, 7015, 7015, 7015, 7015, 7016, 7016, 7016, 7016, 7016, 7016, 7016, 7016, 7016, 0, 0, 0, 0, 0, 0, 7016, 7016, 7016, 7016, 7016, 7016, 7016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7016, 7016, 7016, 7016, 7016, 7016, 7019, 7019, 7019, 7019, 7019, 7019, 7019, 7019, 7019, 7019, 0, 0, 0, 0, 0, 0, 7019, 7019, 7019, 7019, 7019, 7019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7019, 7019, 7019, 7019, 7019, 7019, 7023, 7023, 0, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7023, 7034, 7034, 0, 7034, 7034, 7034, 7034, 7034, 7034, 0, 7034, 7034, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7034, 7034, 7034, 7034, 7034, 7034, 7034, 0, 0, 0, 0, 0, 7034, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7034, 7034, 7034, 7035, 7035, 0, 7035, 7035, 7035, 7035, 7035, 7035, 0, 7035, 7035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7035, 7035, 7035, 7035, 7035, 7035, 7035, 7035, 0, 0, 0, 0, 7035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7035, 7035, 7035, 7039, 7039, 0, 7039, 7039, 7039, 7039, 7039, 7039, 0, 7039, 7039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7039, 7039, 7039, 7039, 7039, 7039, 7039, 0, 0, 0, 0, 0, 7039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7039, 7039, 7039, 7040, 7040, 0, 7040, 7040, 7040, 7040, 7040, 7040, 0, 7040, 7040, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7040, 7040, 7040, 7040, 7040, 7040, 7040, 7040, 0, 0, 0, 0, 7040, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7040, 7040, 7040, 7044, 7044, 0, 7044, 7044, 7044, 7044, 7044, 7044, 0, 7044, 7044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7044, 7044, 7044, 7044, 7044, 7044, 7044, 0, 0, 0, 0, 0, 7044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7044, 7044, 7044, 7045, 7045, 0, 7045, 7045, 7045, 7045, 7045, 7045, 0, 7045, 7045, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7045, 7045, 7045, 7045, 7045, 7045, 7045, 7045, 0, 0, 0, 0, 7045, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7045, 7045, 7045, 7049, 7049, 0, 7049, 7049, 7049, 7049, 7049, 7049, 0, 7049, 7049, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7049, 7049, 7049, 7049, 7049, 7049, 7049, 0, 0, 0, 0, 0, 7049, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7049, 7049, 7049, 7050, 7050, 0, 7050, 7050, 7050, 7050, 7050, 7050, 0, 7050, 7050, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7050, 7050, 7050, 7050, 7050, 7050, 7050, 7050, 0, 0, 0, 0, 7050, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7050, 7050, 7050, 7053, 7053, 0, 7053, 7053, 7053, 7053, 7053, 7053, 0, 7053, 7053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7053, 7053, 7053, 7053, 7053, 7053, 7053, 0, 0, 0, 0, 0, 7053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7053, 7053, 7053, 7054, 7054, 0, 7054, 7054, 7054, 7054, 7054, 7054, 0, 7054, 7054, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7054, 7054, 7054, 7054, 7054, 7054, 7054, 7054, 0, 0, 0, 0, 7054, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7054, 7054, 7054, 7056, 7056, 0, 7056, 7056, 7056, 7056, 7056, 7056, 0, 7056, 7056, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7056, 7056, 7056, 7056, 7056, 7056, 7056, 0, 0, 0, 0, 0, 7056, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7056, 7056, 7056, 7057, 7057, 0, 7057, 7057, 7057, 7057, 7057, 7057, 0, 7057, 7057, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7057, 7057, 7057, 7057, 7057, 7057, 7057, 7057, 0, 0, 0, 0, 7057, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7057, 7057, 7057, 7058, 7058, 0, 7058, 7058, 7058, 7058, 7058, 7058, 7058, 7058, 7058, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7058, 7058, 7058, 7058, 7058, 7058, 7058, 7058, 0, 0, 0, 0, 7058, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7058, 7058, 7058, 7058, 7058, 7059, 7059, 0, 7059, 7059, 7059, 7059, 7059, 7059, 0, 7059, 7059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7059, 7059, 7059, 7059, 7059, 7059, 7059, 0, 0, 0, 0, 0, 7059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7059, 7059, 7059, 7060, 7060, 0, 7060, 7060, 7060, 7060, 7060, 7060, 0, 7060, 7060, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7060, 7060, 7060, 7060, 7060, 7060, 7060, 7060, 0, 0, 0, 0, 7060, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7060, 7060, 7060, 7063, 7063, 0, 7063, 7063, 7063, 7063, 7063, 7063, 0, 7063, 7063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7063, 7063, 7063, 7063, 7063, 7063, 7063, 0, 0, 0, 0, 0, 7063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7063, 7063, 7063, 7064, 7064, 0, 7064, 7064, 7064, 7064, 7064, 7064, 0, 7064, 7064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7064, 7064, 7064, 7064, 7064, 7064, 7064, 7064, 0, 0, 0, 0, 7064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7064, 7064, 7064, 7066, 7066, 0, 7066, 7066, 7066, 7066, 7066, 7066, 0, 7066, 7066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7066, 7066, 7066, 7066, 7066, 7066, 7066, 0, 0, 0, 0, 0, 7066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7066, 7066, 7066, 7067, 7067, 0, 7067, 7067, 7067, 7067, 7067, 7067, 0, 7067, 7067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7067, 7067, 7067, 7067, 7067, 7067, 7067, 7067, 0, 0, 0, 0, 7067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7067, 7067, 7067, 7068, 7068, 0, 7068, 7068, 7068, 7068, 7068, 7068, 7068, 7068, 7068, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7068, 7068, 7068, 7068, 7068, 7068, 7068, 7068, 0, 0, 0, 0, 7068, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7068, 7068, 7068, 7068, 7068, 7079, 7079, 7079, 7079, 7079, 7079, 7079, 7079, 7079, 7079, 7079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7079, 0, 7079, 7083, 7083, 0, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7084, 0, 0, 0, 0, 0, 0, 0, 0, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7087, 7087, 0, 7087, 7087, 7087, 7087, 7087, 7087, 0, 7087, 7087, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7087, 7087, 7087, 7087, 7087, 7087, 7087, 0, 0, 0, 0, 0, 7087, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7087, 7087, 7087, 7087, 7088, 7088, 0, 7088, 7088, 7088, 7088, 7088, 7088, 0, 7088, 7088, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7088, 7088, 7088, 7088, 7088, 7088, 7088, 7088, 0, 0, 0, 0, 7088, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7088, 7088, 7088, 7088, 7089, 0, 7089, 7089, 7089, 7089, 7089, 7089, 7089, 7089, 7089, 7089, 0, 0, 0, 0, 0, 0, 7089, 7089, 7089, 7089, 7089, 7089, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7089, 7089, 7089, 7089, 7089, 7089, 7090, 7090, 0, 7090, 7090, 7090, 7090, 7090, 7090, 0, 7090, 7090, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7090, 7090, 7090, 7090, 7090, 7090, 7090, 0, 0, 0, 0, 0, 7090, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7090, 7090, 7090, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7090, 7091, 7091, 0, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7091, 7097, 0, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 0, 0, 0, 0, 0, 0, 7097, 7097, 7097, 7097, 7097, 7097, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7097, 7097, 7097, 7097, 7097, 7097, 7101, 0, 0, 0, 7101, 0, 7101, 0, 0, 7101, 7101, 7101, 7101, 7101, 7101, 7101, 7101, 7101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7101, 7102, 7102, 0, 7102, 7102, 7102, 7102, 7102, 7102, 0, 7102, 7102, 7102, 7102, 7102, 7102, 7102, 7102, 7102, 7102, 7102, 7102, 7102, 7102, 7102, 7102, 7102, 7102, 0, 0, 0, 0, 0, 7102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7102, 7102, 7102, 7103, 7103, 0, 7103, 7103, 7103, 7103, 7103, 7103, 0, 7103, 7103, 7103, 7103, 7103, 7103, 7103, 0, 0, 0, 0, 7103, 7103, 7103, 7103, 7103, 7103, 7103, 0, 0, 0, 0, 0, 7103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7103, 7103, 7103, 7104, 7104, 0, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7104, 7106, 7106, 0, 7106, 7106, 7106, 7106, 7106, 7106, 0, 7106, 7106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7106, 7106, 7106, 7106, 7106, 7106, 7106, 0, 0, 0, 0, 0, 7106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7106, 7106, 7106, 7106, 7107, 7107, 0, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7113, 0, 7113, 7113, 7113, 7113, 7113, 7113, 7113, 7113, 7113, 7113, 0, 0, 0, 0, 0, 0, 7113, 7113, 7113, 7113, 7113, 7113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7113, 7113, 7113, 7113, 7113, 7113, 7115, 7115, 0, 7115, 7115, 7115, 7115, 7115, 7115, 0, 7115, 7115, 7115, 7115, 7115, 7115, 7115, 7115, 7115, 7115, 7115, 7115, 7115, 7115, 7115, 7115, 7115, 7115, 0, 0, 0, 0, 0, 7115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7115, 7115, 7115, 7116, 7116, 0, 7116, 7116, 7116, 7116, 7116, 7116, 0, 7116, 7116, 7116, 7116, 7116, 7116, 7116, 0, 0, 0, 0, 7116, 7116, 7116, 7116, 7116, 7116, 7116, 0, 0, 0, 0, 0, 7116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7116, 7116, 7116, 7117, 0, 0, 0, 7117, 0, 7117, 0, 0, 7117, 7117, 7117, 7117, 7117, 7117, 7117, 7117, 7117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7117, 7118, 7118, 0, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7118, 7120, 7120, 0, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7120, 7129, 0, 0, 0, 0, 0, 0, 0, 0, 7129, 7129, 7129, 7129, 7129, 7129, 7129, 7129, 7129, 7129, 0, 0, 0, 0, 0, 0, 7129, 7129, 7129, 7129, 7129, 7129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7129, 7129, 7129, 7129, 7129, 7129, 7130, 7130, 7130, 7130, 7130, 7130, 7130, 7130, 7130, 0, 0, 0, 0, 0, 0, 0, 7130, 7130, 7130, 7130, 7130, 7130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7130, 7130, 7130, 7130, 7130, 7130, 7133, 7133, 0, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7134, 7134, 0, 7134, 7134, 7134, 7134, 7134, 7134, 0, 7134, 7134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7134, 7134, 7134, 7134, 7134, 7134, 7134, 7134, 0, 0, 0, 0, 7134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7134, 7134, 7134, 7134, 7135, 7135, 0, 7135, 7135, 7135, 7135, 7135, 7135, 0, 7135, 7135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7135, 7135, 7135, 7135, 7135, 7135, 7135, 0, 0, 0, 0, 0, 7135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7135, 0, 0, 0, 0, 7135, 7135, 7135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7135, 7136, 7136, 0, 7136, 7136, 7136, 7136, 7136, 7136, 0, 7136, 7136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7136, 7136, 7136, 7136, 7136, 7136, 7136, 0, 0, 0, 0, 0, 7136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7136, 7136, 7136, 7136, 7138, 7138, 0, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7138, 7140, 7140, 7140, 7140, 7140, 7140, 7140, 7140, 7140, 7140, 0, 0, 0, 0, 0, 0, 7140, 7140, 7140, 7140, 7140, 7140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7140, 7140, 7140, 7140, 7140, 7140, 7142, 7142, 0, 7142, 7142, 7142, 7142, 7142, 7142, 0, 7142, 7142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7142, 7142, 7142, 7142, 7142, 7142, 7142, 0, 0, 0, 0, 0, 7142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7142, 7142, 7142, 7148, 0, 0, 0, 0, 0, 0, 0, 0, 7148, 7148, 7148, 7148, 7148, 7148, 7148, 7148, 7148, 0, 0, 0, 0, 0, 0, 0, 7148, 7148, 7148, 7148, 7148, 7148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7148, 7148, 7148, 7148, 7148, 7148, 7150, 7150, 0, 7150, 7150, 7150, 7150, 7150, 7150, 0, 7150, 7150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7150, 7150, 7150, 7150, 7150, 7150, 7150, 7150, 0, 0, 0, 0, 7150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7150, 7150, 7150, 7150, 7152, 7152, 0, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7152, 7154, 7154, 0, 7154, 7154, 7154, 7154, 7154, 7154, 0, 7154, 7154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7154, 7154, 7154, 7154, 7154, 7154, 7154, 0, 0, 0, 0, 0, 7154, 0, 0, 7154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7154, 7154, 7154, 7154, 7155, 7155, 0, 7155, 7155, 7155, 7155, 7155, 7155, 0, 7155, 7155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7155, 7155, 7155, 7155, 7155, 7155, 7155, 0, 0, 0, 0, 0, 7155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7155, 7155, 7155, 7156, 7156, 0, 7156, 7156, 7156, 7156, 7156, 7156, 0, 7156, 7156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7156, 7156, 7156, 7156, 7156, 7156, 7156, 0, 0, 0, 0, 0, 7156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7156, 7156, 7156, 7158, 7158, 0, 7158, 7158, 7158, 7158, 7158, 7158, 0, 7158, 7158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7158, 7158, 7158, 7158, 7158, 7158, 7158, 7158, 0, 0, 0, 0, 7158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7158, 7158, 7158, 7159, 7159, 0, 7159, 7159, 7159, 7159, 7159, 7159, 0, 7159, 7159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7159, 7159, 7159, 7159, 7159, 7159, 7159, 0, 0, 0, 0, 0, 7159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7159, 0, 0, 0, 0, 7159, 7159, 7159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7159, 7160, 7160, 0, 7160, 7160, 7160, 7160, 7160, 7160, 0, 7160, 7160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7160, 7160, 7160, 7160, 7160, 7160, 7160, 0, 0, 0, 0, 0, 7160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7160, 7160, 7160, 7160, 7164, 7164, 0, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7164, 7167, 7167, 7167, 7167, 7167, 7167, 7167, 7167, 7167, 7167, 0, 0, 0, 0, 0, 0, 7167, 7167, 7167, 7167, 7167, 7167, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7167, 7167, 7167, 7167, 7167, 7167, 7169, 0, 0, 0, 0, 0, 0, 0, 0, 7169, 7169, 7169, 7169, 7169, 7169, 7169, 7169, 7169, 0, 0, 0, 0, 0, 0, 0, 7169, 7169, 7169, 7169, 7169, 7169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7169, 7169, 7169, 7169, 7169, 7169, 7172, 7172, 0, 7172, 7172, 7172, 7172, 7172, 7172, 0, 7172, 7172, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7172, 7172, 7172, 7172, 7172, 7172, 7172, 7172, 0, 0, 0, 0, 7172, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7172, 7172, 7172, 7175, 7175, 7175, 7175, 7175, 7175, 7175, 7175, 7175, 7175, 0, 0, 0, 0, 0, 0, 7175, 7175, 7175, 7175, 7175, 7175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7175, 7175, 7175, 7175, 7175, 7175, 7179, 7179, 0, 7179, 7179, 7179, 7179, 7179, 7179, 7179, 7179, 7179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7179, 7179, 7179, 7179, 7179, 7179, 7179, 0, 0, 0, 0, 0, 7179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7179, 7179, 7179, 7179, 7180, 7180, 0, 7180, 7180, 7180, 7180, 7180, 7180, 7180, 7180, 7180, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7180, 7180, 7180, 7180, 7180, 7180, 7180, 0, 0, 0, 0, 0, 7180, 0, 0, 7180, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7180, 7180, 7180, 7180, 7181, 7181, 7181, 7181, 7181, 7181, 7181, 7181, 7181, 7181, 0, 0, 0, 0, 0, 0, 7181, 7181, 7181, 7181, 7181, 7181, 0, 0, 0, 0, 0, 7181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7181, 7181, 7181, 7181, 7181, 7181, 7183, 7183, 0, 7183, 7183, 7183, 7183, 7183, 7183, 0, 7183, 7183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7183, 7183, 7183, 7183, 7183, 7183, 7183, 0, 0, 0, 0, 0, 7183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7183, 7183, 7183, 7184, 7184, 0, 7184, 7184, 7184, 7184, 7184, 7184, 0, 7184, 7184, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7184, 7184, 7184, 7184, 7184, 7184, 7184, 7184, 0, 0, 0, 0, 7184, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7184, 7184, 7184, 7186, 7186, 0, 7186, 7186, 7186, 7186, 7186, 7186, 0, 7186, 7186, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7186, 7186, 7186, 7186, 7186, 7186, 7186, 0, 0, 0, 0, 0, 7186, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7186, 7186, 7186, 7187, 7187, 0, 7187, 7187, 7187, 7187, 7187, 7187, 0, 7187, 7187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7187, 7187, 7187, 7187, 7187, 7187, 7187, 7187, 0, 0, 0, 0, 7187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7187, 7187, 7187, 7188, 7188, 0, 7188, 7188, 7188, 7188, 7188, 7188, 0, 7188, 7188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7188, 7188, 7188, 7188, 7188, 7188, 7188, 0, 0, 0, 0, 0, 7188, 0, 7188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7188, 7188, 7188, 0, 0, 0, 0, 0, 0, 0, 0, 7188, 7193, 7193, 0, 7193, 7193, 7193, 7193, 7193, 7193, 0, 7193, 7193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7193, 7193, 7193, 7193, 7193, 7193, 7193, 0, 0, 0, 0, 0, 7193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7193, 7193, 7193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7193, 7218, 7218, 0, 7218, 7218, 7218, 7218, 7218, 7218, 0, 7218, 7218, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7218, 7218, 7218, 7218, 7218, 7218, 7218, 0, 0, 0, 0, 0, 7218, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7218, 7218, 7218, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7218, 7230, 0, 0, 0, 0, 0, 0, 0, 0, 7230, 7230, 7230, 7230, 7230, 7230, 7230, 7230, 7230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7230, 7231, 7231, 0, 7231, 7231, 7231, 7231, 7231, 7231, 0, 7231, 7231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7231, 7231, 7231, 7231, 7231, 7231, 7231, 0, 0, 0, 0, 0, 7231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7231, 7231, 7231, 7232, 7232, 0, 7232, 7232, 7232, 7232, 7232, 7232, 0, 7232, 7232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7232, 7232, 7232, 7232, 7232, 7232, 7232, 7232, 0, 0, 0, 0, 7232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7232, 7232, 7232, 7236, 7236, 0, 7236, 7236, 7236, 7236, 7236, 7236, 0, 7236, 7236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7236, 7236, 7236, 7236, 7236, 7236, 7236, 0, 0, 0, 0, 0, 7236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7236, 7236, 7236, 7237, 7237, 0, 7237, 7237, 7237, 7237, 7237, 7237, 0, 7237, 7237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7237, 7237, 7237, 7237, 7237, 7237, 7237, 7237, 0, 0, 0, 0, 7237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7237, 7237, 7237, 7240, 7240, 0, 7240, 7240, 7240, 7240, 7240, 7240, 0, 7240, 7240, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7240, 7240, 7240, 7240, 7240, 7240, 7240, 0, 0, 0, 0, 0, 7240, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7240, 7240, 7240, 7241, 7241, 0, 7241, 7241, 7241, 7241, 7241, 7241, 0, 7241, 7241, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7241, 7241, 7241, 7241, 7241, 7241, 7241, 7241, 0, 0, 0, 0, 7241, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7241, 7241, 7241, 7244, 7244, 0, 7244, 7244, 7244, 7244, 7244, 7244, 0, 7244, 7244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7244, 7244, 7244, 7244, 7244, 7244, 7244, 0, 0, 0, 0, 0, 7244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7244, 7244, 7244, 7245, 7245, 0, 7245, 7245, 7245, 7245, 7245, 7245, 0, 7245, 7245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7245, 7245, 7245, 7245, 7245, 7245, 7245, 7245, 0, 0, 0, 0, 7245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7245, 7245, 7245, 7247, 7247, 0, 7247, 7247, 7247, 7247, 7247, 7247, 0, 7247, 7247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7247, 7247, 7247, 7247, 7247, 7247, 7247, 0, 0, 0, 0, 0, 7247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7247, 7247, 7247, 7248, 7248, 0, 7248, 7248, 7248, 7248, 7248, 7248, 0, 7248, 7248, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7248, 7248, 7248, 7248, 7248, 7248, 7248, 7248, 0, 0, 0, 0, 7248, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7248, 7248, 7248, 7249, 7249, 0, 7249, 7249, 7249, 7249, 7249, 7249, 0, 7249, 7249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7249, 7249, 7249, 7249, 7249, 7249, 7249, 0, 0, 0, 0, 0, 7249, 7249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7249, 7249, 7249, 0, 0, 0, 0, 0, 0, 0, 7249, 7250, 7250, 0, 7250, 7250, 7250, 7250, 7250, 7250, 0, 7250, 7250, 0, 7250, 7250, 7250, 7250, 7250, 7250, 7250, 7250, 7250, 7250, 7250, 7250, 7250, 7250, 7250, 0, 0, 0, 0, 0, 7250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7250, 7250, 7250, 7251, 7251, 0, 7251, 7251, 7251, 7251, 7251, 7251, 0, 7251, 7251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7251, 7251, 7251, 7251, 7251, 7251, 7251, 0, 0, 0, 0, 0, 7251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7251, 7251, 7251, 7252, 7252, 0, 7252, 7252, 7252, 7252, 7252, 7252, 0, 7252, 7252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7252, 7252, 7252, 7252, 7252, 7252, 7252, 0, 0, 0, 0, 0, 7252, 7252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7252, 7252, 7252, 0, 0, 0, 0, 0, 0, 0, 7252, 7254, 7254, 0, 7254, 7254, 7254, 7254, 7254, 7254, 0, 7254, 7254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7254, 7254, 7254, 7254, 7254, 7254, 7254, 0, 0, 0, 0, 0, 7254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7254, 7254, 7254, 7255, 7255, 0, 7255, 7255, 7255, 7255, 7255, 7255, 0, 7255, 7255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7255, 7255, 7255, 7255, 7255, 7255, 7255, 7255, 0, 0, 0, 0, 7255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7255, 7255, 7255, 7259, 7259, 0, 7259, 7259, 7259, 7259, 7259, 7259, 0, 7259, 7259, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7259, 7259, 7259, 7259, 7259, 7259, 7259, 0, 0, 0, 0, 0, 7259, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7259, 7259, 7259, 7260, 7260, 0, 7260, 7260, 7260, 7260, 7260, 7260, 0, 7260, 7260, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7260, 7260, 7260, 7260, 7260, 7260, 7260, 7260, 0, 0, 0, 0, 7260, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7260, 7260, 7260, 7264, 7264, 0, 7264, 7264, 7264, 7264, 7264, 7264, 0, 7264, 7264, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7264, 7264, 7264, 7264, 7264, 7264, 7264, 0, 0, 0, 0, 0, 7264, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7264, 7264, 7264, 7265, 7265, 0, 7265, 7265, 7265, 7265, 7265, 7265, 0, 7265, 7265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7265, 7265, 7265, 7265, 7265, 7265, 7265, 7265, 0, 0, 0, 0, 7265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7265, 7265, 7265, 7268, 7268, 0, 7268, 7268, 7268, 7268, 7268, 7268, 0, 7268, 7268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7268, 7268, 7268, 7268, 7268, 7268, 7268, 0, 0, 0, 0, 0, 7268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7268, 7268, 7268, 7269, 7269, 0, 7269, 7269, 7269, 7269, 7269, 7269, 0, 7269, 7269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7269, 7269, 7269, 7269, 7269, 7269, 7269, 7269, 0, 0, 0, 0, 7269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7269, 7269, 7269, 7271, 7271, 0, 7271, 7271, 7271, 7271, 7271, 7271, 0, 7271, 7271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7271, 7271, 7271, 7271, 7271, 7271, 7271, 0, 0, 0, 0, 0, 7271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7271, 0, 0, 0, 0, 0, 7271, 7271, 7271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7271, 7272, 7272, 0, 7272, 7272, 7272, 7272, 7272, 7272, 0, 7272, 7272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7272, 7272, 7272, 7272, 7272, 7272, 7272, 0, 0, 0, 0, 0, 7272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7272, 7272, 7272, 7273, 7273, 0, 7273, 7273, 7273, 7273, 7273, 7273, 0, 7273, 7273, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7273, 7273, 7273, 7273, 7273, 7273, 7273, 7273, 0, 0, 0, 0, 7273, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7273, 7273, 7273, 7274, 7274, 0, 7274, 7274, 7274, 7274, 7274, 7274, 0, 7274, 7274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7274, 7274, 7274, 7274, 7274, 7274, 7274, 0, 0, 0, 0, 0, 7274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7274, 7274, 7274, 7275, 7275, 0, 7275, 7275, 7275, 7275, 7275, 7275, 0, 7275, 7275, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7275, 7275, 7275, 7275, 7275, 7275, 7275, 7275, 0, 0, 0, 0, 7275, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7275, 7275, 7275, 7279, 7279, 0, 7279, 7279, 7279, 7279, 7279, 7279, 0, 7279, 7279, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7279, 7279, 7279, 7279, 7279, 7279, 7279, 0, 0, 0, 0, 0, 7279, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7279, 7279, 7279, 7280, 7280, 0, 7280, 7280, 7280, 7280, 7280, 7280, 0, 7280, 7280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7280, 7280, 7280, 7280, 7280, 7280, 7280, 7280, 0, 0, 0, 0, 7280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7280, 7280, 7280, 7283, 7283, 0, 7283, 7283, 7283, 7283, 7283, 7283, 0, 7283, 7283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7283, 7283, 7283, 7283, 7283, 7283, 7283, 0, 0, 0, 0, 0, 7283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7283, 7283, 7283, 7284, 7284, 0, 7284, 7284, 7284, 7284, 7284, 7284, 0, 7284, 7284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7284, 7284, 7284, 7284, 7284, 7284, 7284, 7284, 0, 0, 0, 0, 7284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7284, 7284, 7284, 7286, 7286, 0, 7286, 7286, 7286, 7286, 7286, 7286, 0, 7286, 7286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7286, 7286, 7286, 7286, 7286, 7286, 7286, 0, 0, 0, 0, 0, 7286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7286, 0, 0, 0, 0, 0, 7286, 7286, 7286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7286, 7287, 7287, 0, 7287, 7287, 7287, 7287, 7287, 7287, 0, 7287, 7287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7287, 7287, 7287, 7287, 7287, 7287, 7287, 0, 0, 0, 0, 0, 7287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7287, 7287, 7287, 7288, 7288, 0, 7288, 7288, 7288, 7288, 7288, 7288, 0, 7288, 7288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7288, 7288, 7288, 7288, 7288, 7288, 7288, 7288, 0, 0, 0, 0, 7288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7288, 7288, 7288, 7295, 7295, 0, 7295, 7295, 7295, 7295, 7295, 7295, 0, 7295, 7295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7295, 7295, 7295, 7295, 7295, 7295, 7295, 0, 0, 0, 0, 0, 7295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7295, 7295, 7295, 0, 0, 0, 7295, 7296, 7296, 0, 7296, 7296, 7296, 7296, 7296, 7296, 0, 7296, 7296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7296, 7296, 7296, 7296, 7296, 7296, 7296, 0, 0, 0, 0, 0, 7296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7296, 7296, 7296, 0, 0, 0, 7296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7296, 0, 0, 0, 0, 7296, 7303, 7303, 0, 7303, 7303, 7303, 7303, 7303, 7303, 0, 7303, 7303, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7303, 7303, 7303, 7303, 7303, 7303, 7303, 0, 0, 0, 0, 0, 7303, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7303, 0, 0, 0, 0, 7303, 7303, 7303, 0, 0, 0, 7303, 0, 7303, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7303, 7305, 7305, 0, 7305, 7305, 7305, 7305, 7305, 7305, 0, 7305, 7305, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7305, 7305, 7305, 7305, 7305, 7305, 7305, 0, 0, 0, 0, 0, 7305, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7305, 0, 0, 0, 0, 7305, 7305, 7305, 0, 0, 0, 7305, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7305, 7306, 7306, 0, 7306, 7306, 7306, 7306, 7306, 7306, 0, 7306, 7306, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7306, 7306, 7306, 7306, 7306, 7306, 7306, 0, 0, 0, 0, 0, 7306, 0, 0, 0, 0, 0, 7306, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7306, 7306, 7306, 0, 0, 0, 7306, 7307, 7307, 0, 7307, 7307, 7307, 7307, 7307, 7307, 0, 7307, 7307, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7307, 7307, 7307, 7307, 7307, 7307, 7307, 0, 0, 0, 0, 0, 7307, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7307, 7307, 7307, 0, 0, 0, 7307, 0, 7307, 7308, 7308, 0, 7308, 7308, 7308, 7308, 7308, 7308, 0, 7308, 7308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7308, 7308, 7308, 7308, 7308, 7308, 7308, 0, 0, 0, 0, 0, 7308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7308, 7308, 7308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7308, 7309, 7309, 0, 7309, 7309, 7309, 7309, 7309, 7309, 0, 7309, 7309, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7309, 7309, 7309, 7309, 7309, 7309, 7309, 0, 0, 0, 0, 0, 7309, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7309, 7309, 7309, 0, 0, 0, 0, 0, 7309, 7310, 7310, 7310, 7310, 7310, 7310, 7310, 7310, 7310, 0, 7310, 7310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7310, 7310, 7310, 7310, 7310, 7310, 7310, 0, 0, 0, 0, 0, 7310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7310, 7310, 7310, 7311, 7311, 7311, 7311, 7311, 7311, 7311, 7311, 7311, 0, 7311, 7311, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7311, 7311, 7311, 7311, 7311, 7311, 7311, 7311, 0, 0, 0, 0, 7311, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7311, 7311, 7311, 7315, 7315, 7315, 7315, 7315, 7315, 7315, 7315, 7315, 0, 7315, 7315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7315, 7315, 7315, 7315, 7315, 7315, 7315, 0, 0, 0, 0, 0, 7315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7315, 7315, 7315, 7316, 7316, 7316, 7316, 7316, 7316, 7316, 7316, 7316, 0, 7316, 7316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7316, 7316, 7316, 7316, 7316, 7316, 7316, 7316, 0, 0, 0, 0, 7316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7316, 7316, 7316, 7318, 7318, 7318, 7318, 7318, 7318, 7318, 7318, 7318, 0, 7318, 7318, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7318, 7318, 7318, 7318, 7318, 7318, 7318, 0, 0, 0, 0, 0, 7318, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7318, 7318, 7318, 7319, 7319, 7319, 7319, 7319, 7319, 7319, 7319, 7319, 0, 7319, 7319, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7319, 7319, 7319, 7319, 7319, 7319, 7319, 7319, 0, 0, 0, 0, 7319, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7319, 7319, 7319, 7321, 7321, 7321, 7321, 7321, 7321, 7321, 7321, 7321, 0, 7321, 7321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7321, 7321, 7321, 7321, 7321, 7321, 7321, 0, 0, 0, 0, 0, 7321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7321, 7321, 7321, 7322, 7322, 7322, 7322, 7322, 7322, 7322, 7322, 7322, 0, 7322, 7322, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7322, 7322, 7322, 7322, 7322, 7322, 7322, 7322, 0, 0, 0, 0, 7322, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7322, 7322, 7322, 7323, 7323, 7323, 7323, 7323, 7323, 7323, 7323, 7323, 0, 7323, 7323, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7323, 7323, 7323, 7323, 7323, 7323, 7323, 0, 0, 0, 0, 0, 7323, 0, 7323, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7323, 7323, 7323, 0, 0, 0, 0, 0, 0, 0, 0, 7323, 7326, 7326, 7326, 7326, 7326, 7326, 7326, 7326, 7326, 0, 7326, 7326, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7326, 7326, 7326, 7326, 7326, 7326, 7326, 0, 0, 0, 0, 0, 7326, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7326, 7326, 7326, 7327, 7327, 7327, 7327, 7327, 7327, 7327, 7327, 7327, 0, 7327, 7327, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7327, 7327, 7327, 7327, 7327, 7327, 7327, 7327, 0, 0, 0, 0, 7327, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7327, 7327, 7327, 7331, 7331, 7331, 7331, 7331, 7331, 7331, 7331, 7331, 0, 7331, 7331, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7331, 7331, 7331, 7331, 7331, 7331, 7331, 0, 0, 0, 0, 0, 7331, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7331, 7331, 7331, 7332, 7332, 7332, 7332, 7332, 7332, 7332, 7332, 7332, 0, 7332, 7332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7332, 7332, 7332, 7332, 7332, 7332, 7332, 7332, 0, 0, 0, 0, 7332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7332, 7332, 7332, 7335, 7335, 7335, 7335, 7335, 7335, 7335, 7335, 7335, 0, 7335, 7335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7335, 7335, 7335, 7335, 7335, 7335, 7335, 0, 0, 0, 0, 0, 7335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7335, 7335, 7335, 7336, 7336, 7336, 7336, 7336, 7336, 7336, 7336, 7336, 0, 7336, 7336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7336, 7336, 7336, 7336, 7336, 7336, 7336, 7336, 0, 0, 0, 0, 7336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7336, 7336, 7336, 7338, 7338, 7338, 7338, 7338, 7338, 7338, 7338, 7338, 0, 7338, 7338, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7338, 7338, 7338, 7338, 7338, 7338, 7338, 0, 0, 0, 0, 0, 7338, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7338, 7338, 7338, 7339, 7339, 7339, 7339, 7339, 7339, 7339, 7339, 7339, 0, 7339, 7339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7339, 7339, 7339, 7339, 7339, 7339, 7339, 7339, 0, 0, 0, 0, 7339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7339, 7339, 7339, 7340, 7340, 7340, 7340, 7340, 7340, 7340, 7340, 7340, 7340, 7340, 7340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7340, 7340, 7340, 7340, 7340, 7340, 7340, 7340, 0, 0, 0, 0, 7340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7340, 7340, 7340, 7340, 7340, 7341, 7341, 7341, 7341, 7341, 7341, 7341, 7341, 7341, 0, 7341, 7341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7341, 7341, 7341, 7341, 7341, 7341, 7341, 0, 0, 0, 0, 0, 7341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7341, 7341, 7341, 7342, 7342, 7342, 7342, 7342, 7342, 7342, 7342, 7342, 0, 7342, 7342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7342, 7342, 7342, 7342, 7342, 7342, 7342, 7342, 0, 0, 0, 0, 7342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7342, 7342, 7342, 7344, 7344, 7344, 7344, 7344, 7344, 7344, 7344, 7344, 0, 7344, 7344, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7344, 7344, 7344, 7344, 7344, 7344, 7344, 0, 0, 0, 0, 0, 7344, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7344, 7344, 7344, 7345, 7345, 7345, 7345, 7345, 7345, 7345, 7345, 7345, 0, 7345, 7345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7345, 7345, 7345, 7345, 7345, 7345, 7345, 7345, 0, 0, 0, 0, 7345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7345, 7345, 7345, 7347, 7347, 7347, 7347, 7347, 7347, 7347, 7347, 7347, 0, 7347, 7347, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7347, 7347, 7347, 7347, 7347, 7347, 7347, 0, 0, 0, 0, 0, 7347, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7347, 7347, 7347, 7348, 7348, 7348, 7348, 7348, 7348, 7348, 7348, 7348, 0, 7348, 7348, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7348, 7348, 7348, 7348, 7348, 7348, 7348, 7348, 0, 0, 0, 0, 7348, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7348, 7348, 7348, 7349, 7349, 7349, 7349, 7349, 7349, 7349, 7349, 7349, 7349, 7349, 7349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7349, 7349, 7349, 7349, 7349, 7349, 7349, 7349, 0, 0, 0, 0, 7349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7349, 7349, 7349, 7349, 7349, 7368, 7368, 0, 7368, 7368, 7368, 7368, 7368, 7368, 0, 7368, 7368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7368, 7368, 7368, 7368, 7368, 7368, 7368, 0, 0, 0, 0, 0, 7368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7368, 7368, 7368, 0, 0, 0, 0, 7368, 7369, 7369, 0, 7369, 7369, 7369, 7369, 7369, 7369, 0, 7369, 7369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7369, 7369, 7369, 7369, 7369, 7369, 7369, 0, 0, 0, 0, 0, 7369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7369, 7369, 7369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7369, 7371, 7371, 0, 7371, 7371, 7371, 7371, 7371, 7371, 0, 7371, 7371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7371, 7371, 7371, 7371, 7371, 7371, 7371, 0, 0, 0, 0, 0, 7371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7371, 7371, 7371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7371, 7373, 7373, 0, 7373, 7373, 7373, 7373, 0, 7373, 7373, 7373, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7373, 7373, 7373, 7373, 7373, 7373, 7373, 0, 0, 0, 0, 0, 7373, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7373, 7373, 7373, 7373, 7374, 7374, 0, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7374, 7386, 7386, 0, 7386, 7386, 7386, 7386, 7386, 7386, 0, 7386, 7386, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7386, 7386, 7386, 7386, 7386, 7386, 7386, 0, 0, 0, 0, 0, 7386, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7386, 7386, 7386, 7387, 7387, 0, 7387, 7387, 7387, 7387, 7387, 7387, 0, 7387, 7387, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7387, 7387, 7387, 7387, 7387, 7387, 7387, 7387, 0, 0, 0, 0, 7387, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7387, 7387, 7387, 7391, 7391, 0, 7391, 7391, 7391, 7391, 7391, 7391, 0, 7391, 7391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7391, 7391, 7391, 7391, 7391, 7391, 7391, 0, 0, 0, 0, 0, 7391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7391, 7391, 7391, 7392, 7392, 0, 7392, 7392, 7392, 7392, 7392, 7392, 0, 7392, 7392, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7392, 7392, 7392, 7392, 7392, 7392, 7392, 7392, 0, 0, 0, 0, 7392, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7392, 7392, 7392, 7396, 7396, 0, 7396, 7396, 7396, 7396, 7396, 7396, 0, 7396, 7396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7396, 7396, 7396, 7396, 7396, 7396, 7396, 0, 0, 0, 0, 0, 7396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7396, 7396, 7396, 7397, 7397, 0, 7397, 7397, 7397, 7397, 7397, 7397, 0, 7397, 7397, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7397, 7397, 7397, 7397, 7397, 7397, 7397, 7397, 0, 0, 0, 0, 7397, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7397, 7397, 7397, 7401, 7401, 0, 7401, 7401, 7401, 7401, 7401, 7401, 0, 7401, 7401, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7401, 7401, 7401, 7401, 7401, 7401, 7401, 0, 0, 0, 0, 0, 7401, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7401, 7401, 7401, 7402, 7402, 0, 7402, 7402, 7402, 7402, 7402, 7402, 0, 7402, 7402, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7402, 7402, 7402, 7402, 7402, 7402, 7402, 7402, 0, 0, 0, 0, 7402, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7402, 7402, 7402, 7405, 7405, 0, 7405, 7405, 7405, 7405, 7405, 7405, 0, 7405, 7405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7405, 7405, 7405, 7405, 7405, 7405, 7405, 0, 0, 0, 0, 0, 7405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7405, 7405, 7405, 7406, 7406, 0, 7406, 7406, 7406, 7406, 7406, 7406, 0, 7406, 7406, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7406, 7406, 7406, 7406, 7406, 7406, 7406, 7406, 0, 0, 0, 0, 7406, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7406, 7406, 7406, 7408, 7408, 0, 7408, 7408, 7408, 7408, 7408, 7408, 0, 7408, 7408, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7408, 7408, 7408, 7408, 7408, 7408, 7408, 0, 0, 0, 0, 0, 7408, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7408, 7408, 7408, 7409, 7409, 0, 7409, 7409, 7409, 7409, 7409, 7409, 0, 7409, 7409, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7409, 7409, 7409, 7409, 7409, 7409, 7409, 7409, 0, 0, 0, 0, 7409, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7409, 7409, 7409, 7410, 7410, 0, 7410, 7410, 7410, 7410, 7410, 7410, 0, 7410, 7410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7410, 7410, 7410, 7410, 7410, 7410, 7410, 0, 0, 0, 0, 0, 7410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7410, 0, 0, 7410, 7410, 7410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7410, 7411, 7411, 0, 7411, 7411, 7411, 7411, 7411, 7411, 0, 7411, 7411, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7411, 7411, 7411, 7411, 7411, 7411, 7411, 0, 0, 0, 0, 0, 7411, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7411, 7411, 7411, 7412, 7412, 0, 7412, 7412, 7412, 7412, 7412, 7412, 0, 7412, 7412, 7412, 7412, 7412, 7412, 7412, 7412, 7412, 7412, 7412, 7412, 7412, 7412, 7412, 7412, 7412, 7412, 0, 0, 0, 0, 0, 7412, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7412, 7412, 7412, 7414, 7414, 0, 7414, 7414, 7414, 7414, 7414, 7414, 0, 7414, 7414, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7414, 7414, 7414, 7414, 7414, 7414, 7414, 0, 0, 0, 0, 0, 7414, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7414, 7414, 7414, 7415, 7415, 0, 7415, 7415, 7415, 7415, 7415, 7415, 0, 7415, 7415, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7415, 7415, 7415, 7415, 7415, 7415, 7415, 7415, 0, 0, 0, 0, 7415, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7415, 7415, 7415, 7416, 7416, 0, 7416, 7416, 7416, 7416, 7416, 7416, 0, 7416, 7416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7416, 7416, 7416, 7416, 7416, 7416, 7416, 0, 0, 0, 0, 0, 7416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7416, 0, 0, 7416, 7416, 7416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7416, 7427, 7427, 0, 7427, 7427, 7427, 7427, 7427, 7427, 0, 7427, 7427, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7427, 7427, 7427, 7427, 7427, 7427, 7427, 0, 0, 0, 0, 0, 7427, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7427, 7427, 7427, 7428, 7428, 0, 7428, 7428, 7428, 7428, 7428, 7428, 0, 7428, 7428, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7428, 7428, 7428, 7428, 7428, 7428, 7428, 7428, 0, 0, 0, 0, 7428, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7428, 7428, 7428, 7442, 7442, 0, 7442, 7442, 7442, 7442, 7442, 7442, 0, 7442, 7442, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7442, 7442, 7442, 7442, 7442, 7442, 7442, 0, 0, 0, 0, 0, 7442, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7442, 7442, 7442, 7443, 7443, 0, 7443, 7443, 7443, 7443, 7443, 7443, 0, 7443, 7443, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7443, 7443, 7443, 7443, 7443, 7443, 7443, 7443, 0, 0, 0, 0, 7443, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7443, 7443, 7443, 7467, 7467, 0, 7467, 7467, 7467, 7467, 7467, 7467, 0, 7467, 7467, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7467, 7467, 7467, 7467, 7467, 7467, 7467, 0, 0, 0, 0, 0, 7467, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7467, 7467, 7467, 7467, 7468, 7468, 0, 7468, 7468, 7468, 7468, 7468, 7468, 0, 7468, 7468, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7468, 7468, 7468, 7468, 7468, 7468, 7468, 7468, 0, 0, 0, 0, 7468, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7468, 7468, 7468, 7468, 7472, 7472, 0, 7472, 7472, 7472, 7472, 7472, 7472, 0, 7472, 7472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7472, 7472, 7472, 7472, 7472, 7472, 7472, 0, 0, 0, 0, 0, 7472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7472, 7472, 7472, 7472, 7473, 7473, 0, 7473, 7473, 7473, 7473, 7473, 7473, 0, 7473, 7473, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7473, 7473, 7473, 7473, 7473, 7473, 7473, 7473, 0, 0, 0, 0, 7473, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7473, 7473, 7473, 7473, 7474, 7474, 0, 7474, 7474, 7474, 7474, 7474, 7474, 0, 7474, 7474, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7474, 7474, 7474, 7474, 7474, 7474, 7474, 0, 0, 0, 0, 0, 7474, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7474, 7474, 7474, 7476, 7476, 0, 7476, 7476, 7476, 7476, 7476, 7476, 0, 7476, 7476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7476, 7476, 7476, 7476, 7476, 7476, 7476, 7476, 0, 0, 0, 0, 7476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7476, 7476, 7476, 7482, 7482, 7482, 7482, 7482, 7482, 7482, 7482, 7482, 7482, 0, 0, 0, 0, 0, 0, 7482, 7482, 7482, 7482, 7482, 7482, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7482, 7482, 7482, 7482, 7482, 7482, 7483, 7483, 7483, 7483, 7483, 7483, 7483, 7483, 7483, 7483, 0, 0, 0, 0, 0, 0, 7483, 7483, 7483, 7483, 7483, 7483, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7483, 7483, 7483, 7483, 7483, 7483, 7485, 7485, 7485, 7485, 7485, 7485, 7485, 7485, 7485, 7485, 0, 0, 0, 0, 0, 0, 7485, 7485, 7485, 7485, 7485, 7485, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7485, 7485, 7485, 7485, 7485, 7485, 7487, 7487, 7487, 7487, 7487, 7487, 7487, 7487, 7487, 0, 0, 0, 0, 0, 0, 0, 7487, 7487, 7487, 7487, 7487, 7487, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7487, 0, 0, 0, 7487, 7487, 7487, 7487, 7487, 7487, 7491, 7491, 7491, 7491, 7491, 7491, 7491, 7491, 7491, 7491, 0, 0, 0, 0, 0, 0, 7491, 7491, 7491, 7491, 7491, 7491, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7491, 7491, 7491, 7491, 7491, 7491, 7493, 7493, 7493, 7493, 7493, 7493, 7493, 7493, 7493, 0, 0, 0, 0, 0, 0, 0, 7493, 7493, 7493, 7493, 7493, 7493, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7493, 7493, 7493, 7493, 7493, 7493, 7503, 7503, 7503, 7503, 7503, 7503, 7503, 7503, 7503, 7503, 0, 0, 0, 0, 0, 0, 7503, 7503, 7503, 7503, 7503, 7503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7503, 7503, 7503, 7503, 7503, 7503, 7505, 7505, 7505, 7505, 7505, 7505, 7505, 7505, 7505, 0, 0, 0, 0, 0, 0, 0, 7505, 7505, 7505, 7505, 7505, 7505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7505, 7505, 7505, 7505, 7505, 7505, 7517, 7517, 7517, 7517, 7517, 7517, 7517, 7517, 7517, 7517, 0, 0, 0, 0, 0, 0, 7517, 7517, 7517, 7517, 7517, 7517, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7517, 7517, 7517, 7517, 7517, 7517, 7519, 7519, 7519, 7519, 7519, 7519, 7519, 7519, 7519, 0, 0, 0, 0, 0, 0, 0, 7519, 7519, 7519, 7519, 7519, 7519, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7519, 7519, 7519, 7519, 7519, 7519, 7527, 0, 7527, 7527, 7527, 7527, 7527, 7527, 7527, 7527, 7527, 7527, 0, 0, 0, 0, 0, 0, 7527, 7527, 7527, 7527, 7527, 7527, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7527, 7527, 7527, 7527, 7527, 7527, 7531, 7531, 7531, 7531, 7531, 7531, 7531, 7531, 7531, 7531, 0, 0, 0, 0, 0, 0, 7531, 7531, 7531, 7531, 7531, 7531, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7531, 7531, 7531, 7531, 7531, 7531, 7534, 7534, 7534, 7534, 7534, 7534, 7534, 7534, 7534, 7534, 0, 0, 0, 0, 0, 0, 7534, 7534, 7534, 7534, 7534, 7534, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7534, 7534, 7534, 7534, 7534, 7534, 7542, 7542, 7542, 7542, 7542, 7542, 7542, 7542, 7542, 0, 0, 0, 0, 0, 0, 0, 7542, 7542, 7542, 7542, 7542, 7542, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7542, 7542, 7542, 7542, 7542, 7542, 7544, 7544, 7544, 7544, 7544, 7544, 7544, 7544, 7544, 7544, 0, 0, 0, 0, 0, 0, 7544, 7544, 7544, 7544, 7544, 7544, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7544, 7544, 7544, 7544, 7544, 7544, 7556, 0, 0, 0, 0, 0, 0, 7556, 0, 7556, 7556, 7556, 7556, 7556, 7556, 7556, 7556, 7556, 7556, 0, 0, 0, 0, 0, 0, 7556, 7556, 7556, 7556, 7556, 7556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7556, 0, 0, 0, 7556, 7556, 7556, 7556, 7556, 7556, 7572, 0, 0, 0, 0, 0, 0, 7572, 0, 7572, 7572, 7572, 7572, 7572, 7572, 7572, 7572, 7572, 7572, 0, 0, 0, 0, 0, 0, 7572, 7572, 7572, 7572, 7572, 7572, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7572, 7572, 7572, 7572, 7572, 7572, 0, 0, 0, 0, 0, 0, 0, 7572, 7603, 0, 0, 7603, 0, 0, 0, 0, 0, 0, 7603, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7603, 0, 7603, 0, 7603, 0, 0, 7603, 0, 0, 0, 0, 7603, 0, 0, 7603, 0, 7603, 0, 7603, 0, 7603, 7603, 7603, 7606, 7606, 0, 0, 0, 0, 7606, 0, 0, 0, 0, 0, 0, 0, 7606, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7606, 0, 7606, 0, 0, 0, 0, 7606, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7606, 0, 7606, 0, 7606, 0, 0, 7606, 0, 0, 0, 0, 7606, 0, 0, 7606, 0, 7606, 0, 7606, 0, 7606, 7606, 7606, 7607, 7607, 7607, 0, 0, 0, 7607, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7607, 0, 0, 0, 0, 0, 0, 7607, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7607, 0, 7607, 0, 7607, 0, 0, 7607, 0, 0, 0, 0, 7607, 0, 0, 7607, 0, 7607, 0, 7607, 0, 7607, 7607, 7607, 7613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7613, 0, 0, 0, 0, 0, 0, 7613, 0, 0, 0, 0, 0, 7613, 0, 0, 0, 0, 0, 0, 0, 7613, 0, 7613, 0, 7613, 0, 0, 7613, 0, 0, 0, 0, 7613, 0, 0, 7613, 0, 7613, 0, 7613, 0, 7613, 7613, 7613, 7614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7614, 0, 0, 0, 0, 0, 0, 7614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7614, 0, 7614, 0, 7614, 0, 0, 7614, 0, 0, 0, 0, 7614, 0, 0, 7614, 0, 7614, 0, 7614, 0, 7614, 7614, 7614, 7615, 0, 0, 0, 0, 0, 0, 0, 7615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7615, 0, 0, 0, 0, 0, 0, 7615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7615, 0, 7615, 0, 7615, 0, 0, 7615, 0, 0, 0, 0, 7615, 0, 0, 7615, 0, 7615, 0, 7615, 0, 7615, 7615, 7615, 7616, 7616, 0, 0, 0, 0, 7616, 0, 0, 7616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7616, 0, 0, 0, 0, 0, 0, 7616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7616, 0, 7616, 0, 7616, 0, 0, 7616, 0, 0, 0, 0, 7616, 0, 0, 7616, 0, 7616, 0, 7616, 0, 7616, 7616, 7616, 7617, 7617, 0, 0, 0, 0, 7617, 0, 0, 7617, 7617, 7617, 7617, 7617, 7617, 7617, 7617, 7617, 7617, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7617, 0, 0, 0, 0, 0, 0, 7617, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7617, 0, 7617, 0, 7617, 0, 0, 7617, 0, 0, 0, 0, 7617, 0, 0, 7617, 0, 7617, 0, 7617, 0, 7617, 7617, 7617, 7620, 7620, 7620, 7620, 7620, 7620, 7620, 7620, 7620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7620, 0, 0, 0, 0, 0, 0, 0, 7620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7620, 7626, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7626, 0, 0, 0, 0, 0, 0, 7626, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7626, 0, 7626, 0, 7626, 0, 0, 7626, 0, 0, 0, 0, 7626, 0, 7626, 7626, 0, 7626, 0, 7626, 0, 7626, 7626, 7626, 7629, 0, 7629, 7629, 7629, 7629, 7629, 7629, 7629, 7629, 7629, 7629, 0, 0, 0, 0, 0, 0, 7629, 7629, 7629, 7629, 7629, 7629, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7629, 7629, 7629, 7629, 7629, 7629, 7633, 7633, 7633, 7633, 7633, 7633, 7633, 7633, 7633, 7633, 0, 0, 0, 0, 0, 7633, 7633, 7633, 7633, 7633, 7633, 7633, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7633, 7633, 7633, 7633, 7633, 7633, 7635, 7635, 0, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7635, 7645, 7645, 0, 7645, 7645, 7645, 7645, 7645, 7645, 0, 7645, 7645, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7645, 7645, 7645, 7645, 7645, 7645, 7645, 0, 0, 0, 0, 0, 7645, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7645, 7645, 7645, 7646, 7646, 0, 7646, 7646, 7646, 7646, 7646, 7646, 0, 7646, 7646, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7646, 7646, 7646, 7646, 7646, 7646, 7646, 7646, 0, 0, 0, 0, 7646, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7646, 7646, 7646, 7650, 7650, 0, 7650, 7650, 7650, 7650, 7650, 7650, 0, 7650, 7650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7650, 7650, 7650, 7650, 7650, 7650, 7650, 0, 0, 0, 0, 0, 7650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7650, 7650, 7650, 7651, 7651, 0, 7651, 7651, 7651, 7651, 7651, 7651, 0, 7651, 7651, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7651, 7651, 7651, 7651, 7651, 7651, 7651, 7651, 0, 0, 0, 0, 7651, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7651, 7651, 7651, 7655, 7655, 0, 7655, 7655, 7655, 7655, 7655, 7655, 0, 7655, 7655, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7655, 7655, 7655, 7655, 7655, 7655, 7655, 0, 0, 0, 0, 0, 7655, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7655, 7655, 7655, 7656, 7656, 0, 7656, 7656, 7656, 7656, 7656, 7656, 0, 7656, 7656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7656, 7656, 7656, 7656, 7656, 7656, 7656, 7656, 0, 0, 0, 0, 7656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7656, 7656, 7656, 7660, 7660, 0, 7660, 7660, 7660, 7660, 7660, 7660, 0, 7660, 7660, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7660, 7660, 7660, 7660, 7660, 7660, 7660, 0, 0, 0, 0, 0, 7660, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7660, 7660, 7660, 7661, 7661, 0, 7661, 7661, 7661, 7661, 7661, 7661, 0, 7661, 7661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7661, 7661, 7661, 7661, 7661, 7661, 7661, 7661, 0, 0, 0, 0, 7661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7661, 7661, 7661, 7665, 7665, 0, 7665, 7665, 7665, 7665, 7665, 7665, 0, 7665, 7665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7665, 7665, 7665, 7665, 7665, 7665, 7665, 0, 0, 0, 0, 0, 7665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7665, 7665, 7665, 7666, 7666, 0, 7666, 7666, 7666, 7666, 7666, 7666, 0, 7666, 7666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7666, 7666, 7666, 7666, 7666, 7666, 7666, 7666, 0, 0, 0, 0, 7666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7666, 7666, 7666, 7669, 7669, 0, 7669, 7669, 7669, 7669, 7669, 7669, 0, 7669, 7669, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7669, 7669, 7669, 7669, 7669, 7669, 7669, 0, 0, 0, 0, 0, 7669, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7669, 7669, 7669, 7670, 7670, 0, 7670, 7670, 7670, 7670, 7670, 7670, 0, 7670, 7670, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7670, 7670, 7670, 7670, 7670, 7670, 7670, 7670, 0, 0, 0, 0, 7670, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7670, 7670, 7670, 7672, 7672, 0, 7672, 7672, 7672, 7672, 7672, 7672, 0, 7672, 7672, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7672, 7672, 7672, 7672, 7672, 7672, 7672, 0, 0, 0, 0, 0, 7672, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7672, 0, 0, 0, 0, 0, 7672, 7672, 7672, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7672, 7673, 7673, 0, 7673, 7673, 7673, 7673, 7673, 7673, 0, 7673, 7673, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7673, 7673, 7673, 7673, 7673, 7673, 7673, 0, 0, 0, 0, 0, 7673, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7673, 7673, 7673, 7674, 7674, 0, 7674, 7674, 7674, 7674, 7674, 7674, 0, 7674, 7674, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7674, 7674, 7674, 7674, 7674, 7674, 7674, 7674, 0, 0, 0, 0, 7674, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7674, 7674, 7674, 7675, 7675, 0, 7675, 7675, 7675, 7675, 7675, 7675, 0, 7675, 7675, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7675, 7675, 7675, 7675, 7675, 7675, 7675, 0, 0, 0, 0, 0, 7675, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7675, 7675, 7675, 7676, 7676, 0, 7676, 7676, 7676, 7676, 7676, 7676, 0, 7676, 7676, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7676, 7676, 7676, 7676, 7676, 7676, 7676, 7676, 0, 0, 0, 0, 7676, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7676, 7676, 7676, 7680, 7680, 0, 7680, 7680, 7680, 7680, 7680, 7680, 0, 7680, 7680, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7680, 7680, 7680, 7680, 7680, 7680, 7680, 0, 0, 0, 0, 0, 7680, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7680, 7680, 7680, 7681, 7681, 0, 7681, 7681, 7681, 7681, 7681, 7681, 0, 7681, 7681, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7681, 7681, 7681, 7681, 7681, 7681, 7681, 7681, 0, 0, 0, 0, 7681, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7681, 7681, 7681, 7684, 7684, 0, 7684, 7684, 7684, 7684, 7684, 7684, 0, 7684, 7684, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7684, 7684, 7684, 7684, 7684, 7684, 7684, 0, 0, 0, 0, 0, 7684, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7684, 7684, 7684, 7685, 7685, 0, 7685, 7685, 7685, 7685, 7685, 7685, 0, 7685, 7685, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7685, 7685, 7685, 7685, 7685, 7685, 7685, 7685, 0, 0, 0, 0, 7685, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7685, 7685, 7685, 7687, 7687, 0, 7687, 7687, 7687, 7687, 7687, 7687, 0, 7687, 7687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7687, 7687, 7687, 7687, 7687, 7687, 7687, 0, 0, 0, 0, 0, 7687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7687, 0, 0, 0, 0, 0, 7687, 7687, 7687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7687, 7688, 7688, 0, 7688, 7688, 7688, 7688, 7688, 7688, 0, 7688, 7688, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7688, 7688, 7688, 7688, 7688, 7688, 7688, 0, 0, 0, 0, 0, 7688, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7688, 7688, 7688, 7689, 7689, 0, 7689, 7689, 7689, 7689, 7689, 7689, 0, 7689, 7689, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7689, 7689, 7689, 7689, 7689, 7689, 7689, 7689, 0, 0, 0, 0, 7689, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7689, 7689, 7689, 7692, 7692, 0, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7692, 7693, 0, 0, 0, 0, 0, 0, 0, 0, 7693, 7693, 7693, 7693, 7693, 7693, 7693, 7693, 7693, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7693, 7693, 7693, 7693, 7693, 7693, 7693, 7693, 7693, 7693, 7693, 7693, 7693, 7693, 7693, 7693, 7693, 7693, 7693, 7693, 7693, 7693, 7693, 7693, 7693, 7697, 7697, 0, 7697, 7697, 7697, 7697, 7697, 7697, 0, 7697, 7697, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7697, 7697, 7697, 7697, 7697, 7697, 7697, 0, 0, 0, 0, 0, 7697, 0, 0, 7697, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7697, 7697, 7697, 7697, 7698, 7698, 0, 7698, 7698, 7698, 7698, 7698, 7698, 0, 7698, 7698, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7698, 7698, 7698, 7698, 7698, 7698, 7698, 0, 0, 0, 0, 0, 7698, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7698, 7698, 7698, 7699, 7699, 0, 7699, 7699, 7699, 7699, 7699, 7699, 0, 7699, 7699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7699, 7699, 7699, 7699, 7699, 7699, 7699, 0, 0, 0, 0, 0, 7699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7699, 7699, 7699, 7699, 7700, 7700, 0, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7700, 7703, 7703, 0, 7703, 7703, 7703, 7703, 7703, 7703, 0, 7703, 7703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7703, 7703, 7703, 7703, 7703, 7703, 7703, 0, 0, 0, 0, 0, 7703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7703, 7703, 7703, 7709, 7709, 0, 7709, 7709, 7709, 7709, 7709, 7709, 0, 7709, 7709, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7709, 7709, 7709, 7709, 7709, 7709, 7709, 7709, 0, 0, 0, 0, 7709, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7709, 7709, 7709, 7709, 7712, 7712, 0, 7712, 7712, 7712, 7712, 7712, 7712, 0, 7712, 7712, 7712, 7712, 7712, 7712, 7712, 7712, 0, 0, 0, 7712, 7712, 7712, 7712, 7712, 7712, 7712, 0, 0, 0, 0, 0, 7712, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7712, 7712, 7712, 7713, 7713, 0, 7713, 7713, 7713, 7713, 7713, 7713, 0, 7713, 7713, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7713, 7713, 7713, 7713, 7713, 7713, 7713, 0, 0, 0, 0, 0, 7713, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7713, 7713, 7713, 7713, 7714, 7714, 0, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7714, 7717, 7717, 0, 7717, 7717, 7717, 7717, 7717, 7717, 0, 7717, 7717, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7717, 7717, 7717, 7717, 7717, 7717, 7717, 0, 0, 0, 0, 0, 7717, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7717, 7717, 7717, 7723, 7723, 0, 7723, 7723, 7723, 7723, 7723, 7723, 0, 7723, 7723, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7723, 7723, 7723, 7723, 7723, 7723, 7723, 7723, 0, 0, 0, 0, 7723, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7723, 7723, 7723, 7723, 7725, 7725, 0, 7725, 7725, 7725, 7725, 7725, 7725, 0, 7725, 7725, 7725, 7725, 7725, 7725, 7725, 7725, 0, 0, 0, 7725, 7725, 7725, 7725, 7725, 7725, 7725, 0, 0, 0, 0, 0, 7725, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7725, 7725, 7725, 7726, 7726, 0, 7726, 7726, 7726, 7726, 7726, 7726, 7726, 7726, 7726, 7726, 7726, 7726, 7726, 7726, 7726, 7726, 7726, 7726, 7726, 7726, 7726, 7726, 7726, 7726, 7726, 0, 0, 0, 0, 0, 7726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7726, 7726, 7726, 7726, 7727, 7727, 0, 7727, 7727, 7727, 7727, 7727, 7727, 0, 7727, 7727, 7727, 7727, 7727, 7727, 7727, 7727, 0, 0, 0, 7727, 7727, 7727, 7727, 7727, 7727, 7727, 0, 0, 0, 0, 0, 7727, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7727, 7727, 7727, 7727, 7728, 7728, 0, 7728, 7728, 7728, 7728, 7728, 7728, 0, 7728, 7728, 7728, 7728, 7728, 0, 0, 0, 0, 0, 0, 7728, 7728, 7728, 7728, 7728, 7728, 7728, 0, 0, 0, 0, 0, 7728, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7728, 7728, 7728, 7728, 7729, 7729, 0, 7729, 7729, 7729, 7729, 7729, 7729, 7729, 7729, 7729, 7729, 7729, 7729, 7729, 7729, 7729, 7729, 7729, 7729, 7729, 7729, 7729, 7729, 7729, 7729, 7729, 0, 0, 0, 0, 0, 7729, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7729, 7729, 7729, 7729, 7729, 7730, 0, 7730, 0, 0, 7730, 7730, 7730, 7730, 7730, 7730, 7730, 7730, 7730, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7730, 7731, 0, 0, 0, 7731, 0, 7731, 0, 0, 7731, 7731, 7731, 7731, 7731, 7731, 7731, 7731, 7731, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7731, 7732, 0, 0, 0, 7732, 0, 7732, 0, 0, 7732, 7732, 7732, 7732, 7732, 7732, 7732, 7732, 7732, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7732, 7736, 7736, 7736, 7736, 7736, 7736, 7736, 7736, 7736, 0, 0, 0, 0, 0, 0, 0, 7736, 7736, 7736, 7736, 7736, 7736, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7736, 7736, 7736, 7736, 7736, 7736, 7739, 7739, 0, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7739, 7741, 7741, 0, 7741, 7741, 7741, 7741, 7741, 7741, 0, 7741, 7741, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7741, 7741, 7741, 7741, 7741, 7741, 7741, 0, 0, 0, 0, 0, 7741, 0, 0, 7741, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7741, 7741, 7741, 7741, 7742, 7742, 0, 7742, 7742, 7742, 7742, 7742, 7742, 0, 7742, 7742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7742, 7742, 7742, 7742, 7742, 7742, 7742, 7742, 0, 0, 0, 0, 7742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7742, 7742, 7742, 7743, 7743, 0, 7743, 7743, 7743, 7743, 7743, 7743, 0, 7743, 7743, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7743, 7743, 7743, 7743, 7743, 7743, 7743, 0, 0, 0, 0, 0, 7743, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7743, 0, 0, 0, 0, 7743, 7743, 7743, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7743, 7744, 7744, 0, 7744, 7744, 7744, 7744, 7744, 7744, 0, 7744, 7744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7744, 7744, 7744, 7744, 7744, 7744, 7744, 0, 0, 0, 0, 0, 7744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7744, 7744, 7744, 7744, 7748, 7748, 0, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7748, 7751, 7751, 7751, 7751, 7751, 7751, 7751, 7751, 7751, 7751, 0, 0, 0, 0, 0, 0, 7751, 7751, 7751, 7751, 7751, 7751, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7751, 7751, 7751, 7751, 7751, 7751, 7753, 0, 0, 0, 0, 0, 0, 0, 0, 7753, 7753, 7753, 7753, 7753, 7753, 7753, 7753, 7753, 0, 0, 0, 0, 0, 0, 0, 7753, 7753, 7753, 7753, 7753, 7753, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7753, 7753, 7753, 7753, 7753, 7753, 7756, 7756, 0, 7756, 7756, 7756, 7756, 7756, 7756, 0, 7756, 7756, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7756, 7756, 7756, 7756, 7756, 7756, 7756, 7756, 0, 0, 0, 0, 7756, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7756, 7756, 7756, 7759, 7759, 7759, 7759, 7759, 7759, 7759, 7759, 7759, 7759, 0, 0, 0, 0, 0, 0, 7759, 7759, 7759, 7759, 7759, 7759, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7759, 7759, 7759, 7759, 7759, 7759, 7763, 7763, 7763, 7763, 7763, 7763, 7763, 7763, 7763, 7763, 0, 0, 0, 0, 0, 0, 7763, 7763, 7763, 7763, 7763, 7763, 0, 0, 0, 0, 0, 7763, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7763, 7763, 7763, 7763, 7763, 7763, 7766, 7766, 0, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7767, 7767, 0, 7767, 7767, 7767, 7767, 7767, 7767, 0, 7767, 7767, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7767, 7767, 7767, 7767, 7767, 7767, 7767, 0, 0, 0, 0, 0, 7767, 0, 0, 0, 0, 0, 7767, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7767, 7767, 7767, 7767, 7768, 7768, 0, 7768, 7768, 7768, 7768, 7768, 7768, 0, 7768, 7768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7768, 7768, 7768, 7768, 7768, 7768, 7768, 0, 0, 0, 0, 0, 7768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7768, 7768, 7768, 7769, 7769, 0, 7769, 7769, 7769, 7769, 7769, 7769, 0, 7769, 7769, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7769, 7769, 7769, 7769, 7769, 7769, 7769, 7769, 0, 0, 0, 0, 7769, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7769, 7769, 7769, 7770, 7770, 0, 7770, 7770, 7770, 7770, 7770, 7770, 0, 7770, 7770, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7770, 7770, 7770, 7770, 7770, 7770, 7770, 0, 0, 0, 0, 0, 7770, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7770, 7770, 7770, 7771, 7771, 0, 7771, 7771, 7771, 7771, 7771, 7771, 0, 7771, 7771, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7771, 7771, 7771, 7771, 7771, 7771, 7771, 7771, 0, 0, 0, 0, 7771, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7771, 7771, 7771, 7773, 7773, 0, 7773, 7773, 7773, 7773, 7773, 7773, 0, 7773, 7773, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7773, 7773, 7773, 7773, 7773, 7773, 7773, 0, 0, 0, 0, 0, 7773, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7773, 7773, 7773, 7774, 7774, 0, 7774, 7774, 7774, 7774, 7774, 7774, 0, 7774, 7774, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7774, 7774, 7774, 7774, 7774, 7774, 7774, 7774, 0, 0, 0, 0, 7774, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7774, 7774, 7774, 7775, 7775, 0, 7775, 7775, 7775, 7775, 7775, 7775, 0, 7775, 7775, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7775, 7775, 7775, 7775, 7775, 7775, 7775, 0, 0, 0, 0, 0, 7775, 0, 7775, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7775, 7775, 7775, 0, 0, 0, 0, 0, 0, 0, 0, 7775, 7776, 0, 0, 0, 0, 0, 0, 7776, 0, 7776, 7776, 7776, 7776, 7776, 7776, 7776, 7776, 7776, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7776, 7777, 7777, 0, 7777, 7777, 7777, 7777, 7777, 7777, 0, 7777, 7777, 7777, 7777, 7777, 7777, 7777, 7777, 7777, 7777, 7777, 7777, 7777, 7777, 7777, 7777, 7777, 7777, 0, 0, 0, 0, 0, 7777, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7777, 7777, 7777, 7777, 7781, 7781, 0, 7781, 7781, 7781, 7781, 7781, 7781, 0, 7781, 7781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7781, 7781, 7781, 7781, 7781, 7781, 7781, 0, 0, 0, 0, 0, 7781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7781, 7781, 7781, 7781, 7782, 7782, 0, 7782, 7782, 7782, 7782, 7782, 7782, 0, 7782, 7782, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7782, 7782, 7782, 7782, 7782, 7782, 7782, 0, 0, 0, 0, 0, 7782, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7782, 7782, 7782, 7782, 7785, 7785, 7785, 7785, 7785, 7785, 7785, 7785, 7785, 7785, 0, 0, 0, 0, 0, 0, 7785, 7785, 7785, 7785, 7785, 7785, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7785, 7785, 7785, 7785, 7785, 7785, 7787, 7787, 7787, 7787, 7787, 7787, 7787, 7787, 7787, 7787, 0, 0, 0, 0, 0, 0, 7787, 7787, 7787, 7787, 7787, 7787, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7787, 7787, 7787, 7787, 7787, 7787, 7790, 0, 0, 0, 0, 0, 0, 0, 0, 7790, 7790, 7790, 7790, 7790, 7790, 7790, 7790, 7790, 7790, 0, 0, 0, 0, 0, 0, 7790, 7790, 7790, 7790, 7790, 7790, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7790, 7790, 7790, 7790, 7790, 7790, 7795, 7795, 0, 7795, 7795, 7795, 7795, 7795, 7795, 0, 7795, 7795, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7795, 7795, 7795, 7795, 7795, 7795, 7795, 0, 0, 0, 0, 0, 7795, 0, 0, 7795, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7795, 7795, 7795, 7797, 7797, 7797, 7797, 7797, 7797, 7797, 7797, 7797, 7797, 0, 0, 0, 0, 0, 0, 7797, 7797, 7797, 7797, 7797, 7797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7797, 7797, 7797, 7797, 7797, 7797, 7799, 7799, 7799, 7799, 7799, 7799, 7799, 7799, 7799, 0, 0, 0, 0, 0, 0, 0, 7799, 7799, 7799, 7799, 7799, 7799, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7799, 7799, 7799, 7799, 7799, 7799, 7805, 7805, 0, 7805, 7805, 7805, 7805, 7805, 7805, 7805, 7805, 7805, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7805, 7805, 7805, 7805, 7805, 7805, 7805, 0, 0, 0, 0, 0, 7805, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7805, 7805, 7805, 7805, 7806, 7806, 0, 7806, 7806, 7806, 7806, 7806, 7806, 7806, 7806, 7806, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7806, 7806, 7806, 7806, 7806, 7806, 7806, 7806, 0, 0, 0, 0, 7806, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7806, 7806, 7806, 7806, 7807, 7807, 0, 7807, 7807, 7807, 7807, 7807, 7807, 7807, 7807, 7807, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7807, 7807, 7807, 7807, 7807, 7807, 7807, 0, 0, 0, 0, 0, 7807, 0, 0, 0, 0, 0, 7807, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7807, 7807, 7807, 7807, 7809, 7809, 0, 7809, 7809, 7809, 7809, 7809, 7809, 0, 7809, 7809, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7809, 7809, 7809, 7809, 7809, 7809, 7809, 0, 0, 0, 0, 0, 7809, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7809, 7809, 7809, 7810, 7810, 0, 7810, 7810, 7810, 7810, 7810, 7810, 0, 7810, 7810, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7810, 7810, 7810, 7810, 7810, 7810, 7810, 0, 0, 0, 0, 0, 7810, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7810, 0, 0, 0, 0, 7810, 7810, 7810, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7810, 7811, 7811, 0, 7811, 7811, 7811, 7811, 7811, 7811, 0, 7811, 7811, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7811, 7811, 7811, 7811, 7811, 7811, 7811, 7811, 0, 0, 0, 0, 7811, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7811, 7811, 7811, 7812, 0, 0, 0, 0, 0, 0, 0, 0, 7812, 7812, 7812, 7812, 7812, 7812, 7812, 7812, 7812, 0, 0, 0, 0, 0, 0, 0, 7812, 7812, 7812, 7812, 7812, 7812, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7812, 7812, 7812, 7812, 7812, 7812, 7815, 7815, 0, 7815, 7815, 7815, 7815, 7815, 7815, 0, 7815, 7815, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7815, 7815, 7815, 7815, 7815, 7815, 7815, 0, 0, 0, 0, 0, 7815, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7815, 7815, 7815, 7816, 7816, 0, 7816, 7816, 7816, 7816, 7816, 7816, 0, 7816, 7816, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7816, 7816, 7816, 7816, 7816, 7816, 7816, 7816, 0, 0, 0, 0, 7816, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7816, 7816, 7816, 7818, 7818, 0, 7818, 7818, 7818, 7818, 7818, 7818, 0, 7818, 7818, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7818, 7818, 7818, 7818, 7818, 7818, 7818, 0, 0, 0, 0, 0, 7818, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7818, 7818, 7818, 7819, 7819, 0, 7819, 7819, 7819, 7819, 7819, 7819, 0, 7819, 7819, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7819, 7819, 7819, 7819, 7819, 7819, 7819, 7819, 0, 0, 0, 0, 7819, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7819, 7819, 7819, 7820, 7820, 0, 7820, 7820, 7820, 7820, 7820, 7820, 0, 7820, 7820, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7820, 7820, 7820, 7820, 7820, 7820, 7820, 0, 0, 0, 0, 0, 7820, 7820, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7820, 7820, 7820, 0, 0, 0, 0, 0, 0, 0, 7820, 7821, 7821, 0, 7821, 7821, 7821, 7821, 7821, 7821, 0, 7821, 7821, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7821, 7821, 7821, 7821, 7821, 7821, 7821, 0, 0, 0, 0, 0, 7821, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7821, 7821, 7821, 7822, 7822, 0, 7822, 7822, 7822, 7822, 7822, 7822, 0, 7822, 7822, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7822, 7822, 7822, 7822, 7822, 7822, 7822, 0, 0, 0, 0, 0, 7822, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7822, 7822, 7822, 7823, 7823, 0, 7823, 7823, 7823, 7823, 7823, 7823, 0, 7823, 7823, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7823, 7823, 7823, 7823, 7823, 7823, 7823, 0, 0, 0, 0, 0, 7823, 7823, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7823, 7823, 7823, 0, 0, 0, 0, 0, 0, 0, 7823, 7828, 7828, 0, 7828, 7828, 7828, 7828, 7828, 7828, 0, 7828, 7828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7828, 7828, 7828, 7828, 7828, 7828, 7828, 0, 0, 0, 0, 0, 7828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7828, 7828, 7828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7828, 7845, 7845, 0, 7845, 7845, 7845, 7845, 7845, 7845, 0, 7845, 7845, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7845, 7845, 7845, 7845, 7845, 7845, 7845, 0, 0, 0, 0, 0, 7845, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7845, 7845, 7845, 7859, 7859, 0, 7859, 7859, 7859, 7859, 7859, 7859, 0, 7859, 7859, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7859, 7859, 7859, 7859, 7859, 7859, 7859, 0, 0, 0, 0, 0, 7859, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7859, 7859, 7859, 7860, 7860, 0, 7860, 7860, 7860, 7860, 7860, 7860, 0, 7860, 7860, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7860, 7860, 7860, 7860, 7860, 7860, 7860, 7860, 0, 0, 0, 0, 7860, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7860, 7860, 7860, 7864, 7864, 0, 7864, 7864, 7864, 7864, 7864, 7864, 0, 7864, 7864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7864, 7864, 7864, 7864, 7864, 7864, 7864, 0, 0, 0, 0, 0, 7864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7864, 7864, 7864, 7865, 7865, 0, 7865, 7865, 7865, 7865, 7865, 7865, 0, 7865, 7865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7865, 7865, 7865, 7865, 7865, 7865, 7865, 7865, 0, 0, 0, 0, 7865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7865, 7865, 7865, 7869, 7869, 0, 7869, 7869, 7869, 7869, 7869, 7869, 0, 7869, 7869, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7869, 7869, 7869, 7869, 7869, 7869, 7869, 0, 0, 0, 0, 0, 7869, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7869, 7869, 7869, 7870, 7870, 0, 7870, 7870, 7870, 7870, 7870, 7870, 0, 7870, 7870, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7870, 7870, 7870, 7870, 7870, 7870, 7870, 7870, 0, 0, 0, 0, 7870, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7870, 7870, 7870, 7874, 7874, 0, 7874, 7874, 7874, 7874, 7874, 7874, 0, 7874, 7874, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7874, 7874, 7874, 7874, 7874, 7874, 7874, 0, 0, 0, 0, 0, 7874, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7874, 7874, 7874, 7875, 7875, 0, 7875, 7875, 7875, 7875, 7875, 7875, 0, 7875, 7875, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7875, 7875, 7875, 7875, 7875, 7875, 7875, 7875, 0, 0, 0, 0, 7875, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7875, 7875, 7875, 7878, 7878, 0, 7878, 7878, 7878, 7878, 7878, 7878, 0, 7878, 7878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7878, 7878, 7878, 7878, 7878, 7878, 7878, 0, 0, 0, 0, 0, 7878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7878, 7878, 7878, 7879, 7879, 0, 7879, 7879, 7879, 7879, 7879, 7879, 0, 7879, 7879, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7879, 7879, 7879, 7879, 7879, 7879, 7879, 7879, 0, 0, 0, 0, 7879, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7879, 7879, 7879, 7881, 7881, 0, 7881, 7881, 7881, 7881, 7881, 7881, 0, 7881, 7881, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7881, 7881, 7881, 7881, 7881, 7881, 7881, 0, 0, 0, 0, 0, 7881, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7881, 7881, 7881, 7882, 7882, 0, 7882, 7882, 7882, 7882, 7882, 7882, 0, 7882, 7882, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7882, 7882, 7882, 7882, 7882, 7882, 7882, 7882, 0, 0, 0, 0, 7882, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7882, 7882, 7882, 7883, 7883, 0, 7883, 7883, 7883, 7883, 7883, 7883, 0, 7883, 7883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7883, 7883, 7883, 7883, 7883, 7883, 7883, 0, 0, 0, 0, 0, 7883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7883, 0, 0, 7883, 7883, 7883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7883, 7884, 7884, 0, 7884, 7884, 7884, 7884, 7884, 7884, 0, 7884, 7884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7884, 7884, 7884, 7884, 7884, 7884, 7884, 0, 0, 0, 0, 0, 7884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7884, 7884, 7884, 7885, 7885, 0, 7885, 7885, 7885, 7885, 7885, 7885, 0, 7885, 7885, 7885, 7885, 7885, 7885, 7885, 7885, 7885, 7885, 7885, 7885, 7885, 7885, 7885, 7885, 7885, 7885, 0, 0, 0, 0, 0, 7885, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7885, 7885, 7885, 7887, 7887, 0, 7887, 7887, 7887, 7887, 7887, 7887, 0, 7887, 7887, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7887, 7887, 7887, 7887, 7887, 7887, 7887, 0, 0, 0, 0, 0, 7887, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7887, 7887, 7887, 7888, 7888, 0, 7888, 7888, 7888, 7888, 7888, 7888, 0, 7888, 7888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7888, 7888, 7888, 7888, 7888, 7888, 7888, 7888, 0, 0, 0, 0, 7888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7888, 7888, 7888, 7889, 7889, 0, 7889, 7889, 7889, 7889, 7889, 7889, 0, 7889, 7889, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7889, 7889, 7889, 7889, 7889, 7889, 7889, 0, 0, 0, 0, 0, 7889, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7889, 0, 0, 7889, 7889, 7889, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7889, 7900, 7900, 0, 7900, 7900, 7900, 7900, 7900, 7900, 0, 7900, 7900, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7900, 7900, 7900, 7900, 7900, 7900, 7900, 0, 0, 0, 0, 0, 7900, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7900, 7900, 7900, 7901, 7901, 0, 7901, 7901, 7901, 7901, 7901, 7901, 0, 7901, 7901, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7901, 7901, 7901, 7901, 7901, 7901, 7901, 7901, 0, 0, 0, 0, 7901, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7901, 7901, 7901, 7915, 7915, 0, 7915, 7915, 7915, 7915, 7915, 7915, 0, 7915, 7915, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7915, 7915, 7915, 7915, 7915, 7915, 7915, 0, 0, 0, 0, 0, 7915, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7915, 7915, 7915, 7916, 7916, 0, 7916, 7916, 7916, 7916, 7916, 7916, 0, 7916, 7916, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7916, 7916, 7916, 7916, 7916, 7916, 7916, 7916, 0, 0, 0, 0, 7916, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7916, 7916, 7916, 7942, 7942, 0, 7942, 7942, 7942, 7942, 7942, 7942, 0, 7942, 7942, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7942, 7942, 7942, 7942, 7942, 7942, 7942, 0, 0, 0, 0, 0, 7942, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7942, 7942, 7942, 0, 0, 0, 7942, 7943, 7943, 0, 7943, 7943, 7943, 7943, 7943, 7943, 0, 7943, 7943, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7943, 7943, 7943, 7943, 7943, 7943, 7943, 7943, 0, 0, 0, 0, 7943, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7943, 7943, 7943, 0, 0, 0, 7943, 7955, 7955, 0, 7955, 7955, 7955, 7955, 7955, 7955, 0, 7955, 7955, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7955, 7955, 7955, 7955, 7955, 7955, 7955, 0, 0, 0, 0, 0, 7955, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7955, 7955, 7955, 0, 0, 0, 7955, 7956, 7956, 0, 7956, 7956, 7956, 7956, 7956, 7956, 0, 7956, 7956, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7956, 7956, 7956, 7956, 7956, 7956, 7956, 7956, 0, 0, 0, 0, 7956, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7956, 7956, 7956, 0, 0, 0, 7956, 7957, 7957, 0, 7957, 7957, 7957, 7957, 7957, 7957, 0, 7957, 7957, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7957, 7957, 7957, 7957, 7957, 7957, 7957, 0, 0, 0, 0, 0, 7957, 0, 7957, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7957, 7957, 7957, 0, 0, 0, 7957, 0, 0, 0, 0, 7957, 7961, 7961, 0, 7961, 7961, 7961, 7961, 7961, 7961, 0, 7961, 7961, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7961, 7961, 7961, 7961, 7961, 7961, 7961, 0, 0, 0, 0, 0, 7961, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7961, 7961, 7961, 0, 0, 0, 7961, 7962, 7962, 0, 7962, 7962, 7962, 7962, 7962, 7962, 0, 7962, 7962, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7962, 7962, 7962, 7962, 7962, 7962, 7962, 0, 0, 0, 0, 0, 7962, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7962, 7962, 7962, 0, 0, 0, 7962, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7962, 7963, 7963, 0, 7963, 7963, 7963, 7963, 7963, 7963, 0, 7963, 7963, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7963, 7963, 7963, 7963, 7963, 7963, 7963, 0, 0, 0, 0, 0, 7963, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7963, 7963, 7963, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7963, 7964, 7964, 0, 7964, 7964, 7964, 7964, 7964, 7964, 0, 7964, 7964, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7964, 7964, 7964, 7964, 7964, 7964, 7964, 0, 0, 0, 0, 0, 7964, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7964, 7964, 7964, 0, 0, 0, 0, 7964, 7965, 7965, 7965, 7965, 7965, 7965, 7965, 7965, 7965, 0, 7965, 7965, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7965, 7965, 7965, 7965, 7965, 7965, 7965, 0, 0, 0, 0, 0, 7965, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7965, 7965, 7965, 7966, 7966, 7966, 7966, 7966, 7966, 7966, 7966, 7966, 0, 7966, 7966, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7966, 7966, 7966, 7966, 7966, 7966, 7966, 7966, 0, 0, 0, 0, 7966, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7966, 7966, 7966, 7970, 7970, 7970, 7970, 7970, 7970, 7970, 7970, 7970, 0, 7970, 7970, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7970, 7970, 7970, 7970, 7970, 7970, 7970, 0, 0, 0, 0, 0, 7970, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7970, 7970, 7970, 7971, 7971, 7971, 7971, 7971, 7971, 7971, 7971, 7971, 0, 7971, 7971, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7971, 7971, 7971, 7971, 7971, 7971, 7971, 7971, 0, 0, 0, 0, 7971, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7971, 7971, 7971, 7974, 7974, 7974, 7974, 7974, 7974, 7974, 7974, 7974, 0, 7974, 7974, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7974, 7974, 7974, 7974, 7974, 7974, 7974, 0, 0, 0, 0, 0, 7974, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7974, 7974, 7974, 7975, 7975, 7975, 7975, 7975, 7975, 7975, 7975, 7975, 0, 7975, 7975, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7975, 7975, 7975, 7975, 7975, 7975, 7975, 7975, 0, 0, 0, 0, 7975, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7975, 7975, 7975, 7978, 7978, 7978, 7978, 7978, 7978, 7978, 7978, 7978, 0, 7978, 7978, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7978, 7978, 7978, 7978, 7978, 7978, 7978, 0, 0, 0, 0, 0, 7978, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7978, 7978, 7978, 7979, 7979, 7979, 7979, 7979, 7979, 7979, 7979, 7979, 0, 7979, 7979, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7979, 7979, 7979, 7979, 7979, 7979, 7979, 7979, 0, 0, 0, 0, 7979, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7979, 7979, 7979, 7981, 7981, 7981, 7981, 7981, 7981, 7981, 7981, 7981, 0, 7981, 7981, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7981, 7981, 7981, 7981, 7981, 7981, 7981, 0, 0, 0, 0, 0, 7981, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7981, 7981, 7981, 7982, 7982, 7982, 7982, 7982, 7982, 7982, 7982, 7982, 0, 7982, 7982, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7982, 7982, 7982, 7982, 7982, 7982, 7982, 7982, 0, 0, 0, 0, 7982, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7982, 7982, 7982, 7983, 7983, 7983, 7983, 7983, 7983, 7983, 7983, 7983, 0, 7983, 7983, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7983, 7983, 7983, 7983, 7983, 7983, 7983, 0, 0, 0, 0, 0, 7983, 7983, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7983, 7983, 7983, 0, 0, 0, 0, 0, 0, 0, 7983, 7984, 7984, 0, 7984, 7984, 7984, 7984, 7984, 7984, 0, 7984, 7984, 0, 7984, 7984, 7984, 7984, 7984, 7984, 7984, 7984, 7984, 7984, 7984, 7984, 7984, 7984, 7984, 0, 0, 0, 0, 0, 7984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7984, 7984, 7984, 7985, 7985, 7985, 7985, 7985, 7985, 7985, 7985, 7985, 0, 7985, 7985, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7985, 7985, 7985, 7985, 7985, 7985, 7985, 0, 0, 0, 0, 0, 7985, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7985, 7985, 7985, 7986, 7986, 7986, 7986, 7986, 7986, 7986, 7986, 7986, 0, 7986, 7986, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7986, 7986, 7986, 7986, 7986, 7986, 7986, 0, 0, 0, 0, 0, 7986, 7986, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7986, 7986, 7986, 0, 0, 0, 0, 0, 0, 0, 7986, 7988, 7988, 7988, 7988, 7988, 7988, 7988, 7988, 7988, 0, 7988, 7988, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7988, 7988, 7988, 7988, 7988, 7988, 7988, 0, 0, 0, 0, 0, 7988, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7988, 7988, 7988, 7989, 7989, 7989, 7989, 7989, 7989, 7989, 7989, 7989, 0, 7989, 7989, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7989, 7989, 7989, 7989, 7989, 7989, 7989, 7989, 0, 0, 0, 0, 7989, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7989, 7989, 7989, 7993, 7993, 7993, 7993, 7993, 7993, 7993, 7993, 7993, 0, 7993, 7993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7993, 7993, 7993, 7993, 7993, 7993, 7993, 0, 0, 0, 0, 0, 7993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7993, 7993, 7993, 7994, 7994, 7994, 7994, 7994, 7994, 7994, 7994, 7994, 0, 7994, 7994, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7994, 7994, 7994, 7994, 7994, 7994, 7994, 7994, 0, 0, 0, 0, 7994, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7994, 7994, 7994, 7998, 7998, 7998, 7998, 7998, 7998, 7998, 7998, 7998, 0, 7998, 7998, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7998, 7998, 7998, 7998, 7998, 7998, 7998, 0, 0, 0, 0, 0, 7998, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7998, 7998, 7998, 7999, 7999, 7999, 7999, 7999, 7999, 7999, 7999, 7999, 0, 7999, 7999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7999, 7999, 7999, 7999, 7999, 7999, 7999, 7999, 0, 0, 0, 0, 7999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7999, 7999, 7999, 8002, 8002, 8002, 8002, 8002, 8002, 8002, 8002, 8002, 0, 8002, 8002, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8002, 8002, 8002, 8002, 8002, 8002, 8002, 0, 0, 0, 0, 0, 8002, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8002, 8002, 8002, 8003, 8003, 8003, 8003, 8003, 8003, 8003, 8003, 8003, 0, 8003, 8003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8003, 8003, 8003, 8003, 8003, 8003, 8003, 8003, 0, 0, 0, 0, 8003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8003, 8003, 8003, 8005, 8005, 8005, 8005, 8005, 8005, 8005, 8005, 8005, 0, 8005, 8005, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8005, 8005, 8005, 8005, 8005, 8005, 8005, 0, 0, 0, 0, 0, 8005, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8005, 0, 0, 0, 0, 0, 8005, 8005, 8005, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8005, 8006, 8006, 8006, 8006, 8006, 8006, 8006, 8006, 8006, 0, 8006, 8006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8006, 8006, 8006, 8006, 8006, 8006, 8006, 0, 0, 0, 0, 0, 8006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8006, 8006, 8006, 8007, 8007, 8007, 8007, 8007, 8007, 8007, 8007, 8007, 0, 8007, 8007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8007, 8007, 8007, 8007, 8007, 8007, 8007, 8007, 0, 0, 0, 0, 8007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8007, 8007, 8007, 8008, 8008, 8008, 8008, 8008, 8008, 8008, 8008, 8008, 0, 8008, 8008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8008, 8008, 8008, 8008, 8008, 8008, 8008, 0, 0, 0, 0, 0, 8008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8008, 8008, 8008, 8009, 8009, 8009, 8009, 8009, 8009, 8009, 8009, 8009, 0, 8009, 8009, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8009, 8009, 8009, 8009, 8009, 8009, 8009, 8009, 0, 0, 0, 0, 8009, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8009, 8009, 8009, 8012, 8012, 8012, 8012, 8012, 8012, 8012, 8012, 8012, 0, 8012, 8012, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8012, 8012, 8012, 8012, 8012, 8012, 8012, 0, 0, 0, 0, 0, 8012, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8012, 8012, 8012, 8013, 8013, 8013, 8013, 8013, 8013, 8013, 8013, 8013, 0, 8013, 8013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8013, 8013, 8013, 8013, 8013, 8013, 8013, 8013, 0, 0, 0, 0, 8013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8013, 8013, 8013, 8016, 8016, 8016, 8016, 8016, 8016, 8016, 8016, 8016, 0, 8016, 8016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8016, 8016, 8016, 8016, 8016, 8016, 8016, 0, 0, 0, 0, 0, 8016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8016, 8016, 8016, 8017, 8017, 8017, 8017, 8017, 8017, 8017, 8017, 8017, 0, 8017, 8017, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8017, 8017, 8017, 8017, 8017, 8017, 8017, 8017, 0, 0, 0, 0, 8017, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8017, 8017, 8017, 8019, 8019, 8019, 8019, 8019, 8019, 8019, 8019, 8019, 0, 8019, 8019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8019, 8019, 8019, 8019, 8019, 8019, 8019, 0, 0, 0, 0, 0, 8019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8019, 0, 0, 0, 0, 0, 8019, 8019, 8019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8019, 8020, 8020, 8020, 8020, 8020, 8020, 8020, 8020, 8020, 0, 8020, 8020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8020, 8020, 8020, 8020, 8020, 8020, 8020, 0, 0, 0, 0, 0, 8020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8020, 8020, 8020, 8021, 8021, 8021, 8021, 8021, 8021, 8021, 8021, 8021, 0, 8021, 8021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8021, 8021, 8021, 8021, 8021, 8021, 8021, 8021, 0, 0, 0, 0, 8021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8021, 8021, 8021, 8029, 8029, 0, 8029, 8029, 8029, 8029, 8029, 8029, 0, 8029, 8029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8029, 8029, 8029, 8029, 8029, 8029, 8029, 0, 0, 0, 0, 0, 8029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8029, 8029, 8029, 8030, 8030, 0, 8030, 8030, 8030, 8030, 8030, 8030, 0, 8030, 8030, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8030, 8030, 8030, 8030, 8030, 8030, 8030, 0, 0, 0, 0, 0, 8030, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8030, 8030, 8030, 0, 0, 0, 0, 0, 8030, 8032, 8032, 0, 8032, 8032, 8032, 8032, 8032, 8032, 0, 8032, 8032, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8032, 8032, 8032, 8032, 8032, 8032, 8032, 0, 0, 0, 0, 0, 8032, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8032, 8032, 8032, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8032, 8034, 8034, 0, 8034, 8034, 8034, 8034, 0, 8034, 8034, 8034, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 0, 0, 0, 0, 0, 8034, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8034, 8034, 8034, 8034, 8035, 8035, 0, 8035, 8035, 8035, 8035, 0, 8035, 8035, 8035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8035, 8035, 8035, 8035, 8035, 8035, 8035, 8035, 0, 0, 0, 0, 8035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8035, 8035, 8035, 8035, 8041, 0, 0, 0, 0, 0, 0, 0, 0, 8041, 8041, 8041, 8041, 8041, 8041, 8041, 8041, 8041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8041, 8048, 8048, 0, 8048, 8048, 8048, 8048, 8048, 8048, 0, 8048, 8048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8048, 8048, 8048, 8048, 8048, 8048, 8048, 0, 0, 0, 0, 0, 8048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8048, 8048, 8048, 8049, 8049, 0, 8049, 8049, 8049, 8049, 8049, 8049, 0, 8049, 8049, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8049, 8049, 8049, 8049, 8049, 8049, 8049, 8049, 0, 0, 0, 0, 8049, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8049, 8049, 8049, 8053, 8053, 0, 8053, 8053, 8053, 8053, 8053, 8053, 0, 8053, 8053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8053, 8053, 8053, 8053, 8053, 8053, 8053, 0, 0, 0, 0, 0, 8053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8053, 8053, 8053, 8054, 8054, 0, 8054, 8054, 8054, 8054, 8054, 8054, 0, 8054, 8054, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8054, 8054, 8054, 8054, 8054, 8054, 8054, 8054, 0, 0, 0, 0, 8054, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8054, 8054, 8054, 8058, 8058, 0, 8058, 8058, 8058, 8058, 8058, 8058, 0, 8058, 8058, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8058, 8058, 8058, 8058, 8058, 8058, 8058, 0, 0, 0, 0, 0, 8058, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8058, 8058, 8058, 8059, 8059, 0, 8059, 8059, 8059, 8059, 8059, 8059, 0, 8059, 8059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8059, 8059, 8059, 8059, 8059, 8059, 8059, 8059, 0, 0, 0, 0, 8059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8059, 8059, 8059, 8063, 8063, 0, 8063, 8063, 8063, 8063, 8063, 8063, 0, 8063, 8063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8063, 8063, 8063, 8063, 8063, 8063, 8063, 0, 0, 0, 0, 0, 8063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8063, 8063, 8063, 8064, 8064, 0, 8064, 8064, 8064, 8064, 8064, 8064, 0, 8064, 8064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8064, 8064, 8064, 8064, 8064, 8064, 8064, 8064, 0, 0, 0, 0, 8064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8064, 8064, 8064, 8067, 8067, 0, 8067, 8067, 8067, 8067, 8067, 8067, 0, 8067, 8067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 0, 0, 0, 0, 0, 8067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8067, 8067, 8067, 8068, 8068, 0, 8068, 8068, 8068, 8068, 8068, 8068, 0, 8068, 8068, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8068, 8068, 8068, 8068, 8068, 8068, 8068, 8068, 0, 0, 0, 0, 8068, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8068, 8068, 8068, 8070, 8070, 0, 8070, 8070, 8070, 8070, 8070, 8070, 0, 8070, 8070, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8070, 8070, 8070, 8070, 8070, 8070, 8070, 0, 0, 0, 0, 0, 8070, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8070, 8070, 8070, 8071, 8071, 0, 8071, 8071, 8071, 8071, 8071, 8071, 0, 8071, 8071, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8071, 8071, 8071, 8071, 8071, 8071, 8071, 8071, 0, 0, 0, 0, 8071, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8071, 8071, 8071, 8072, 8072, 0, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 0, 0, 0, 0, 8072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8072, 8072, 8072, 8072, 8072, 8073, 8073, 0, 8073, 8073, 8073, 8073, 8073, 8073, 0, 8073, 8073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8073, 8073, 8073, 8073, 8073, 8073, 8073, 0, 0, 0, 0, 0, 8073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8073, 8073, 8073, 8074, 8074, 0, 8074, 8074, 8074, 8074, 8074, 8074, 0, 8074, 8074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8074, 8074, 8074, 8074, 8074, 8074, 8074, 8074, 0, 0, 0, 0, 8074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8074, 8074, 8074, 8077, 8077, 0, 8077, 8077, 8077, 8077, 8077, 8077, 0, 8077, 8077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8077, 8077, 8077, 8077, 8077, 8077, 8077, 0, 0, 0, 0, 0, 8077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8077, 8077, 8077, 8078, 8078, 0, 8078, 8078, 8078, 8078, 8078, 8078, 0, 8078, 8078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8078, 8078, 8078, 8078, 8078, 8078, 8078, 8078, 0, 0, 0, 0, 8078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8078, 8078, 8078, 8080, 8080, 0, 8080, 8080, 8080, 8080, 8080, 8080, 0, 8080, 8080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8080, 8080, 8080, 8080, 8080, 8080, 8080, 0, 0, 0, 0, 0, 8080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8080, 8080, 8080, 8081, 8081, 0, 8081, 8081, 8081, 8081, 8081, 8081, 0, 8081, 8081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8081, 8081, 8081, 8081, 8081, 8081, 8081, 8081, 0, 0, 0, 0, 8081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8081, 8081, 8081, 8082, 8082, 0, 8082, 8082, 8082, 8082, 8082, 8082, 8082, 8082, 8082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8082, 8082, 8082, 8082, 8082, 8082, 8082, 8082, 0, 0, 0, 0, 8082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8082, 8082, 8082, 8082, 8082, 8093, 8093, 8093, 8093, 8093, 8093, 8093, 8093, 8093, 8093, 8093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8093, 0, 8093, 8099, 8099, 0, 8099, 8099, 8099, 8099, 8099, 8099, 0, 8099, 8099, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8099, 8099, 8099, 8099, 8099, 8099, 8099, 0, 0, 0, 0, 0, 8099, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8099, 8099, 8099, 8099, 8100, 8100, 0, 8100, 8100, 8100, 8100, 8100, 8100, 0, 8100, 8100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8100, 8100, 8100, 8100, 8100, 8100, 8100, 8100, 0, 0, 0, 0, 8100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8100, 8100, 8100, 8100, 8104, 8104, 0, 8104, 8104, 8104, 8104, 8104, 8104, 0, 8104, 8104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8104, 8104, 8104, 8104, 8104, 8104, 8104, 0, 0, 0, 0, 0, 8104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8104, 8104, 8104, 8104, 8105, 8105, 0, 8105, 8105, 8105, 8105, 8105, 8105, 0, 8105, 8105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8105, 8105, 8105, 8105, 8105, 8105, 8105, 8105, 0, 0, 0, 0, 8105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8105, 8105, 8105, 8105, 8106, 8106, 0, 8106, 8106, 8106, 8106, 8106, 8106, 0, 8106, 8106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8106, 8106, 8106, 8106, 8106, 8106, 8106, 0, 0, 0, 0, 0, 8106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8106, 8106, 8106, 8108, 8108, 0, 8108, 8108, 8108, 8108, 8108, 8108, 0, 8108, 8108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8108, 8108, 8108, 8108, 8108, 8108, 8108, 8108, 0, 0, 0, 0, 8108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8108, 8108, 8108, 8118, 8118, 8118, 8118, 8118, 8118, 8118, 8118, 8118, 8118, 0, 0, 0, 0, 0, 0, 8118, 8118, 8118, 8118, 8118, 8118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8118, 8118, 8118, 8118, 8118, 8118, 8120, 8120, 8120, 8120, 8120, 8120, 8120, 8120, 8120, 8120, 0, 0, 0, 0, 0, 0, 8120, 8120, 8120, 8120, 8120, 8120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8120, 8120, 8120, 8120, 8120, 8120, 8123, 8123, 8123, 8123, 8123, 8123, 8123, 8123, 8123, 8123, 0, 0, 0, 0, 0, 0, 8123, 8123, 8123, 8123, 8123, 8123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8123, 0, 0, 0, 8123, 8123, 8123, 8123, 8123, 8123, 8128, 8128, 8128, 8128, 8128, 8128, 8128, 8128, 8128, 8128, 0, 0, 0, 0, 0, 0, 8128, 8128, 8128, 8128, 8128, 8128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8128, 8128, 8128, 8128, 8128, 8128, 8131, 8131, 8131, 8131, 8131, 8131, 8131, 8131, 8131, 8131, 0, 0, 0, 0, 0, 0, 8131, 8131, 8131, 8131, 8131, 8131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8131, 8131, 8131, 8131, 8131, 8131, 8138, 8138, 8138, 8138, 8138, 8138, 8138, 8138, 8138, 8138, 0, 0, 0, 0, 0, 0, 8138, 8138, 8138, 8138, 8138, 8138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8138, 8138, 8138, 8138, 8138, 8138, 8141, 8141, 8141, 8141, 8141, 8141, 8141, 8141, 8141, 8141, 0, 0, 0, 0, 0, 0, 8141, 8141, 8141, 8141, 8141, 8141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8141, 8141, 8141, 8141, 8141, 8141, 8148, 8148, 8148, 8148, 8148, 8148, 8148, 8148, 8148, 0, 0, 0, 0, 0, 0, 0, 8148, 8148, 8148, 8148, 8148, 8148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8148, 8148, 8148, 8148, 8148, 8148, 8149, 8149, 8149, 8149, 8149, 8149, 8149, 8149, 8149, 8149, 0, 0, 0, 0, 0, 0, 8149, 8149, 8149, 8149, 8149, 8149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8149, 8149, 8149, 8149, 8149, 8149, 8152, 8152, 8152, 8152, 8152, 8152, 8152, 8152, 8152, 8152, 0, 0, 0, 0, 0, 0, 8152, 8152, 8152, 8152, 8152, 8152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8152, 8152, 8152, 8152, 8152, 8152, 8159, 8159, 8159, 8159, 8159, 8159, 8159, 8159, 8159, 0, 0, 0, 0, 0, 0, 0, 8159, 8159, 8159, 8159, 8159, 8159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8159, 8159, 8159, 8159, 8159, 8159, 8160, 0, 8160, 8160, 8160, 8160, 8160, 8160, 8160, 8160, 8160, 8160, 0, 0, 0, 0, 0, 0, 8160, 8160, 8160, 8160, 8160, 8160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8160, 8160, 8160, 8160, 8160, 8160, 8167, 8167, 8167, 8167, 8167, 8167, 8167, 8167, 8167, 8167, 0, 0, 0, 0, 0, 0, 8167, 8167, 8167, 8167, 8167, 8167, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8167, 8167, 8167, 8167, 8167, 8167, 8169, 8169, 8169, 8169, 8169, 8169, 8169, 8169, 8169, 0, 0, 0, 0, 0, 0, 0, 8169, 8169, 8169, 8169, 8169, 8169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8169, 8169, 8169, 8169, 8169, 8169, 8177, 8177, 8177, 8177, 8177, 8177, 8177, 8177, 8177, 8177, 0, 0, 0, 0, 0, 0, 8177, 8177, 8177, 8177, 8177, 8177, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8177, 8177, 8177, 8177, 8177, 8177, 8185, 8185, 8185, 8185, 8185, 8185, 8185, 8185, 8185, 8185, 0, 0, 0, 0, 0, 0, 8185, 8185, 8185, 8185, 8185, 8185, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8185, 8185, 8185, 8185, 8185, 8185, 8236, 0, 0, 0, 0, 0, 0, 8236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8236, 0, 8236, 0, 8236, 0, 0, 8236, 0, 0, 0, 8236, 8236, 0, 0, 8236, 0, 8236, 0, 8236, 0, 8236, 8236, 8236, 8239, 8239, 0, 0, 0, 0, 8239, 0, 0, 0, 8239, 8239, 8239, 8239, 8239, 8239, 8239, 8239, 8239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8239, 0, 0, 0, 0, 0, 0, 8239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8239, 0, 8239, 0, 8239, 0, 0, 8239, 0, 0, 0, 0, 8239, 0, 0, 8239, 0, 8239, 0, 8239, 0, 8239, 8239, 8239, 8240, 8240, 0, 0, 0, 0, 8240, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8240, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8240, 0, 0, 0, 0, 0, 0, 8240, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8240, 0, 8240, 0, 8240, 0, 0, 8240, 0, 0, 0, 0, 8240, 0, 0, 8240, 0, 8240, 0, 8240, 0, 8240, 8240, 8240, 8243, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8243, 0, 0, 0, 0, 0, 0, 8243, 0, 0, 0, 0, 0, 8243, 0, 0, 0, 0, 0, 0, 0, 8243, 0, 8243, 0, 8243, 0, 0, 8243, 0, 0, 0, 0, 8243, 0, 0, 8243, 0, 8243, 0, 8243, 0, 8243, 8243, 8243, 8244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8244, 0, 0, 0, 0, 0, 0, 8244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8244, 0, 8244, 0, 8244, 0, 0, 8244, 0, 0, 0, 0, 8244, 0, 8244, 8244, 0, 8244, 0, 8244, 0, 8244, 8244, 8244, 8245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8245, 0, 0, 8245, 0, 0, 0, 0, 0, 0, 8245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8245, 0, 8245, 0, 8245, 0, 0, 8245, 0, 0, 0, 0, 8245, 0, 0, 8245, 0, 8245, 0, 8245, 0, 8245, 8245, 8245, 8246, 8246, 0, 0, 0, 0, 8246, 0, 0, 8246, 0, 0, 0, 0, 8246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8246, 0, 8246, 0, 0, 0, 0, 8246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8246, 0, 8246, 0, 8246, 0, 0, 8246, 0, 0, 0, 0, 8246, 0, 0, 8246, 0, 8246, 0, 8246, 0, 8246, 8246, 8246, 8247, 8247, 8247, 0, 0, 0, 8247, 0, 0, 8247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8247, 0, 0, 0, 0, 0, 0, 8247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8247, 0, 8247, 0, 8247, 0, 0, 8247, 0, 0, 0, 0, 8247, 0, 0, 8247, 0, 8247, 0, 8247, 0, 8247, 8247, 8247, 8266, 8266, 0, 8266, 8266, 8266, 8266, 8266, 8266, 0, 8266, 8266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8266, 8266, 8266, 8266, 8266, 8266, 8266, 0, 0, 0, 0, 0, 8266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8266, 8266, 8266, 8267, 8267, 0, 8267, 8267, 8267, 8267, 8267, 8267, 0, 8267, 8267, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8267, 8267, 8267, 8267, 8267, 8267, 8267, 8267, 0, 0, 0, 0, 8267, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8267, 8267, 8267, 8271, 8271, 0, 8271, 8271, 8271, 8271, 8271, 8271, 0, 8271, 8271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8271, 8271, 8271, 8271, 8271, 8271, 8271, 0, 0, 0, 0, 0, 8271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8271, 8271, 8271, 8272, 8272, 0, 8272, 8272, 8272, 8272, 8272, 8272, 0, 8272, 8272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8272, 8272, 8272, 8272, 8272, 8272, 8272, 8272, 0, 0, 0, 0, 8272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8272, 8272, 8272, 8286, 8286, 0, 8286, 8286, 8286, 8286, 8286, 8286, 0, 8286, 8286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 0, 0, 0, 0, 0, 8286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8286, 8286, 8286, 8287, 8287, 0, 8287, 8287, 8287, 8287, 8287, 8287, 0, 8287, 8287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8287, 8287, 8287, 8287, 8287, 8287, 8287, 8287, 0, 0, 0, 0, 8287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8287, 8287, 8287, 8301, 8301, 0, 8301, 8301, 8301, 8301, 8301, 8301, 0, 8301, 8301, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 0, 0, 0, 0, 0, 8301, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8301, 8301, 8301, 8302, 8302, 0, 8302, 8302, 8302, 8302, 8302, 8302, 0, 8302, 8302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8302, 8302, 8302, 8302, 8302, 8302, 8302, 8302, 0, 0, 0, 0, 8302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8302, 8302, 8302, 8322, 8322, 0, 8322, 8322, 8322, 8322, 8322, 8322, 8322, 8322, 8322, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8322, 8322, 8322, 8322, 8322, 8322, 8322, 0, 0, 0, 0, 0, 8322, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8322, 8322, 8322, 8322, 8324, 8324, 0, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8324, 8325, 0, 0, 0, 0, 0, 0, 0, 0, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8329, 8329, 0, 8329, 8329, 8329, 8329, 8329, 8329, 0, 8329, 8329, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8329, 8329, 8329, 8329, 8329, 8329, 8329, 0, 0, 0, 0, 0, 8329, 0, 0, 0, 0, 0, 8329, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8329, 8329, 8329, 8329, 8330, 8330, 0, 8330, 8330, 8330, 8330, 8330, 8330, 8330, 8330, 8330, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8330, 8330, 8330, 8330, 8330, 8330, 8330, 0, 0, 0, 0, 0, 8330, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8330, 0, 0, 0, 0, 8330, 8330, 8330, 8330, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8330, 8331, 8331, 0, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 0, 0, 0, 0, 0, 8331, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8331, 8331, 8331, 8331, 8332, 8332, 0, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8333, 8333, 0, 8333, 8333, 8333, 8333, 8333, 8333, 8333, 8333, 8333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8333, 8333, 8333, 8333, 8333, 8333, 8333, 8333, 0, 0, 0, 0, 8333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8333, 8333, 8333, 8333, 8334, 8334, 0, 8334, 8334, 8334, 8334, 8334, 8334, 8334, 8334, 8334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8334, 8334, 8334, 8334, 8334, 8334, 8334, 0, 0, 0, 0, 0, 8334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8334, 8334, 8334, 8334, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 0, 0, 0, 0, 0, 0, 8335, 8335, 8335, 8335, 8335, 8335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8335, 8335, 8335, 8335, 8335, 8335, 8337, 8337, 0, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8341, 8341, 0, 8341, 8341, 8341, 8341, 8341, 8341, 8341, 8341, 8341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8341, 8341, 8341, 8341, 8341, 8341, 8341, 8341, 0, 0, 0, 0, 8341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8341, 8341, 8341, 8341, 8349, 8349, 0, 8349, 8349, 8349, 8349, 8349, 8349, 0, 8349, 8349, 8349, 8349, 8349, 8349, 8349, 8349, 8349, 8349, 8349, 8349, 8349, 8349, 8349, 8349, 8349, 8349, 0, 0, 0, 0, 0, 8349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8349, 8349, 8349, 8351, 8351, 0, 8351, 8351, 8351, 8351, 8351, 8351, 8351, 8351, 8351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8351, 8351, 8351, 8351, 8351, 8351, 8351, 0, 0, 0, 0, 0, 8351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8351, 0, 0, 0, 0, 8351, 8351, 8351, 8351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8351, 8352, 8352, 0, 8352, 8352, 8352, 8352, 8352, 8352, 0, 8352, 8352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 0, 0, 0, 0, 0, 8352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8352, 8352, 8352, 8352, 8353, 8353, 0, 8353, 8353, 8353, 8353, 8353, 8353, 0, 8353, 8353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8353, 8353, 8353, 8353, 8353, 8353, 8353, 8353, 0, 0, 0, 0, 8353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8353, 8353, 8353, 8353, 8354, 8354, 0, 8354, 8354, 8354, 8354, 8354, 8354, 0, 8354, 8354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8354, 8354, 8354, 8354, 8354, 8354, 8354, 0, 0, 0, 0, 0, 8354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8354, 8354, 8354, 8355, 8355, 8355, 8355, 8355, 8355, 8355, 8355, 8355, 8355, 0, 0, 0, 0, 0, 0, 8355, 8355, 8355, 8355, 8355, 8355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8355, 8355, 8355, 8355, 8355, 8355, 8361, 8361, 0, 8361, 8361, 8361, 8361, 8361, 8361, 0, 8361, 8361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 0, 0, 0, 0, 8361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8361, 8361, 8361, 8366, 8366, 0, 8366, 8366, 8366, 8366, 8366, 8366, 0, 8366, 8366, 8366, 8366, 8366, 8366, 8366, 8366, 8366, 8366, 8366, 8366, 8366, 8366, 8366, 8366, 8366, 8366, 0, 0, 0, 0, 0, 8366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8366, 8366, 8366, 8367, 8367, 0, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8367, 8368, 0, 0, 0, 0, 0, 0, 0, 0, 8368, 8368, 8368, 8368, 8368, 8368, 8368, 8368, 8368, 8368, 0, 0, 0, 0, 0, 0, 8368, 8368, 8368, 8368, 8368, 8368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8368, 8368, 8368, 8368, 8368, 8368, 8369, 8369, 0, 8369, 8369, 8369, 8369, 8369, 8369, 0, 8369, 8369, 8369, 8369, 8369, 8369, 8369, 8369, 8369, 8369, 8369, 8369, 8369, 8369, 8369, 8369, 8369, 8369, 0, 0, 0, 0, 0, 8369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8369, 8369, 8369, 8369, 8370, 8370, 0, 8370, 8370, 8370, 8370, 8370, 8370, 0, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 0, 0, 0, 0, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 0, 0, 0, 0, 0, 8370, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8370, 8370, 8370, 8370, 8374, 8374, 8374, 8374, 8374, 8374, 8374, 8374, 8374, 0, 0, 0, 0, 0, 0, 0, 8374, 8374, 8374, 8374, 8374, 8374, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8374, 8374, 8374, 8374, 8374, 8374, 8377, 8377, 0, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8378, 8378, 0, 8378, 8378, 8378, 8378, 8378, 8378, 0, 8378, 8378, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8378, 8378, 8378, 8378, 8378, 8378, 8378, 0, 0, 0, 0, 0, 8378, 0, 0, 0, 0, 0, 8378, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8378, 8378, 8378, 8378, 8379, 8379, 0, 8379, 8379, 8379, 8379, 8379, 8379, 0, 8379, 8379, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8379, 8379, 8379, 8379, 8379, 8379, 8379, 0, 0, 0, 0, 0, 8379, 0, 0, 8379, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8379, 8379, 8379, 8380, 8380, 0, 8380, 8380, 8380, 8380, 8380, 8380, 0, 8380, 8380, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8380, 8380, 8380, 8380, 8380, 8380, 8380, 0, 0, 0, 0, 0, 8380, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8380, 8380, 8380, 8381, 8381, 0, 8381, 8381, 8381, 8381, 8381, 8381, 0, 8381, 8381, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8381, 8381, 8381, 8381, 8381, 8381, 8381, 8381, 0, 0, 0, 0, 8381, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8381, 8381, 8381, 8382, 8382, 0, 8382, 8382, 8382, 8382, 8382, 8382, 0, 8382, 8382, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8382, 8382, 8382, 8382, 8382, 8382, 8382, 0, 0, 0, 0, 0, 8382, 0, 8382, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8382, 8382, 8382, 0, 0, 0, 0, 0, 0, 0, 0, 8382, 8383, 0, 0, 0, 0, 0, 0, 8383, 0, 8383, 8383, 8383, 8383, 8383, 8383, 8383, 8383, 8383, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8383, 8384, 8384, 0, 8384, 8384, 8384, 8384, 8384, 8384, 0, 8384, 8384, 8384, 8384, 8384, 8384, 8384, 8384, 8384, 8384, 8384, 8384, 8384, 8384, 8384, 8384, 8384, 8384, 0, 0, 0, 0, 0, 8384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8384, 8384, 8384, 8384, 8388, 8388, 0, 8388, 8388, 8388, 8388, 8388, 8388, 0, 8388, 8388, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8388, 8388, 8388, 8388, 8388, 8388, 8388, 0, 0, 0, 0, 0, 8388, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8388, 8388, 8388, 8388, 8389, 8389, 0, 8389, 8389, 8389, 8389, 8389, 8389, 0, 8389, 8389, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8389, 8389, 8389, 8389, 8389, 8389, 8389, 0, 0, 0, 0, 0, 8389, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8389, 8389, 8389, 8389, 8392, 8392, 8392, 8392, 8392, 8392, 8392, 8392, 8392, 8392, 0, 0, 0, 0, 0, 0, 8392, 8392, 8392, 8392, 8392, 8392, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8392, 8392, 8392, 8392, 8392, 8392, 8394, 8394, 8394, 8394, 8394, 8394, 8394, 8394, 8394, 8394, 0, 0, 0, 0, 0, 0, 8394, 8394, 8394, 8394, 8394, 8394, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8394, 8394, 8394, 8394, 8394, 8394, 8397, 0, 0, 0, 0, 0, 0, 0, 0, 8397, 8397, 8397, 8397, 8397, 8397, 8397, 8397, 8397, 8397, 0, 0, 0, 0, 0, 0, 8397, 8397, 8397, 8397, 8397, 8397, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8397, 8397, 8397, 8397, 8397, 8397, 8402, 8402, 0, 8402, 8402, 8402, 8402, 8402, 8402, 0, 8402, 8402, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8402, 8402, 8402, 8402, 8402, 8402, 8402, 0, 0, 0, 0, 0, 8402, 0, 0, 8402, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8402, 8402, 8402, 8404, 8404, 8404, 8404, 8404, 8404, 8404, 8404, 8404, 8404, 0, 0, 0, 0, 0, 0, 8404, 8404, 8404, 8404, 8404, 8404, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8404, 8404, 8404, 8404, 8404, 8404, 8406, 8406, 8406, 8406, 8406, 8406, 8406, 8406, 8406, 0, 0, 0, 0, 0, 0, 0, 8406, 8406, 8406, 8406, 8406, 8406, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8406, 8406, 8406, 8406, 8406, 8406, 8414, 8414, 0, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8415, 8415, 0, 8415, 8415, 8415, 8415, 8415, 8415, 0, 8415, 8415, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8415, 8415, 8415, 8415, 8415, 8415, 8415, 0, 0, 0, 0, 0, 8415, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8415, 8415, 8415, 8415, 8416, 8416, 0, 8416, 8416, 8416, 8416, 8416, 8416, 0, 8416, 8416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8416, 8416, 8416, 8416, 8416, 8416, 8416, 0, 0, 0, 0, 0, 8416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8416, 8416, 8416, 8417, 8417, 0, 8417, 8417, 8417, 8417, 8417, 8417, 0, 8417, 8417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8417, 8417, 8417, 8417, 8417, 8417, 8417, 0, 0, 0, 0, 0, 8417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8417, 0, 0, 0, 0, 8417, 8417, 8417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8417, 8418, 8418, 0, 8418, 8418, 8418, 8418, 8418, 8418, 0, 8418, 8418, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8418, 8418, 8418, 8418, 8418, 8418, 8418, 8418, 0, 0, 0, 0, 8418, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8418, 8418, 8418, 8421, 8421, 0, 8421, 8421, 8421, 8421, 8421, 8421, 8421, 8421, 8421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8421, 8421, 8421, 8421, 8421, 8421, 8421, 0, 0, 0, 0, 0, 8421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8421, 8421, 8421, 8421, 8422, 8422, 0, 8422, 8422, 8422, 8422, 8422, 8422, 8422, 8422, 8422, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8422, 8422, 8422, 8422, 8422, 8422, 8422, 0, 0, 0, 0, 0, 8422, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8422, 8422, 8422, 8422, 8423, 8423, 0, 8423, 8423, 8423, 8423, 8423, 8423, 8423, 8423, 8423, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8423, 8423, 8423, 8423, 8423, 8423, 8423, 0, 0, 0, 0, 0, 8423, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8423, 0, 0, 0, 0, 8423, 8423, 8423, 8423, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8423, 8424, 8424, 0, 8424, 8424, 8424, 8424, 8424, 8424, 8424, 8424, 8424, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8424, 8424, 8424, 8424, 8424, 8424, 8424, 0, 0, 0, 0, 0, 8424, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8424, 8424, 8424, 8424, 8425, 8425, 0, 8425, 8425, 8425, 8425, 8425, 8425, 8425, 8425, 8425, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8425, 8425, 8425, 8425, 8425, 8425, 8425, 8425, 0, 0, 0, 0, 8425, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8425, 8425, 8425, 8425, 8429, 8429, 0, 8429, 8429, 8429, 8429, 8429, 8429, 8429, 8429, 8429, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8429, 8429, 8429, 8429, 8429, 8429, 8429, 0, 0, 0, 0, 0, 8429, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8429, 8429, 8429, 8429, 8430, 8430, 0, 8430, 8430, 8430, 8430, 8430, 8430, 8430, 8430, 8430, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8430, 8430, 8430, 8430, 8430, 8430, 8430, 8430, 0, 0, 0, 0, 8430, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8430, 8430, 8430, 8430, 8432, 8432, 0, 8432, 8432, 8432, 8432, 8432, 8432, 8432, 8432, 8432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8432, 8432, 8432, 8432, 8432, 8432, 8432, 0, 0, 0, 0, 0, 8432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8432, 8432, 8432, 8432, 8433, 8433, 0, 8433, 8433, 8433, 8433, 8433, 8433, 8433, 8433, 8433, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8433, 8433, 8433, 8433, 8433, 8433, 8433, 8433, 0, 0, 0, 0, 8433, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8433, 8433, 8433, 8433, 8434, 8434, 0, 8434, 8434, 8434, 8434, 8434, 8434, 8434, 8434, 8434, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8434, 8434, 8434, 8434, 8434, 8434, 8434, 0, 0, 0, 0, 0, 8434, 8434, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8434, 8434, 8434, 8434, 0, 0, 0, 0, 0, 0, 8434, 8435, 8435, 0, 8435, 8435, 8435, 8435, 8435, 8435, 8435, 8435, 8435, 0, 8435, 8435, 8435, 8435, 8435, 8435, 8435, 8435, 8435, 8435, 8435, 8435, 8435, 8435, 8435, 0, 0, 0, 0, 0, 8435, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8435, 8435, 8435, 8435, 8436, 8436, 0, 8436, 8436, 8436, 8436, 8436, 8436, 8436, 8436, 8436, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8436, 8436, 8436, 8436, 8436, 8436, 8436, 0, 0, 0, 0, 0, 8436, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8436, 8436, 8436, 8436, 8437, 8437, 0, 8437, 8437, 8437, 8437, 8437, 8437, 8437, 8437, 8437, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8437, 8437, 8437, 8437, 8437, 8437, 8437, 0, 0, 0, 0, 0, 8437, 8437, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8437, 8437, 8437, 8437, 0, 0, 0, 0, 0, 0, 8437, 8438, 8438, 0, 8438, 8438, 8438, 8438, 8438, 8438, 0, 8438, 8438, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8438, 8438, 8438, 8438, 8438, 8438, 8438, 0, 0, 0, 0, 0, 8438, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8438, 8438, 8438, 8438, 8442, 8442, 8442, 8442, 8442, 8442, 8442, 8442, 8442, 8442, 0, 0, 0, 0, 0, 0, 8442, 8442, 8442, 8442, 8442, 8442, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8442, 8442, 8442, 8442, 8442, 8442, 8445, 8445, 8445, 8445, 8445, 8445, 8445, 8445, 8445, 8445, 0, 0, 0, 0, 0, 0, 8445, 8445, 8445, 8445, 8445, 8445, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8445, 8445, 8445, 8445, 8445, 8445, 8447, 0, 0, 0, 0, 0, 0, 0, 0, 8447, 8447, 8447, 8447, 8447, 8447, 8447, 8447, 8447, 0, 0, 0, 0, 0, 0, 0, 8447, 8447, 8447, 8447, 8447, 8447, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8447, 8447, 8447, 8447, 8447, 8447, 8451, 8451, 8451, 8451, 8451, 8451, 8451, 8451, 8451, 8451, 0, 0, 0, 0, 0, 0, 8451, 8451, 8451, 8451, 8451, 8451, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8451, 8451, 8451, 8451, 8451, 8451, 8453, 8453, 8453, 8453, 8453, 8453, 8453, 8453, 8453, 0, 0, 0, 0, 0, 0, 0, 8453, 8453, 8453, 8453, 8453, 8453, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8453, 8453, 8453, 8453, 8453, 8453, 8459, 8459, 0, 8459, 8459, 8459, 8459, 8459, 8459, 0, 8459, 8459, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8459, 8459, 8459, 8459, 8459, 8459, 8459, 0, 0, 0, 0, 0, 8459, 0, 0, 0, 0, 0, 8459, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8459, 8459, 8459, 8460, 8460, 8460, 8460, 8460, 8460, 8460, 8460, 8460, 8460, 0, 0, 0, 0, 0, 0, 8460, 8460, 8460, 8460, 8460, 8460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8460, 8460, 8460, 8460, 8460, 8460, 8463, 8463, 8463, 8463, 8463, 8463, 8463, 8463, 8463, 8463, 0, 0, 0, 0, 0, 0, 8463, 8463, 8463, 8463, 8463, 8463, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8463, 8463, 8463, 8463, 8463, 8463, 8471, 8471, 0, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8472, 8472, 0, 8472, 8472, 8472, 8472, 8472, 8472, 8472, 8472, 8472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8472, 8472, 8472, 8472, 8472, 8472, 8472, 0, 0, 0, 0, 0, 8472, 0, 0, 8472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8472, 8472, 8472, 8472, 8473, 8473, 0, 8473, 8473, 8473, 8473, 8473, 8473, 8473, 8473, 8473, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8473, 8473, 8473, 8473, 8473, 8473, 8473, 0, 0, 0, 0, 0, 8473, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8473, 8473, 8473, 8473, 8474, 8474, 0, 8474, 8474, 8474, 8474, 8474, 8474, 8474, 8474, 8474, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8474, 8474, 8474, 8474, 8474, 8474, 8474, 0, 0, 0, 0, 0, 8474, 0, 0, 0, 0, 0, 8474, 0, 0, 0, 0, 0, 8474, 0, 0, 0, 0, 8474, 8474, 8474, 8474, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8474, 8475, 8475, 0, 8475, 8475, 8475, 8475, 8475, 8475, 0, 8475, 8475, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8475, 8475, 8475, 8475, 8475, 8475, 8475, 0, 0, 0, 0, 0, 8475, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8475, 8475, 8475, 8476, 8476, 0, 8476, 8476, 8476, 8476, 8476, 8476, 0, 8476, 8476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8476, 8476, 8476, 8476, 8476, 8476, 8476, 8476, 0, 0, 0, 0, 8476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8476, 8476, 8476, 8477, 8477, 0, 8477, 8477, 8477, 8477, 8477, 8477, 0, 8477, 8477, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8477, 8477, 8477, 8477, 8477, 8477, 8477, 0, 0, 0, 0, 0, 8477, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8477, 8477, 8477, 8478, 8478, 0, 8478, 8478, 8478, 8478, 8478, 8478, 0, 8478, 8478, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8478, 8478, 8478, 8478, 8478, 8478, 8478, 8478, 0, 0, 0, 0, 8478, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8478, 8478, 8478, 8479, 8479, 0, 8479, 8479, 8479, 8479, 8479, 8479, 0, 8479, 8479, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8479, 8479, 8479, 8479, 8479, 8479, 8479, 0, 0, 0, 0, 0, 8479, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8479, 0, 0, 0, 0, 8479, 8479, 8479, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8479, 8484, 8484, 0, 8484, 8484, 8484, 8484, 8484, 8484, 0, 8484, 8484, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8484, 8484, 8484, 8484, 8484, 8484, 8484, 0, 0, 0, 0, 0, 8484, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8484, 8484, 8484, 8485, 8485, 0, 8485, 8485, 8485, 8485, 8485, 8485, 0, 8485, 8485, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8485, 8485, 8485, 8485, 8485, 8485, 8485, 8485, 0, 0, 0, 0, 8485, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8485, 8485, 8485, 8488, 8488, 0, 8488, 8488, 8488, 8488, 8488, 8488, 0, 8488, 8488, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8488, 8488, 8488, 8488, 8488, 8488, 8488, 0, 0, 0, 0, 0, 8488, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8488, 8488, 8488, 8489, 8489, 0, 8489, 8489, 8489, 8489, 8489, 8489, 0, 8489, 8489, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8489, 8489, 8489, 8489, 8489, 8489, 8489, 8489, 0, 0, 0, 0, 8489, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8489, 8489, 8489, 8491, 8491, 0, 8491, 8491, 8491, 8491, 8491, 8491, 0, 8491, 8491, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8491, 8491, 8491, 8491, 8491, 8491, 8491, 0, 0, 0, 0, 0, 8491, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8491, 8491, 8491, 8492, 8492, 0, 8492, 8492, 8492, 8492, 8492, 8492, 0, 8492, 8492, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8492, 8492, 8492, 8492, 8492, 8492, 8492, 8492, 0, 0, 0, 0, 8492, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8492, 8492, 8492, 8493, 8493, 0, 8493, 8493, 8493, 8493, 8493, 8493, 0, 8493, 8493, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8493, 8493, 8493, 8493, 8493, 8493, 8493, 0, 0, 0, 0, 0, 8493, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8493, 0, 0, 8493, 8493, 8493, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8493, 8494, 8494, 0, 8494, 8494, 8494, 8494, 8494, 8494, 0, 8494, 8494, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8494, 8494, 8494, 8494, 8494, 8494, 8494, 0, 0, 0, 0, 0, 8494, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8494, 8494, 8494, 8495, 8495, 0, 8495, 8495, 8495, 8495, 8495, 8495, 0, 8495, 8495, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8495, 8495, 8495, 8495, 8495, 8495, 8495, 8495, 0, 0, 0, 0, 8495, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8495, 8495, 8495, 8496, 8496, 0, 8496, 8496, 8496, 8496, 8496, 8496, 0, 8496, 8496, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8496, 8496, 8496, 8496, 8496, 8496, 8496, 0, 0, 0, 0, 0, 8496, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8496, 8496, 8496, 8497, 8497, 0, 8497, 8497, 8497, 8497, 8497, 8497, 0, 8497, 8497, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8497, 8497, 8497, 8497, 8497, 8497, 8497, 8497, 0, 0, 0, 0, 8497, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8497, 8497, 8497, 8498, 8498, 0, 8498, 8498, 8498, 8498, 8498, 8498, 0, 8498, 8498, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8498, 8498, 8498, 8498, 8498, 8498, 8498, 0, 0, 0, 0, 0, 8498, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8498, 0, 0, 8498, 8498, 8498, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8498, 8499, 8499, 0, 8499, 8499, 8499, 8499, 8499, 8499, 0, 8499, 8499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8499, 8499, 8499, 8499, 8499, 8499, 8499, 0, 0, 0, 0, 0, 8499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8499, 8499, 8499, 8499, 0, 0, 0, 0, 0, 0, 0, 8499, 8503, 8503, 0, 8503, 8503, 8503, 8503, 8503, 8503, 0, 8503, 8503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8503, 8503, 8503, 8503, 8503, 8503, 8503, 0, 0, 0, 0, 0, 8503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8503, 8503, 8503, 0, 0, 0, 0, 8503, 8525, 8525, 0, 8525, 8525, 8525, 8525, 8525, 8525, 0, 8525, 8525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8525, 8525, 8525, 8525, 8525, 8525, 8525, 0, 0, 0, 0, 0, 8525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8525, 8525, 8525, 8528, 0, 0, 0, 0, 0, 0, 0, 0, 8528, 8528, 8528, 8528, 8528, 8528, 8528, 8528, 8528, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8528, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8528, 8535, 8535, 0, 8535, 8535, 8535, 8535, 8535, 8535, 0, 8535, 8535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8535, 8535, 8535, 8535, 8535, 8535, 8535, 0, 0, 0, 0, 0, 8535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8535, 8535, 8535, 8536, 8536, 0, 8536, 8536, 8536, 8536, 8536, 8536, 0, 8536, 8536, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8536, 8536, 8536, 8536, 8536, 8536, 8536, 8536, 0, 0, 0, 0, 8536, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8536, 8536, 8536, 8540, 8540, 0, 8540, 8540, 8540, 8540, 8540, 8540, 0, 8540, 8540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8540, 8540, 8540, 8540, 8540, 8540, 8540, 0, 0, 0, 0, 0, 8540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8540, 8540, 8540, 8541, 8541, 0, 8541, 8541, 8541, 8541, 8541, 8541, 0, 8541, 8541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8541, 8541, 8541, 8541, 8541, 8541, 8541, 8541, 0, 0, 0, 0, 8541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8541, 8541, 8541, 8545, 8545, 0, 8545, 8545, 8545, 8545, 8545, 8545, 0, 8545, 8545, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8545, 8545, 8545, 8545, 8545, 8545, 8545, 0, 0, 0, 0, 0, 8545, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8545, 8545, 8545, 8546, 8546, 0, 8546, 8546, 8546, 8546, 8546, 8546, 0, 8546, 8546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8546, 8546, 8546, 8546, 8546, 8546, 8546, 8546, 0, 0, 0, 0, 8546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8546, 8546, 8546, 8550, 8550, 0, 8550, 8550, 8550, 8550, 8550, 8550, 0, 8550, 8550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8550, 8550, 8550, 8550, 8550, 8550, 8550, 0, 0, 0, 0, 0, 8550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8550, 8550, 8550, 8551, 8551, 0, 8551, 8551, 8551, 8551, 8551, 8551, 0, 8551, 8551, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8551, 8551, 8551, 8551, 8551, 8551, 8551, 8551, 0, 0, 0, 0, 8551, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8551, 8551, 8551, 8554, 8554, 0, 8554, 8554, 8554, 8554, 8554, 8554, 0, 8554, 8554, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8554, 8554, 8554, 8554, 8554, 8554, 8554, 0, 0, 0, 0, 0, 8554, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8554, 8554, 8554, 8555, 8555, 0, 8555, 8555, 8555, 8555, 8555, 8555, 0, 8555, 8555, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8555, 8555, 8555, 8555, 8555, 8555, 8555, 8555, 0, 0, 0, 0, 8555, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8555, 8555, 8555, 8557, 8557, 0, 8557, 8557, 8557, 8557, 8557, 8557, 0, 8557, 8557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8557, 8557, 8557, 8557, 8557, 8557, 8557, 0, 0, 0, 0, 0, 8557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8557, 8557, 8557, 8558, 8558, 0, 8558, 8558, 8558, 8558, 8558, 8558, 0, 8558, 8558, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8558, 8558, 8558, 8558, 8558, 8558, 8558, 8558, 0, 0, 0, 0, 8558, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8558, 8558, 8558, 8559, 8559, 0, 8559, 8559, 8559, 8559, 8559, 8559, 8559, 8559, 8559, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8559, 8559, 8559, 8559, 8559, 8559, 8559, 8559, 0, 0, 0, 0, 8559, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8559, 8559, 8559, 8559, 8559, 8560, 8560, 0, 8560, 8560, 8560, 8560, 8560, 8560, 0, 8560, 8560, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8560, 8560, 8560, 8560, 8560, 8560, 8560, 0, 0, 0, 0, 0, 8560, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8560, 8560, 8560, 8561, 8561, 0, 8561, 8561, 8561, 8561, 8561, 8561, 0, 8561, 8561, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8561, 8561, 8561, 8561, 8561, 8561, 8561, 8561, 0, 0, 0, 0, 8561, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8561, 8561, 8561, 8564, 8564, 0, 8564, 8564, 8564, 8564, 8564, 8564, 0, 8564, 8564, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8564, 8564, 8564, 8564, 8564, 8564, 8564, 0, 0, 0, 0, 0, 8564, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8564, 8564, 8564, 8565, 8565, 0, 8565, 8565, 8565, 8565, 8565, 8565, 0, 8565, 8565, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8565, 8565, 8565, 8565, 8565, 8565, 8565, 8565, 0, 0, 0, 0, 8565, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8565, 8565, 8565, 8567, 8567, 0, 8567, 8567, 8567, 8567, 8567, 8567, 0, 8567, 8567, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8567, 8567, 8567, 8567, 8567, 8567, 8567, 0, 0, 0, 0, 0, 8567, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8567, 8567, 8567, 8568, 8568, 0, 8568, 8568, 8568, 8568, 8568, 8568, 0, 8568, 8568, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8568, 8568, 8568, 8568, 8568, 8568, 8568, 8568, 0, 0, 0, 0, 8568, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8568, 8568, 8568, 8569, 8569, 0, 8569, 8569, 8569, 8569, 8569, 8569, 8569, 8569, 8569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8569, 8569, 8569, 8569, 8569, 8569, 8569, 8569, 0, 0, 0, 0, 8569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8569, 8569, 8569, 8569, 8569, 8580, 0, 0, 0, 0, 0, 0, 0, 8580, 8580, 8580, 8580, 8580, 8580, 8580, 8580, 8580, 8580, 8580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8580, 0, 8580, 8582, 0, 0, 0, 0, 0, 0, 0, 0, 8582, 8582, 8582, 8582, 8582, 8582, 8582, 8582, 8582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8582, 8588, 8588, 0, 8588, 8588, 8588, 8588, 8588, 8588, 0, 8588, 8588, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8588, 8588, 8588, 8588, 8588, 8588, 8588, 0, 0, 0, 0, 0, 8588, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8588, 8588, 8588, 0, 0, 0, 8588, 8589, 8589, 0, 8589, 8589, 8589, 8589, 8589, 8589, 0, 8589, 8589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8589, 8589, 8589, 8589, 8589, 8589, 8589, 0, 0, 0, 0, 0, 8589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8589, 0, 0, 0, 0, 8589, 8589, 8589, 0, 0, 0, 8589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8589, 8591, 8591, 0, 8591, 8591, 8591, 8591, 8591, 8591, 0, 8591, 8591, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8591, 8591, 8591, 8591, 8591, 8591, 8591, 8591, 0, 0, 0, 0, 8591, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8591, 8591, 8591, 0, 0, 0, 8591, 8599, 8599, 0, 8599, 8599, 8599, 8599, 8599, 8599, 0, 8599, 8599, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8599, 8599, 8599, 8599, 8599, 8599, 8599, 0, 0, 0, 0, 0, 8599, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8599, 8599, 8599, 0, 0, 0, 8599, 8600, 8600, 0, 8600, 8600, 8600, 8600, 8600, 8600, 0, 8600, 8600, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8600, 8600, 8600, 8600, 8600, 8600, 8600, 8600, 0, 0, 0, 0, 8600, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8600, 8600, 8600, 0, 0, 0, 8600, 8603, 8603, 0, 8603, 8603, 8603, 8603, 8603, 8603, 0, 8603, 8603, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8603, 8603, 8603, 8603, 8603, 8603, 8603, 0, 0, 0, 0, 0, 8603, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8603, 8603, 8603, 0, 0, 0, 8603, 8604, 8604, 0, 8604, 8604, 8604, 8604, 8604, 8604, 0, 8604, 8604, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8604, 8604, 8604, 8604, 8604, 8604, 8604, 8604, 0, 0, 0, 0, 8604, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8604, 8604, 8604, 0, 0, 0, 8604, 8605, 8605, 0, 8605, 8605, 8605, 8605, 8605, 8605, 0, 8605, 8605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8605, 8605, 8605, 8605, 8605, 8605, 8605, 0, 0, 0, 0, 0, 8605, 8605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8605, 8605, 8605, 0, 0, 0, 8605, 0, 0, 0, 8605, 8606, 8606, 0, 8606, 8606, 8606, 8606, 8606, 8606, 0, 8606, 8606, 0, 8606, 8606, 8606, 8606, 8606, 8606, 8606, 8606, 8606, 8606, 8606, 8606, 8606, 8606, 8606, 0, 0, 0, 0, 0, 8606, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8606, 8606, 8606, 0, 0, 0, 8606, 8607, 8607, 0, 8607, 8607, 8607, 8607, 8607, 8607, 0, 8607, 8607, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8607, 8607, 8607, 8607, 8607, 8607, 8607, 0, 0, 0, 0, 0, 8607, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8607, 8607, 8607, 0, 0, 0, 8607, 8609, 8609, 0, 8609, 8609, 8609, 8609, 8609, 8609, 0, 8609, 8609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8609, 8609, 8609, 8609, 8609, 8609, 8609, 0, 0, 0, 0, 0, 8609, 8609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8609, 8609, 8609, 0, 0, 0, 8609, 0, 0, 0, 8609, 8614, 8614, 0, 8614, 8614, 8614, 8614, 8614, 8614, 0, 8614, 8614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8614, 8614, 8614, 8614, 8614, 8614, 8614, 0, 0, 0, 0, 0, 8614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8614, 8614, 8614, 0, 0, 0, 8614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8614, 8615, 8615, 0, 8615, 8615, 8615, 8615, 8615, 8615, 0, 8615, 8615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8615, 8615, 8615, 8615, 8615, 8615, 8615, 0, 0, 0, 0, 0, 8615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8615, 8615, 8615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8615, 8616, 8616, 0, 8616, 8616, 8616, 8616, 8616, 8616, 0, 8616, 8616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8616, 8616, 8616, 8616, 8616, 8616, 8616, 0, 0, 0, 0, 0, 8616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8616, 8616, 8616, 8617, 8617, 8617, 8617, 8617, 8617, 8617, 8617, 8617, 0, 8617, 8617, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8617, 8617, 8617, 8617, 8617, 8617, 8617, 0, 0, 0, 0, 0, 8617, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8617, 8617, 8617, 8618, 8618, 8618, 8618, 8618, 8618, 8618, 8618, 8618, 0, 8618, 8618, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8618, 8618, 8618, 8618, 8618, 8618, 8618, 8618, 0, 0, 0, 0, 8618, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8618, 8618, 8618, 8622, 8622, 8622, 8622, 8622, 8622, 8622, 8622, 8622, 0, 8622, 8622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8622, 8622, 8622, 8622, 8622, 8622, 8622, 0, 0, 0, 0, 0, 8622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8622, 8622, 8622, 8623, 8623, 8623, 8623, 8623, 8623, 8623, 8623, 8623, 0, 8623, 8623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8623, 8623, 8623, 8623, 8623, 8623, 8623, 8623, 0, 0, 0, 0, 8623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8623, 8623, 8623, 8627, 8627, 8627, 8627, 8627, 8627, 8627, 8627, 8627, 0, 8627, 8627, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8627, 8627, 8627, 8627, 8627, 8627, 8627, 0, 0, 0, 0, 0, 8627, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8627, 8627, 8627, 8628, 8628, 8628, 8628, 8628, 8628, 8628, 8628, 8628, 0, 8628, 8628, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8628, 8628, 8628, 8628, 8628, 8628, 8628, 8628, 0, 0, 0, 0, 8628, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8628, 8628, 8628, 8632, 8632, 8632, 8632, 8632, 8632, 8632, 8632, 8632, 0, 8632, 8632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8632, 8632, 8632, 8632, 8632, 8632, 8632, 0, 0, 0, 0, 0, 8632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8632, 8632, 8632, 8633, 8633, 8633, 8633, 8633, 8633, 8633, 8633, 8633, 0, 8633, 8633, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8633, 8633, 8633, 8633, 8633, 8633, 8633, 8633, 0, 0, 0, 0, 8633, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8633, 8633, 8633, 8636, 8636, 8636, 8636, 8636, 8636, 8636, 8636, 8636, 0, 8636, 8636, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8636, 8636, 8636, 8636, 8636, 8636, 8636, 0, 0, 0, 0, 0, 8636, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8636, 8636, 8636, 8637, 8637, 8637, 8637, 8637, 8637, 8637, 8637, 8637, 0, 8637, 8637, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8637, 8637, 8637, 8637, 8637, 8637, 8637, 8637, 0, 0, 0, 0, 8637, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8637, 8637, 8637, 8639, 8639, 8639, 8639, 8639, 8639, 8639, 8639, 8639, 0, 8639, 8639, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8639, 8639, 8639, 8639, 8639, 8639, 8639, 0, 0, 0, 0, 0, 8639, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8639, 8639, 8639, 8640, 8640, 8640, 8640, 8640, 8640, 8640, 8640, 8640, 0, 8640, 8640, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8640, 8640, 8640, 8640, 8640, 8640, 8640, 8640, 0, 0, 0, 0, 8640, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8640, 8640, 8640, 8641, 8641, 8641, 8641, 8641, 8641, 8641, 8641, 8641, 0, 8641, 8641, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8641, 8641, 8641, 8641, 8641, 8641, 8641, 0, 0, 0, 0, 0, 8641, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8641, 0, 0, 8641, 8641, 8641, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8641, 8642, 8642, 8642, 8642, 8642, 8642, 8642, 8642, 8642, 0, 8642, 8642, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8642, 8642, 8642, 8642, 8642, 8642, 8642, 0, 0, 0, 0, 0, 8642, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8642, 8642, 8642, 8643, 8643, 8643, 8643, 8643, 8643, 8643, 8643, 8643, 0, 8643, 8643, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8643, 8643, 8643, 8643, 8643, 8643, 8643, 8643, 0, 0, 0, 0, 8643, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8643, 8643, 8643, 8644, 8644, 8644, 8644, 8644, 8644, 8644, 8644, 8644, 0, 8644, 8644, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8644, 8644, 8644, 8644, 8644, 8644, 8644, 0, 0, 0, 0, 0, 8644, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8644, 8644, 8644, 8645, 8645, 8645, 8645, 8645, 8645, 8645, 8645, 8645, 0, 8645, 8645, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8645, 8645, 8645, 8645, 8645, 8645, 8645, 8645, 0, 0, 0, 0, 8645, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8645, 8645, 8645, 8646, 8646, 8646, 8646, 8646, 8646, 8646, 8646, 8646, 0, 8646, 8646, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8646, 8646, 8646, 8646, 8646, 8646, 8646, 0, 0, 0, 0, 0, 8646, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8646, 0, 0, 8646, 8646, 8646, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8646, 8657, 8657, 8657, 8657, 8657, 8657, 8657, 8657, 8657, 0, 8657, 8657, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8657, 8657, 8657, 8657, 8657, 8657, 8657, 0, 0, 0, 0, 0, 8657, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8657, 8657, 8657, 8658, 8658, 8658, 8658, 8658, 8658, 8658, 8658, 8658, 0, 8658, 8658, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8658, 8658, 8658, 8658, 8658, 8658, 8658, 8658, 0, 0, 0, 0, 8658, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8658, 8658, 8658, 8672, 8672, 8672, 8672, 8672, 8672, 8672, 8672, 8672, 0, 8672, 8672, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8672, 8672, 8672, 8672, 8672, 8672, 8672, 0, 0, 0, 0, 0, 8672, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8672, 8672, 8672, 8673, 8673, 8673, 8673, 8673, 8673, 8673, 8673, 8673, 0, 8673, 8673, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8673, 8673, 8673, 8673, 8673, 8673, 8673, 8673, 0, 0, 0, 0, 8673, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8673, 8673, 8673, 8693, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8693, 8693, 8693, 8693, 8693, 8693, 8693, 8693, 8693, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8693, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8693, 8700, 8700, 0, 8700, 8700, 8700, 8700, 8700, 8700, 0, 8700, 8700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 0, 0, 0, 0, 0, 8700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8700, 8700, 8700, 0, 0, 0, 8700, 8702, 8702, 0, 8702, 8702, 8702, 8702, 8702, 8702, 0, 8702, 8702, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8702, 8702, 8702, 8702, 8702, 8702, 8702, 0, 0, 0, 0, 0, 8702, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8702, 8702, 8702, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8702, 8704, 8704, 0, 8704, 8704, 8704, 8704, 0, 8704, 8704, 8704, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8704, 8704, 8704, 8704, 8704, 8704, 8704, 0, 0, 0, 0, 0, 8704, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8704, 8704, 8704, 8704, 8705, 8705, 0, 8705, 8705, 8705, 8705, 0, 8705, 8705, 8705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8705, 8705, 8705, 8705, 8705, 8705, 8705, 8705, 0, 0, 0, 0, 8705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8705, 8705, 8705, 8705, 8707, 8707, 8707, 8707, 8707, 8707, 8707, 8707, 8707, 0, 0, 0, 0, 0, 0, 0, 8707, 8707, 8707, 8707, 8707, 8707, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8707, 8707, 8707, 8707, 8707, 8707, 8719, 8719, 0, 8719, 8719, 8719, 8719, 8719, 8719, 0, 8719, 8719, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8719, 8719, 8719, 8719, 8719, 8719, 8719, 0, 0, 0, 0, 0, 8719, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8719, 8719, 8719, 8720, 8720, 0, 8720, 8720, 8720, 8720, 8720, 8720, 0, 8720, 8720, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8720, 8720, 8720, 8720, 8720, 8720, 8720, 8720, 0, 0, 0, 0, 8720, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8720, 8720, 8720, 8724, 8724, 0, 8724, 8724, 8724, 8724, 8724, 8724, 0, 8724, 8724, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8724, 8724, 8724, 8724, 8724, 8724, 8724, 0, 0, 0, 0, 0, 8724, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8724, 8724, 8724, 8725, 8725, 0, 8725, 8725, 8725, 8725, 8725, 8725, 0, 8725, 8725, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8725, 8725, 8725, 8725, 8725, 8725, 8725, 8725, 0, 0, 0, 0, 8725, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8725, 8725, 8725, 8729, 8729, 0, 8729, 8729, 8729, 8729, 8729, 8729, 0, 8729, 8729, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8729, 8729, 8729, 8729, 8729, 8729, 8729, 0, 0, 0, 0, 0, 8729, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8729, 8729, 8729, 8730, 8730, 0, 8730, 8730, 8730, 8730, 8730, 8730, 0, 8730, 8730, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8730, 8730, 8730, 8730, 8730, 8730, 8730, 8730, 0, 0, 0, 0, 8730, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8730, 8730, 8730, 8734, 8734, 0, 8734, 8734, 8734, 8734, 8734, 8734, 0, 8734, 8734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8734, 8734, 8734, 8734, 8734, 8734, 8734, 0, 0, 0, 0, 0, 8734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8734, 8734, 8734, 8735, 8735, 0, 8735, 8735, 8735, 8735, 8735, 8735, 0, 8735, 8735, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8735, 8735, 8735, 8735, 8735, 8735, 8735, 8735, 0, 0, 0, 0, 8735, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8735, 8735, 8735, 8739, 8739, 0, 8739, 8739, 8739, 8739, 8739, 8739, 0, 8739, 8739, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8739, 8739, 8739, 8739, 8739, 8739, 8739, 0, 0, 0, 0, 0, 8739, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8739, 8739, 8739, 8740, 8740, 0, 8740, 8740, 8740, 8740, 8740, 8740, 0, 8740, 8740, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8740, 8740, 8740, 8740, 8740, 8740, 8740, 8740, 0, 0, 0, 0, 8740, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8740, 8740, 8740, 8743, 8743, 0, 8743, 8743, 8743, 8743, 8743, 8743, 0, 8743, 8743, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8743, 8743, 8743, 8743, 8743, 8743, 8743, 0, 0, 0, 0, 0, 8743, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8743, 8743, 8743, 8744, 8744, 0, 8744, 8744, 8744, 8744, 8744, 8744, 0, 8744, 8744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8744, 8744, 8744, 8744, 8744, 8744, 8744, 8744, 0, 0, 0, 0, 8744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8744, 8744, 8744, 8746, 8746, 0, 8746, 8746, 8746, 8746, 8746, 8746, 0, 8746, 8746, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8746, 8746, 8746, 8746, 8746, 8746, 8746, 0, 0, 0, 0, 0, 8746, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8746, 0, 0, 0, 0, 0, 8746, 8746, 8746, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8746, 8747, 8747, 0, 8747, 8747, 8747, 8747, 8747, 8747, 0, 8747, 8747, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8747, 8747, 8747, 8747, 8747, 8747, 8747, 0, 0, 0, 0, 0, 8747, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8747, 8747, 8747, 8748, 8748, 0, 8748, 8748, 8748, 8748, 8748, 8748, 0, 8748, 8748, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8748, 8748, 8748, 8748, 8748, 8748, 8748, 8748, 0, 0, 0, 0, 8748, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8748, 8748, 8748, 8749, 8749, 0, 8749, 8749, 8749, 8749, 8749, 8749, 0, 8749, 8749, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8749, 8749, 8749, 8749, 8749, 8749, 8749, 0, 0, 0, 0, 0, 8749, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8749, 8749, 8749, 8750, 8750, 0, 8750, 8750, 8750, 8750, 8750, 8750, 0, 8750, 8750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8750, 8750, 8750, 8750, 8750, 8750, 8750, 8750, 0, 0, 0, 0, 8750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8750, 8750, 8750, 8754, 8754, 0, 8754, 8754, 8754, 8754, 8754, 8754, 0, 8754, 8754, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8754, 8754, 8754, 8754, 8754, 8754, 8754, 0, 0, 0, 0, 0, 8754, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8754, 8754, 8754, 8755, 8755, 0, 8755, 8755, 8755, 8755, 8755, 8755, 0, 8755, 8755, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8755, 8755, 8755, 8755, 8755, 8755, 8755, 8755, 0, 0, 0, 0, 8755, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8755, 8755, 8755, 8758, 8758, 0, 8758, 8758, 8758, 8758, 8758, 8758, 0, 8758, 8758, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8758, 8758, 8758, 8758, 8758, 8758, 8758, 0, 0, 0, 0, 0, 8758, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8758, 8758, 8758, 8759, 8759, 0, 8759, 8759, 8759, 8759, 8759, 8759, 0, 8759, 8759, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8759, 8759, 8759, 8759, 8759, 8759, 8759, 8759, 0, 0, 0, 0, 8759, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8759, 8759, 8759, 8761, 8761, 0, 8761, 8761, 8761, 8761, 8761, 8761, 0, 8761, 8761, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8761, 8761, 8761, 8761, 8761, 8761, 8761, 0, 0, 0, 0, 0, 8761, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8761, 0, 0, 0, 0, 0, 8761, 8761, 8761, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8761, 8762, 8762, 0, 8762, 8762, 8762, 8762, 8762, 8762, 0, 8762, 8762, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8762, 8762, 8762, 8762, 8762, 8762, 8762, 0, 0, 0, 0, 0, 8762, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8762, 8762, 8762, 8763, 8763, 0, 8763, 8763, 8763, 8763, 8763, 8763, 0, 8763, 8763, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8763, 8763, 8763, 8763, 8763, 8763, 8763, 8763, 0, 0, 0, 0, 8763, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8763, 8763, 8763, 8768, 8768, 8768, 8768, 8768, 8768, 8768, 8768, 8768, 8768, 0, 0, 0, 0, 0, 0, 8768, 8768, 8768, 8768, 8768, 8768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8768, 8768, 8768, 8768, 8768, 8768, 8769, 8769, 8769, 8769, 8769, 8769, 8769, 8769, 8769, 8769, 0, 0, 0, 0, 0, 0, 8769, 8769, 8769, 8769, 8769, 8769, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8769, 8769, 8769, 8769, 8769, 8769, 8771, 8771, 8771, 8771, 8771, 8771, 8771, 8771, 8771, 8771, 0, 0, 0, 0, 0, 0, 8771, 8771, 8771, 8771, 8771, 8771, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8771, 8771, 8771, 8771, 8771, 8771, 8772, 8772, 8772, 8772, 8772, 8772, 8772, 8772, 8772, 0, 0, 0, 0, 0, 0, 0, 8772, 8772, 8772, 8772, 8772, 8772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8772, 0, 0, 0, 8772, 8772, 8772, 8772, 8772, 8772, 8777, 8777, 8777, 8777, 8777, 8777, 8777, 8777, 8777, 8777, 0, 0, 0, 0, 0, 0, 8777, 8777, 8777, 8777, 8777, 8777, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8777, 8777, 8777, 8777, 8777, 8777, 8778, 8778, 8778, 8778, 8778, 8778, 8778, 8778, 8778, 0, 0, 0, 0, 0, 0, 0, 8778, 8778, 8778, 8778, 8778, 8778, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8778, 8778, 8778, 8778, 8778, 8778, 8787, 8787, 8787, 8787, 8787, 8787, 8787, 8787, 8787, 8787, 0, 0, 0, 0, 0, 0, 8787, 8787, 8787, 8787, 8787, 8787, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8787, 8787, 8787, 8787, 8787, 8787, 8788, 8788, 8788, 8788, 8788, 8788, 8788, 8788, 8788, 0, 0, 0, 0, 0, 0, 0, 8788, 8788, 8788, 8788, 8788, 8788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8788, 8788, 8788, 8788, 8788, 8788, 8799, 8799, 8799, 8799, 8799, 8799, 8799, 8799, 8799, 8799, 0, 0, 0, 0, 0, 0, 8799, 8799, 8799, 8799, 8799, 8799, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8799, 8799, 8799, 8799, 8799, 8799, 8800, 8800, 8800, 8800, 8800, 8800, 8800, 8800, 8800, 0, 0, 0, 0, 0, 0, 0, 8800, 8800, 8800, 8800, 8800, 8800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8800, 8800, 8800, 8800, 8800, 8800, 8807, 0, 8807, 8807, 8807, 8807, 8807, 8807, 8807, 8807, 8807, 8807, 0, 0, 0, 0, 0, 0, 8807, 8807, 8807, 8807, 8807, 8807, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8807, 8807, 8807, 8807, 8807, 8807, 8815, 8815, 8815, 8815, 8815, 8815, 8815, 8815, 8815, 8815, 0, 0, 0, 0, 0, 0, 8815, 8815, 8815, 8815, 8815, 8815, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8815, 8815, 8815, 8815, 8815, 8815, 8816, 8816, 8816, 8816, 8816, 8816, 8816, 8816, 8816, 0, 0, 0, 0, 0, 0, 0, 8816, 8816, 8816, 8816, 8816, 8816, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8816, 8816, 8816, 8816, 8816, 8816, 8823, 8823, 8823, 8823, 8823, 8823, 8823, 8823, 8823, 8823, 0, 0, 0, 0, 0, 0, 8823, 8823, 8823, 8823, 8823, 8823, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8823, 8823, 8823, 8823, 8823, 8823, 8827, 8827, 8827, 8827, 8827, 8827, 8827, 8827, 8827, 8827, 0, 0, 0, 0, 0, 0, 8827, 8827, 8827, 8827, 8827, 8827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8827, 8827, 8827, 8827, 8827, 8827, 8828, 8828, 8828, 8828, 8828, 8828, 8828, 8828, 8828, 8828, 0, 0, 0, 0, 0, 0, 8828, 8828, 8828, 8828, 8828, 8828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8828, 8828, 8828, 8828, 8828, 8828, 8831, 8831, 8831, 8831, 8831, 8831, 8831, 8831, 8831, 8831, 0, 0, 0, 0, 0, 0, 8831, 8831, 8831, 8831, 8831, 8831, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8831, 8831, 8831, 8831, 8831, 8831, 8838, 8838, 8838, 8838, 8838, 8838, 8838, 8838, 8838, 0, 0, 0, 0, 0, 0, 0, 8838, 8838, 8838, 8838, 8838, 8838, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8838, 8838, 8838, 8838, 8838, 8838, 8839, 8839, 8839, 8839, 8839, 8839, 8839, 8839, 8839, 8839, 0, 0, 0, 0, 0, 0, 8839, 8839, 8839, 8839, 8839, 8839, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8839, 8839, 8839, 8839, 8839, 8839, 8895, 0, 0, 0, 0, 0, 0, 8895, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8895, 0, 8895, 0, 8895, 0, 0, 8895, 8895, 0, 0, 0, 8895, 0, 0, 8895, 0, 8895, 0, 8895, 0, 8895, 8895, 8895, 8897, 8897, 0, 0, 0, 0, 8897, 0, 0, 0, 8897, 8897, 8897, 8897, 8897, 8897, 8897, 8897, 8897, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8897, 0, 0, 0, 0, 0, 0, 8897, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8897, 0, 8897, 0, 8897, 0, 0, 8897, 0, 0, 0, 0, 8897, 0, 0, 8897, 0, 8897, 0, 8897, 0, 8897, 8897, 8897, 8898, 8898, 0, 0, 0, 0, 8898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8898, 0, 0, 0, 0, 0, 0, 8898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8898, 0, 8898, 0, 8898, 0, 0, 8898, 0, 0, 0, 0, 8898, 0, 0, 8898, 0, 8898, 0, 8898, 0, 8898, 8898, 8898, 8900, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8900, 0, 0, 0, 0, 0, 0, 8900, 0, 0, 8900, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8900, 0, 8900, 0, 8900, 0, 0, 8900, 0, 0, 0, 0, 8900, 0, 0, 8900, 0, 8900, 0, 8900, 0, 8900, 8900, 8900, 8901, 8901, 0, 0, 0, 0, 8901, 0, 0, 8901, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8901, 0, 0, 0, 0, 0, 0, 8901, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8901, 0, 8901, 0, 8901, 0, 0, 8901, 0, 0, 0, 0, 8901, 0, 0, 8901, 0, 8901, 0, 8901, 0, 8901, 8901, 8901, 8902, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8902, 0, 0, 0, 0, 0, 0, 8902, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8902, 0, 8902, 0, 8902, 0, 0, 8902, 0, 0, 0, 8902, 8902, 0, 0, 8902, 0, 8902, 0, 8902, 0, 8902, 8902, 8902, 8903, 8903, 0, 0, 0, 0, 8903, 0, 0, 8903, 8903, 8903, 8903, 8903, 8903, 8903, 8903, 8903, 8903, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8903, 0, 0, 0, 0, 0, 0, 8903, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8903, 0, 8903, 0, 8903, 0, 0, 8903, 0, 0, 0, 0, 8903, 0, 0, 8903, 0, 8903, 0, 8903, 0, 8903, 8903, 8903, 8922, 8922, 0, 8922, 8922, 8922, 8922, 8922, 8922, 0, 8922, 8922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8922, 8922, 8922, 8922, 8922, 8922, 8922, 0, 0, 0, 0, 0, 8922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8922, 8922, 8922, 8923, 8923, 0, 8923, 8923, 8923, 8923, 8923, 8923, 0, 8923, 8923, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8923, 8923, 8923, 8923, 8923, 8923, 8923, 8923, 0, 0, 0, 0, 8923, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8923, 8923, 8923, 8937, 8937, 8937, 8937, 8937, 8937, 8937, 8937, 8937, 8937, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8937, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8937, 0, 8937, 8939, 8939, 0, 8939, 8939, 8939, 8939, 8939, 8939, 0, 8939, 8939, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8939, 8939, 8939, 8939, 8939, 8939, 8939, 0, 0, 0, 0, 0, 8939, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8939, 8939, 8939, 8940, 8940, 0, 8940, 8940, 8940, 8940, 8940, 8940, 0, 8940, 8940, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8940, 8940, 8940, 8940, 8940, 8940, 8940, 8940, 0, 0, 0, 0, 8940, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8940, 8940, 8940, 8942, 8942, 0, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8943, 0, 0, 0, 0, 0, 0, 0, 0, 8943, 8943, 8943, 8943, 8943, 8943, 8943, 8943, 8943, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8943, 8943, 8943, 8943, 8943, 8943, 8943, 8943, 8943, 8943, 8943, 8943, 8943, 8943, 8943, 8943, 8943, 8943, 8943, 8943, 8943, 8943, 8943, 8943, 8943, 8947, 8947, 0, 8947, 8947, 8947, 8947, 8947, 8947, 0, 8947, 8947, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8947, 8947, 8947, 8947, 8947, 8947, 8947, 0, 0, 0, 0, 0, 8947, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8947, 8947, 8947, 8947, 8948, 8948, 0, 8948, 8948, 8948, 8948, 8948, 8948, 0, 8948, 8948, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8948, 8948, 8948, 8948, 8948, 8948, 8948, 0, 0, 0, 0, 0, 8948, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8948, 8948, 8948, 8949, 8949, 0, 8949, 8949, 8949, 8949, 8949, 8949, 0, 8949, 8949, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8949, 8949, 8949, 8949, 8949, 8949, 8949, 8949, 0, 0, 0, 0, 8949, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8949, 8949, 8949, 8950, 8950, 0, 8950, 8950, 8950, 8950, 8950, 8950, 0, 8950, 8950, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8950, 8950, 8950, 8950, 8950, 8950, 8950, 0, 0, 0, 0, 0, 8950, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8950, 0, 0, 0, 0, 8950, 8950, 8950, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8950, 8951, 8951, 0, 8951, 8951, 8951, 8951, 8951, 8951, 0, 8951, 8951, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8951, 8951, 8951, 8951, 8951, 8951, 8951, 0, 0, 0, 0, 0, 8951, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8951, 8951, 8951, 8951, 8952, 8952, 0, 8952, 8952, 8952, 8952, 8952, 8952, 0, 8952, 8952, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8952, 8952, 8952, 8952, 8952, 8952, 8952, 8952, 0, 0, 0, 0, 8952, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8952, 8952, 8952, 8952, 8953, 8953, 0, 8953, 8953, 8953, 8953, 8953, 8953, 0, 8953, 8953, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8953, 8953, 8953, 8953, 8953, 8953, 8953, 0, 0, 0, 0, 0, 8953, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8953, 8953, 8953, 8953, 8954, 8954, 0, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8954, 8957, 8957, 0, 8957, 8957, 8957, 8957, 8957, 8957, 0, 8957, 8957, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8957, 8957, 8957, 8957, 8957, 8957, 8957, 0, 0, 0, 0, 0, 8957, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8957, 8957, 8957, 8958, 8958, 0, 8958, 8958, 8958, 8958, 8958, 8958, 0, 8958, 8958, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8958, 8958, 8958, 8958, 8958, 8958, 8958, 8958, 0, 0, 0, 0, 8958, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8958, 8958, 8958, 8962, 8962, 0, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8968, 8968, 0, 8968, 8968, 8968, 8968, 8968, 8968, 0, 8968, 8968, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8968, 8968, 8968, 8968, 8968, 8968, 8968, 0, 0, 0, 0, 0, 8968, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8968, 8968, 8968, 8968, 8974, 8974, 0, 8974, 8974, 8974, 8974, 8974, 8974, 0, 8974, 8974, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8974, 8974, 8974, 8974, 8974, 8974, 8974, 0, 0, 0, 0, 0, 8974, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8974, 8974, 8974, 8974, 8975, 8975, 0, 8975, 8975, 8975, 8975, 8975, 8975, 0, 8975, 8975, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8975, 8975, 8975, 8975, 8975, 8975, 8975, 0, 0, 0, 0, 0, 8975, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8975, 8975, 8975, 8975, 8978, 8978, 0, 8978, 8978, 8978, 8978, 8978, 8978, 0, 8978, 8978, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8978, 8978, 8978, 8978, 8978, 8978, 8978, 0, 0, 0, 0, 0, 8978, 0, 0, 8978, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8978, 8978, 8978, 8981, 8981, 8981, 8981, 8981, 8981, 8981, 8981, 8981, 8981, 0, 0, 0, 0, 0, 0, 8981, 8981, 8981, 8981, 8981, 8981, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8981, 8981, 8981, 8981, 8981, 8981, 8982, 8982, 0, 8982, 8982, 8982, 8982, 8982, 8982, 0, 8982, 8982, 8982, 8982, 8982, 8982, 8982, 8982, 0, 0, 0, 8982, 8982, 8982, 8982, 8982, 8982, 8982, 0, 0, 0, 0, 0, 8982, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8982, 8982, 8982, 8982, 8986, 8986, 8986, 8986, 8986, 8986, 8986, 8986, 8986, 0, 0, 0, 0, 0, 0, 0, 8986, 8986, 8986, 8986, 8986, 8986, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8986, 8986, 8986, 8986, 8986, 8986, 8989, 8989, 0, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8989, 8990, 8990, 0, 8990, 8990, 8990, 8990, 8990, 8990, 0, 8990, 8990, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8990, 8990, 8990, 8990, 8990, 8990, 8990, 0, 0, 0, 0, 0, 8990, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8990, 8990, 8990, 8990, 8991, 8991, 0, 8991, 8991, 8991, 8991, 8991, 8991, 0, 8991, 8991, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8991, 8991, 8991, 8991, 8991, 8991, 8991, 0, 0, 0, 0, 0, 8991, 0, 0, 0, 0, 0, 8991, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8991, 8991, 8991, 8992, 8992, 0, 8992, 8992, 8992, 8992, 8992, 8992, 0, 8992, 8992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8992, 8992, 8992, 8992, 8992, 8992, 8992, 0, 0, 0, 0, 0, 8992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8992, 8992, 8992, 8993, 8993, 0, 8993, 8993, 8993, 8993, 8993, 8993, 0, 8993, 8993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8993, 8993, 8993, 8993, 8993, 8993, 8993, 8993, 0, 0, 0, 0, 8993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8993, 8993, 8993, 8995, 8995, 0, 8995, 8995, 8995, 8995, 8995, 8995, 0, 8995, 8995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8995, 8995, 8995, 8995, 8995, 8995, 8995, 0, 0, 0, 0, 0, 8995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8995, 8995, 8995, 8996, 8996, 0, 8996, 8996, 8996, 8996, 8996, 8996, 0, 8996, 8996, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8996, 8996, 8996, 8996, 8996, 8996, 8996, 8996, 0, 0, 0, 0, 8996, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8996, 8996, 8996, 8997, 8997, 0, 8997, 8997, 8997, 8997, 8997, 8997, 0, 8997, 8997, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8997, 8997, 8997, 8997, 8997, 8997, 8997, 0, 0, 0, 0, 0, 8997, 8997, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8997, 8997, 8997, 0, 0, 0, 0, 0, 0, 0, 8997, 8998, 8998, 0, 8998, 8998, 8998, 8998, 8998, 8998, 0, 8998, 8998, 0, 8998, 8998, 8998, 8998, 8998, 8998, 8998, 8998, 8998, 8998, 8998, 8998, 8998, 8998, 8998, 0, 0, 0, 0, 0, 8998, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8998, 8998, 8998, 8999, 8999, 0, 8999, 8999, 8999, 8999, 8999, 8999, 0, 8999, 8999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8999, 8999, 8999, 8999, 8999, 8999, 8999, 0, 0, 0, 0, 0, 8999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8999, 8999, 8999, 9000, 9000, 0, 9000, 9000, 9000, 9000, 9000, 9000, 0, 9000, 9000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9000, 9000, 9000, 9000, 9000, 9000, 9000, 0, 0, 0, 0, 0, 9000, 9000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9000, 9000, 9000, 0, 0, 0, 0, 0, 0, 0, 9000, 9001, 9001, 0, 9001, 9001, 9001, 9001, 9001, 9001, 0, 9001, 9001, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9001, 9001, 9001, 9001, 9001, 9001, 9001, 0, 0, 0, 0, 0, 9001, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9001, 9001, 9001, 9001, 9005, 9005, 9005, 9005, 9005, 9005, 9005, 9005, 9005, 9005, 0, 0, 0, 0, 0, 0, 9005, 9005, 9005, 9005, 9005, 9005, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9005, 9005, 9005, 9005, 9005, 9005, 9008, 9008, 9008, 9008, 9008, 9008, 9008, 9008, 9008, 9008, 0, 0, 0, 0, 0, 0, 9008, 9008, 9008, 9008, 9008, 9008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9008, 9008, 9008, 9008, 9008, 9008, 9010, 0, 0, 0, 0, 0, 0, 0, 0, 9010, 9010, 9010, 9010, 9010, 9010, 9010, 9010, 9010, 0, 0, 0, 0, 0, 0, 0, 9010, 9010, 9010, 9010, 9010, 9010, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9010, 9010, 9010, 9010, 9010, 9010, 9014, 9014, 9014, 9014, 9014, 9014, 9014, 9014, 9014, 9014, 0, 0, 0, 0, 0, 0, 9014, 9014, 9014, 9014, 9014, 9014, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9014, 9014, 9014, 9014, 9014, 9014, 9016, 9016, 9016, 9016, 9016, 9016, 9016, 9016, 9016, 0, 0, 0, 0, 0, 0, 0, 9016, 9016, 9016, 9016, 9016, 9016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9016, 9016, 9016, 9016, 9016, 9016, 9022, 9022, 0, 9022, 9022, 9022, 9022, 9022, 9022, 0, 9022, 9022, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9022, 9022, 9022, 9022, 9022, 9022, 9022, 0, 0, 0, 0, 0, 9022, 0, 0, 0, 0, 0, 9022, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9022, 9022, 9022, 9023, 9023, 9023, 9023, 9023, 9023, 9023, 9023, 9023, 9023, 0, 0, 0, 0, 0, 0, 9023, 9023, 9023, 9023, 9023, 9023, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9023, 9023, 9023, 9023, 9023, 9023, 9026, 9026, 9026, 9026, 9026, 9026, 9026, 9026, 9026, 9026, 0, 0, 0, 0, 0, 0, 9026, 9026, 9026, 9026, 9026, 9026, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9026, 9026, 9026, 9026, 9026, 9026, 9034, 9034, 0, 9034, 9034, 9034, 9034, 9034, 9034, 0, 9034, 9034, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 0, 0, 0, 0, 0, 9034, 0, 0, 0, 0, 0, 9034, 0, 0, 0, 0, 0, 9034, 0, 0, 0, 0, 9034, 9034, 9034, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9034, 9035, 9035, 0, 9035, 9035, 9035, 9035, 9035, 9035, 0, 9035, 9035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 0, 0, 0, 0, 0, 9035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9035, 9035, 9035, 9035, 0, 0, 0, 0, 0, 0, 0, 9035, 9036, 9036, 0, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9037, 9037, 0, 9037, 9037, 9037, 9037, 9037, 9037, 0, 9037, 9037, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9037, 9037, 9037, 9037, 9037, 9037, 9037, 0, 0, 0, 0, 0, 9037, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9037, 9037, 9037, 9038, 9038, 0, 9038, 9038, 9038, 9038, 9038, 9038, 0, 9038, 9038, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9038, 9038, 9038, 9038, 9038, 9038, 9038, 9038, 0, 0, 0, 0, 9038, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9038, 9038, 9038, 9039, 9039, 0, 9039, 9039, 9039, 9039, 9039, 9039, 0, 9039, 9039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9039, 9039, 9039, 9039, 9039, 9039, 9039, 0, 0, 0, 0, 0, 9039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9039, 9039, 9039, 9040, 9040, 0, 9040, 9040, 9040, 9040, 9040, 9040, 0, 9040, 9040, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9040, 9040, 9040, 9040, 9040, 9040, 9040, 9040, 0, 0, 0, 0, 9040, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9040, 9040, 9040, 9041, 9041, 0, 9041, 9041, 9041, 9041, 9041, 9041, 0, 9041, 9041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9041, 9041, 9041, 9041, 9041, 9041, 9041, 0, 0, 0, 0, 0, 9041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9041, 0, 0, 0, 0, 9041, 9041, 9041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9041, 9043, 9043, 9043, 9043, 9043, 9043, 9043, 9043, 9043, 0, 0, 0, 0, 0, 0, 0, 9043, 9043, 9043, 9043, 9043, 9043, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9043, 0, 9043, 9043, 9043, 9043, 9043, 9043, 9045, 9045, 0, 9045, 9045, 9045, 9045, 9045, 9045, 0, 9045, 9045, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9045, 9045, 9045, 9045, 9045, 9045, 9045, 0, 0, 0, 0, 0, 9045, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9045, 9045, 9045, 9046, 9046, 0, 9046, 9046, 9046, 9046, 9046, 9046, 0, 9046, 9046, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9046, 9046, 9046, 9046, 9046, 9046, 9046, 9046, 0, 0, 0, 0, 9046, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9046, 9046, 9046, 9047, 9047, 0, 9047, 9047, 9047, 9047, 9047, 9047, 9047, 9047, 9047, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9047, 9047, 9047, 9047, 9047, 9047, 9047, 0, 0, 0, 0, 0, 9047, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9047, 9047, 9047, 9047, 9048, 9048, 0, 9048, 9048, 9048, 9048, 9048, 9048, 0, 9048, 9048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9048, 9048, 9048, 9048, 9048, 9048, 9048, 0, 0, 0, 0, 0, 9048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9048, 9048, 9048, 9049, 9049, 0, 9049, 9049, 9049, 9049, 9049, 9049, 0, 9049, 9049, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9049, 9049, 9049, 9049, 9049, 9049, 9049, 9049, 0, 0, 0, 0, 9049, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9049, 9049, 9049, 9050, 9050, 0, 9050, 9050, 9050, 9050, 9050, 9050, 0, 9050, 9050, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9050, 9050, 9050, 9050, 9050, 9050, 9050, 0, 0, 0, 0, 0, 9050, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9050, 9050, 9050, 9051, 9051, 0, 9051, 9051, 9051, 9051, 9051, 9051, 0, 9051, 9051, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9051, 9051, 9051, 9051, 9051, 9051, 9051, 9051, 0, 0, 0, 0, 9051, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9051, 9051, 9051, 9052, 9052, 0, 9052, 9052, 9052, 9052, 9052, 9052, 0, 9052, 9052, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9052, 9052, 9052, 9052, 9052, 9052, 9052, 0, 0, 0, 0, 0, 9052, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9052, 0, 0, 0, 0, 9052, 9052, 9052, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9052, 9057, 9057, 0, 9057, 9057, 9057, 9057, 9057, 9057, 9057, 9057, 9057, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9057, 9057, 9057, 9057, 9057, 9057, 9057, 0, 0, 0, 0, 0, 9057, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9057, 9057, 9057, 9057, 9058, 9058, 0, 9058, 9058, 9058, 9058, 9058, 9058, 0, 9058, 9058, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9058, 9058, 9058, 9058, 9058, 9058, 9058, 0, 0, 0, 0, 0, 9058, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9058, 9058, 9058, 9059, 9059, 0, 9059, 9059, 9059, 9059, 9059, 9059, 0, 9059, 9059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9059, 9059, 9059, 9059, 9059, 9059, 9059, 9059, 0, 0, 0, 0, 9059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9059, 9059, 9059, 9062, 9062, 0, 9062, 9062, 9062, 9062, 9062, 9062, 9062, 9062, 9062, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9062, 9062, 9062, 9062, 9062, 9062, 9062, 0, 0, 0, 0, 0, 9062, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9062, 9062, 9062, 9062, 9063, 9063, 0, 9063, 9063, 9063, 9063, 9063, 9063, 0, 9063, 9063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9063, 9063, 9063, 9063, 9063, 9063, 9063, 0, 0, 0, 0, 0, 9063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9063, 9063, 9063, 9064, 9064, 0, 9064, 9064, 9064, 9064, 9064, 9064, 0, 9064, 9064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9064, 9064, 9064, 9064, 9064, 9064, 9064, 9064, 0, 0, 0, 0, 9064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9064, 9064, 9064, 9066, 9066, 0, 9066, 9066, 9066, 9066, 9066, 9066, 9066, 9066, 9066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9066, 9066, 9066, 9066, 9066, 9066, 9066, 0, 0, 0, 0, 0, 9066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9066, 9066, 9066, 9066, 9067, 9067, 0, 9067, 9067, 9067, 9067, 9067, 9067, 0, 9067, 9067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9067, 9067, 9067, 9067, 9067, 9067, 9067, 0, 0, 0, 0, 0, 9067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9067, 9067, 9067, 9068, 9068, 0, 9068, 9068, 9068, 9068, 9068, 9068, 0, 9068, 9068, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9068, 9068, 9068, 9068, 9068, 9068, 9068, 9068, 0, 0, 0, 0, 9068, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9068, 9068, 9068, 9069, 9069, 0, 9069, 9069, 9069, 9069, 9069, 9069, 0, 9069, 9069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9069, 9069, 9069, 9069, 9069, 9069, 9069, 0, 0, 0, 0, 0, 9069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9069, 0, 0, 9069, 9069, 9069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9069, 9070, 9070, 0, 9070, 9070, 9070, 9070, 9070, 9070, 0, 9070, 9070, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9070, 9070, 9070, 9070, 9070, 9070, 9070, 0, 0, 0, 0, 0, 9070, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9070, 9070, 9070, 9071, 9071, 0, 9071, 9071, 9071, 9071, 9071, 9071, 0, 9071, 9071, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 0, 0, 0, 0, 0, 9071, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9071, 9071, 9071, 9072, 9072, 0, 9072, 9072, 9072, 9072, 9072, 9072, 0, 9072, 9072, 9072, 9072, 9072, 9072, 9072, 9072, 9072, 9072, 9072, 9072, 9072, 9072, 9072, 9072, 9072, 9072, 0, 0, 0, 0, 0, 9072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9072, 9072, 9072, 9074, 9074, 0, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 0, 0, 0, 0, 0, 9074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9074, 9074, 9074, 9074, 9075, 9075, 0, 9075, 9075, 9075, 9075, 9075, 9075, 0, 9075, 9075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9075, 9075, 9075, 9075, 9075, 9075, 9075, 0, 0, 0, 0, 0, 9075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9075, 9075, 9075, 9076, 9076, 0, 9076, 9076, 9076, 9076, 9076, 9076, 0, 9076, 9076, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9076, 9076, 9076, 9076, 9076, 9076, 9076, 9076, 0, 0, 0, 0, 9076, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9076, 9076, 9076, 9077, 9077, 0, 9077, 9077, 9077, 9077, 9077, 9077, 0, 9077, 9077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9077, 9077, 9077, 9077, 9077, 9077, 9077, 0, 0, 0, 0, 0, 9077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9077, 0, 0, 9077, 9077, 9077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9077, 9078, 9078, 0, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9079, 9079, 0, 9079, 9079, 9079, 9079, 9079, 9079, 0, 9079, 9079, 9079, 9079, 9079, 9079, 9079, 9079, 9079, 9079, 9079, 9079, 9079, 9079, 9079, 9079, 9079, 9079, 0, 0, 0, 0, 0, 9079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9079, 9079, 9079, 9079, 9080, 9080, 0, 9080, 9080, 9080, 9080, 9080, 9080, 0, 9080, 9080, 9080, 9080, 9080, 9080, 9080, 9080, 9080, 9080, 9080, 9080, 9080, 9080, 9080, 9080, 9080, 9080, 0, 0, 0, 0, 0, 9080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9080, 9080, 9080, 9080, 9087, 9087, 9087, 9087, 9087, 9087, 9087, 9087, 9087, 9087, 0, 0, 0, 0, 0, 0, 9087, 9087, 9087, 9087, 9087, 9087, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9087, 9087, 9087, 9087, 9087, 9087, 9089, 9089, 9089, 9089, 9089, 9089, 9089, 9089, 9089, 9089, 0, 0, 0, 0, 0, 0, 9089, 9089, 9089, 9089, 9089, 9089, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9089, 9089, 9089, 9089, 9089, 9089, 9092, 0, 0, 0, 0, 0, 0, 0, 0, 9092, 9092, 9092, 9092, 9092, 9092, 9092, 9092, 9092, 9092, 0, 0, 0, 0, 0, 0, 9092, 9092, 9092, 9092, 9092, 9092, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9092, 9092, 9092, 9092, 9092, 9092, 9098, 9098, 9098, 9098, 9098, 9098, 9098, 9098, 9098, 9098, 0, 0, 0, 0, 0, 0, 9098, 9098, 9098, 9098, 9098, 9098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9098, 9098, 9098, 9098, 9098, 9098, 9101, 9101, 9101, 9101, 9101, 9101, 9101, 9101, 9101, 9101, 0, 0, 0, 0, 0, 0, 9101, 9101, 9101, 9101, 9101, 9101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9101, 9101, 9101, 9101, 9101, 9101, 9109, 9109, 0, 9109, 9109, 9109, 9109, 9109, 9109, 0, 9109, 9109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9109, 9109, 9109, 9109, 9109, 9109, 9109, 0, 0, 0, 0, 0, 9109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9109, 9109, 9109, 9114, 9114, 9114, 9114, 9114, 9114, 9114, 9114, 9114, 9114, 0, 0, 0, 0, 0, 0, 9114, 9114, 9114, 9114, 9114, 9114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9114, 9114, 9114, 9114, 9114, 9114, 9116, 9116, 9116, 9116, 9116, 9116, 9116, 9116, 9116, 0, 0, 0, 0, 0, 0, 0, 9116, 9116, 9116, 9116, 9116, 9116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9116, 9116, 9116, 9116, 9116, 9116, 9124, 9124, 0, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9124, 9125, 9125, 0, 9125, 9125, 9125, 9125, 9125, 9125, 9125, 9125, 9125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9125, 9125, 9125, 9125, 9125, 9125, 9125, 0, 0, 0, 0, 0, 9125, 0, 0, 0, 0, 0, 9125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9125, 9125, 9125, 9125, 9126, 9126, 0, 9126, 9126, 9126, 9126, 9126, 9126, 0, 9126, 9126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9126, 9126, 9126, 9126, 9126, 9126, 9126, 0, 0, 0, 0, 0, 9126, 0, 0, 0, 0, 0, 0, 0, 0, 9126, 0, 0, 0, 0, 0, 0, 0, 9126, 9126, 9126, 9127, 9127, 0, 9127, 9127, 9127, 9127, 9127, 9127, 0, 9127, 9127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9127, 9127, 9127, 9127, 9127, 9127, 9127, 0, 0, 0, 0, 0, 9127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9127, 9127, 9127, 9128, 9128, 0, 9128, 9128, 9128, 9128, 9128, 9128, 0, 9128, 9128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9128, 9128, 9128, 9128, 9128, 9128, 9128, 9128, 0, 0, 0, 0, 9128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9128, 9128, 9128, 9130, 9130, 0, 9130, 9130, 9130, 9130, 9130, 9130, 0, 9130, 9130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9130, 9130, 9130, 9130, 9130, 9130, 9130, 0, 0, 0, 0, 0, 9130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9130, 9130, 9130, 9131, 9131, 0, 9131, 9131, 9131, 9131, 9131, 9131, 0, 9131, 9131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9131, 9131, 9131, 9131, 9131, 9131, 9131, 9131, 0, 0, 0, 0, 9131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9131, 9131, 9131, 9133, 9133, 0, 9133, 9133, 9133, 9133, 9133, 9133, 0, 9133, 9133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9133, 9133, 9133, 9133, 9133, 9133, 9133, 0, 0, 0, 0, 0, 9133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9133, 9133, 9133, 9134, 9134, 0, 9134, 9134, 9134, 9134, 9134, 9134, 0, 9134, 9134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9134, 9134, 9134, 9134, 9134, 9134, 9134, 9134, 0, 0, 0, 0, 9134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9134, 9134, 9134, 9135, 9135, 0, 9135, 9135, 9135, 9135, 9135, 9135, 0, 9135, 9135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 0, 0, 0, 0, 0, 9135, 0, 9135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9135, 9135, 9135, 0, 0, 0, 0, 0, 0, 0, 0, 9135, 9138, 9138, 0, 9138, 9138, 9138, 9138, 9138, 9138, 0, 9138, 9138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9138, 9138, 9138, 9138, 9138, 9138, 9138, 0, 0, 0, 0, 0, 9138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9138, 9138, 9138, 9139, 9139, 0, 9139, 9139, 9139, 9139, 9139, 9139, 0, 9139, 9139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9139, 9139, 9139, 9139, 9139, 9139, 9139, 9139, 0, 0, 0, 0, 9139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9139, 9139, 9139, 9143, 9143, 0, 9143, 9143, 9143, 9143, 9143, 9143, 0, 9143, 9143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9143, 9143, 9143, 9143, 9143, 9143, 9143, 0, 0, 0, 0, 0, 9143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9143, 9143, 9143, 9144, 9144, 0, 9144, 9144, 9144, 9144, 9144, 9144, 0, 9144, 9144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9144, 9144, 9144, 9144, 9144, 9144, 9144, 9144, 0, 0, 0, 0, 9144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9144, 9144, 9144, 9147, 9147, 0, 9147, 9147, 9147, 9147, 9147, 9147, 0, 9147, 9147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9147, 9147, 9147, 9147, 9147, 9147, 9147, 0, 0, 0, 0, 0, 9147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9147, 9147, 9147, 9148, 9148, 0, 9148, 9148, 9148, 9148, 9148, 9148, 0, 9148, 9148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9148, 9148, 9148, 9148, 9148, 9148, 9148, 9148, 0, 0, 0, 0, 9148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9148, 9148, 9148, 9150, 9150, 0, 9150, 9150, 9150, 9150, 9150, 9150, 0, 9150, 9150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9150, 9150, 9150, 9150, 9150, 9150, 9150, 0, 0, 0, 0, 0, 9150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9150, 9150, 9150, 9151, 9151, 0, 9151, 9151, 9151, 9151, 9151, 9151, 0, 9151, 9151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9151, 9151, 9151, 9151, 9151, 9151, 9151, 9151, 0, 0, 0, 0, 9151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9151, 9151, 9151, 9152, 9152, 0, 9152, 9152, 9152, 9152, 9152, 9152, 9152, 9152, 9152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9152, 9152, 9152, 9152, 9152, 9152, 9152, 9152, 0, 0, 0, 0, 9152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9152, 9152, 9152, 9152, 9152, 9153, 9153, 0, 9153, 9153, 9153, 9153, 9153, 9153, 0, 9153, 9153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9153, 9153, 9153, 9153, 9153, 9153, 9153, 0, 0, 0, 0, 0, 9153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9153, 9153, 9153, 9154, 9154, 0, 9154, 9154, 9154, 9154, 9154, 9154, 0, 9154, 9154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9154, 9154, 9154, 9154, 9154, 9154, 9154, 9154, 0, 0, 0, 0, 9154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9154, 9154, 9154, 9156, 9156, 0, 9156, 9156, 9156, 9156, 9156, 9156, 0, 9156, 9156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9156, 9156, 9156, 9156, 9156, 9156, 9156, 0, 0, 0, 0, 0, 9156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9156, 9156, 9156, 9157, 9157, 0, 9157, 9157, 9157, 9157, 9157, 9157, 0, 9157, 9157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9157, 9157, 9157, 9157, 9157, 9157, 9157, 9157, 0, 0, 0, 0, 9157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9157, 9157, 9157, 9159, 9159, 0, 9159, 9159, 9159, 9159, 9159, 9159, 0, 9159, 9159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9159, 9159, 9159, 9159, 9159, 9159, 9159, 0, 0, 0, 0, 0, 9159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9159, 9159, 9159, 9160, 9160, 0, 9160, 9160, 9160, 9160, 9160, 9160, 0, 9160, 9160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9160, 9160, 9160, 9160, 9160, 9160, 9160, 9160, 0, 0, 0, 0, 9160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9160, 9160, 9160, 9161, 9161, 0, 9161, 9161, 9161, 9161, 9161, 9161, 9161, 9161, 9161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9161, 9161, 9161, 9161, 9161, 9161, 9161, 9161, 0, 0, 0, 0, 9161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9161, 9161, 9161, 9161, 9161, 9162, 9162, 0, 9162, 9162, 9162, 9162, 9162, 9162, 0, 9162, 9162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9162, 9162, 9162, 9162, 9162, 9162, 9162, 0, 0, 0, 0, 0, 9162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9162, 9162, 9162, 9162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9162, 9165, 9165, 0, 9165, 9165, 9165, 9165, 9165, 9165, 0, 9165, 9165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9165, 9165, 9165, 9165, 9165, 9165, 9165, 0, 0, 0, 0, 0, 9165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9165, 9165, 9165, 9195, 9195, 0, 9195, 9195, 9195, 9195, 9195, 9195, 0, 9195, 9195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9195, 9195, 9195, 9195, 9195, 9195, 9195, 0, 0, 0, 0, 0, 9195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9195, 9195, 9195, 9196, 9196, 0, 9196, 9196, 9196, 9196, 9196, 9196, 0, 9196, 9196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9196, 9196, 9196, 9196, 9196, 9196, 9196, 9196, 0, 0, 0, 0, 9196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9196, 9196, 9196, 9200, 9200, 0, 9200, 9200, 9200, 9200, 9200, 9200, 0, 9200, 9200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9200, 9200, 9200, 9200, 9200, 9200, 9200, 0, 0, 0, 0, 0, 9200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9200, 9200, 9200, 9201, 9201, 0, 9201, 9201, 9201, 9201, 9201, 9201, 0, 9201, 9201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9201, 9201, 9201, 9201, 9201, 9201, 9201, 9201, 0, 0, 0, 0, 9201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9201, 9201, 9201, 9205, 9205, 0, 9205, 9205, 9205, 9205, 9205, 9205, 0, 9205, 9205, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9205, 9205, 9205, 9205, 9205, 9205, 9205, 0, 0, 0, 0, 0, 9205, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9205, 9205, 9205, 9206, 9206, 0, 9206, 9206, 9206, 9206, 9206, 9206, 0, 9206, 9206, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9206, 9206, 9206, 9206, 9206, 9206, 9206, 9206, 0, 0, 0, 0, 9206, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9206, 9206, 9206, 9210, 9210, 0, 9210, 9210, 9210, 9210, 9210, 9210, 0, 9210, 9210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9210, 9210, 9210, 9210, 9210, 9210, 9210, 0, 0, 0, 0, 0, 9210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9210, 9210, 9210, 9211, 9211, 0, 9211, 9211, 9211, 9211, 9211, 9211, 0, 9211, 9211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9211, 9211, 9211, 9211, 9211, 9211, 9211, 9211, 0, 0, 0, 0, 9211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9211, 9211, 9211, 9215, 9215, 0, 9215, 9215, 9215, 9215, 9215, 9215, 0, 9215, 9215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9215, 9215, 9215, 9215, 9215, 9215, 9215, 0, 0, 0, 0, 0, 9215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9215, 9215, 9215, 9216, 9216, 0, 9216, 9216, 9216, 9216, 9216, 9216, 0, 9216, 9216, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9216, 9216, 9216, 9216, 9216, 9216, 9216, 9216, 0, 0, 0, 0, 9216, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9216, 9216, 9216, 9219, 9219, 0, 9219, 9219, 9219, 9219, 9219, 9219, 0, 9219, 9219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9219, 9219, 9219, 9219, 9219, 9219, 9219, 0, 0, 0, 0, 0, 9219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9219, 9219, 9219, 9220, 9220, 0, 9220, 9220, 9220, 9220, 9220, 9220, 0, 9220, 9220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9220, 9220, 9220, 9220, 9220, 9220, 9220, 9220, 0, 0, 0, 0, 9220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9220, 9220, 9220, 9222, 9222, 0, 9222, 9222, 9222, 9222, 9222, 9222, 0, 9222, 9222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9222, 9222, 9222, 9222, 9222, 9222, 9222, 0, 0, 0, 0, 0, 9222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9222, 0, 0, 0, 0, 0, 9222, 9222, 9222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9222, 9223, 9223, 0, 9223, 9223, 9223, 9223, 9223, 9223, 0, 9223, 9223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9223, 9223, 9223, 9223, 9223, 9223, 9223, 0, 0, 0, 0, 0, 9223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9223, 9223, 9223, 9224, 9224, 0, 9224, 9224, 9224, 9224, 9224, 9224, 0, 9224, 9224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9224, 9224, 9224, 9224, 9224, 9224, 9224, 9224, 0, 0, 0, 0, 9224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9224, 9224, 9224, 9225, 9225, 0, 9225, 9225, 9225, 9225, 9225, 9225, 0, 9225, 9225, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9225, 9225, 9225, 9225, 9225, 9225, 9225, 0, 0, 0, 0, 0, 9225, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9225, 9225, 9225, 9226, 9226, 0, 9226, 9226, 9226, 9226, 9226, 9226, 0, 9226, 9226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9226, 9226, 9226, 9226, 9226, 9226, 9226, 9226, 0, 0, 0, 0, 9226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9226, 9226, 9226, 9230, 9230, 0, 9230, 9230, 9230, 9230, 9230, 9230, 0, 9230, 9230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9230, 9230, 9230, 9230, 9230, 9230, 9230, 0, 0, 0, 0, 0, 9230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9230, 9230, 9230, 9231, 9231, 0, 9231, 9231, 9231, 9231, 9231, 9231, 0, 9231, 9231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9231, 9231, 9231, 9231, 9231, 9231, 9231, 9231, 0, 0, 0, 0, 9231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9231, 9231, 9231, 9234, 9234, 0, 9234, 9234, 9234, 9234, 9234, 9234, 0, 9234, 9234, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9234, 9234, 9234, 9234, 9234, 9234, 9234, 0, 0, 0, 0, 0, 9234, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9234, 9234, 9234, 9235, 9235, 0, 9235, 9235, 9235, 9235, 9235, 9235, 0, 9235, 9235, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9235, 9235, 9235, 9235, 9235, 9235, 9235, 9235, 0, 0, 0, 0, 9235, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9235, 9235, 9235, 9237, 9237, 0, 9237, 9237, 9237, 9237, 9237, 9237, 0, 9237, 9237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9237, 9237, 9237, 9237, 9237, 9237, 9237, 0, 0, 0, 0, 0, 9237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9237, 0, 0, 0, 0, 0, 9237, 9237, 9237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9237, 9238, 9238, 0, 9238, 9238, 9238, 9238, 9238, 9238, 0, 9238, 9238, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9238, 9238, 9238, 9238, 9238, 9238, 9238, 0, 0, 0, 0, 0, 9238, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9238, 9238, 9238, 9239, 9239, 0, 9239, 9239, 9239, 9239, 9239, 9239, 0, 9239, 9239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9239, 9239, 9239, 9239, 9239, 9239, 9239, 9239, 0, 0, 0, 0, 9239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9239, 9239, 9239, 9245, 9245, 0, 9245, 9245, 9245, 9245, 9245, 9245, 0, 9245, 9245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9245, 9245, 9245, 9245, 9245, 9245, 9245, 0, 0, 0, 0, 0, 9245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9245, 9245, 9245, 0, 0, 0, 9245, 9246, 9246, 0, 9246, 9246, 9246, 9246, 9246, 9246, 0, 9246, 9246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9246, 9246, 9246, 9246, 9246, 9246, 9246, 9246, 0, 0, 0, 0, 9246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9246, 9246, 9246, 0, 0, 0, 9246, 9248, 9248, 0, 9248, 9248, 9248, 9248, 9248, 9248, 0, 9248, 9248, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9248, 9248, 9248, 9248, 9248, 9248, 9248, 0, 0, 0, 0, 0, 9248, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9248, 9248, 9248, 0, 0, 0, 9248, 9249, 9249, 0, 9249, 9249, 9249, 9249, 9249, 9249, 0, 9249, 9249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9249, 9249, 9249, 9249, 9249, 9249, 9249, 9249, 0, 0, 0, 0, 9249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9249, 9249, 9249, 0, 0, 0, 9249, 9250, 9250, 0, 9250, 9250, 9250, 9250, 9250, 9250, 0, 9250, 9250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9250, 9250, 9250, 9250, 9250, 9250, 9250, 0, 0, 0, 0, 0, 9250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9250, 0, 0, 0, 0, 9250, 9250, 9250, 0, 0, 0, 9250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9250, 9253, 9253, 9253, 9253, 9253, 9253, 9253, 9253, 9253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9253, 0, 0, 0, 9253, 9257, 0, 0, 0, 0, 0, 0, 0, 0, 9257, 9257, 9257, 9257, 9257, 9257, 9257, 9257, 9257, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9257, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9257, 9259, 9259, 0, 9259, 9259, 9259, 9259, 9259, 9259, 0, 9259, 9259, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9259, 9259, 9259, 9259, 9259, 9259, 9259, 0, 0, 0, 0, 0, 9259, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9259, 9259, 9259, 0, 0, 0, 9259, 9260, 9260, 0, 9260, 9260, 9260, 9260, 9260, 9260, 0, 9260, 9260, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9260, 9260, 9260, 9260, 9260, 9260, 9260, 9260, 0, 0, 0, 0, 9260, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9260, 9260, 9260, 0, 0, 0, 9260, 9265, 9265, 0, 9265, 9265, 9265, 9265, 9265, 9265, 0, 9265, 9265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9265, 9265, 9265, 9265, 9265, 9265, 9265, 0, 0, 0, 0, 0, 9265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9265, 9265, 9265, 0, 0, 0, 9265, 9266, 9266, 0, 9266, 9266, 9266, 9266, 9266, 9266, 0, 9266, 9266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9266, 9266, 9266, 9266, 9266, 9266, 9266, 9266, 0, 0, 0, 0, 9266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9266, 9266, 9266, 0, 0, 0, 9266, 9269, 9269, 0, 9269, 9269, 9269, 9269, 9269, 9269, 0, 9269, 9269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9269, 9269, 9269, 9269, 9269, 9269, 9269, 0, 0, 0, 0, 0, 9269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9269, 9269, 9269, 0, 0, 0, 9269, 9270, 9270, 0, 9270, 9270, 9270, 9270, 9270, 9270, 0, 9270, 9270, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9270, 9270, 9270, 9270, 9270, 9270, 9270, 9270, 0, 0, 0, 0, 9270, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9270, 9270, 9270, 0, 0, 0, 9270, 9271, 9271, 0, 9271, 9271, 9271, 9271, 9271, 9271, 0, 9271, 9271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9271, 9271, 9271, 9271, 9271, 9271, 9271, 0, 0, 0, 0, 0, 9271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9271, 0, 0, 9271, 9271, 9271, 0, 0, 0, 9271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9271, 9273, 9273, 0, 9273, 9273, 9273, 9273, 9273, 9273, 0, 9273, 9273, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9273, 9273, 9273, 9273, 9273, 9273, 9273, 0, 0, 0, 0, 0, 9273, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9273, 9273, 9273, 0, 0, 0, 9273, 9274, 9274, 0, 9274, 9274, 9274, 9274, 9274, 9274, 0, 9274, 9274, 9274, 9274, 9274, 9274, 9274, 9274, 9274, 9274, 9274, 9274, 9274, 9274, 9274, 9274, 9274, 9274, 0, 0, 0, 0, 0, 9274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9274, 9274, 9274, 0, 0, 0, 9274, 9278, 9278, 0, 9278, 9278, 9278, 9278, 9278, 9278, 0, 9278, 9278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9278, 9278, 9278, 9278, 9278, 9278, 9278, 0, 0, 0, 0, 0, 9278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9278, 9278, 9278, 0, 0, 0, 9278, 9279, 9279, 0, 9279, 9279, 9279, 9279, 9279, 9279, 0, 9279, 9279, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9279, 9279, 9279, 9279, 9279, 9279, 9279, 9279, 0, 0, 0, 0, 9279, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9279, 9279, 9279, 0, 0, 0, 9279, 9280, 9280, 0, 9280, 9280, 9280, 9280, 9280, 9280, 0, 9280, 9280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9280, 9280, 9280, 9280, 9280, 9280, 9280, 0, 0, 0, 0, 0, 9280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9280, 0, 0, 9280, 9280, 9280, 0, 0, 0, 9280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9280, 9285, 9285, 0, 9285, 9285, 9285, 9285, 9285, 9285, 0, 9285, 9285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9285, 9285, 9285, 9285, 9285, 9285, 9285, 0, 0, 0, 0, 0, 9285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9285, 9285, 9285, 9285, 0, 0, 9285, 9286, 9286, 0, 9286, 9286, 9286, 9286, 9286, 9286, 0, 9286, 9286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9286, 9286, 9286, 9286, 9286, 9286, 9286, 0, 0, 0, 0, 0, 9286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9286, 9286, 9286, 0, 0, 0, 0, 0, 9286, 9288, 9288, 9288, 9288, 9288, 9288, 9288, 9288, 9288, 0, 9288, 9288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9288, 9288, 9288, 9288, 9288, 9288, 9288, 0, 0, 0, 0, 0, 9288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9288, 9288, 9288, 9289, 9289, 9289, 9289, 9289, 9289, 9289, 9289, 9289, 0, 9289, 9289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9289, 9289, 9289, 9289, 9289, 9289, 9289, 9289, 0, 0, 0, 0, 9289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9289, 9289, 9289, 9293, 9293, 9293, 9293, 9293, 9293, 9293, 9293, 9293, 0, 9293, 9293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9293, 9293, 9293, 9293, 9293, 9293, 9293, 0, 0, 0, 0, 0, 9293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9293, 9293, 9293, 9294, 9294, 9294, 9294, 9294, 9294, 9294, 9294, 9294, 0, 9294, 9294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9294, 9294, 9294, 9294, 9294, 9294, 9294, 9294, 0, 0, 0, 0, 9294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9294, 9294, 9294, 9298, 9298, 9298, 9298, 9298, 9298, 9298, 9298, 9298, 0, 9298, 9298, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9298, 9298, 9298, 9298, 9298, 9298, 9298, 0, 0, 0, 0, 0, 9298, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9298, 9298, 9298, 9299, 9299, 9299, 9299, 9299, 9299, 9299, 9299, 9299, 0, 9299, 9299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9299, 9299, 9299, 9299, 9299, 9299, 9299, 9299, 0, 0, 0, 0, 9299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9299, 9299, 9299, 9303, 9303, 9303, 9303, 9303, 9303, 9303, 9303, 9303, 0, 9303, 9303, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9303, 9303, 9303, 9303, 9303, 9303, 9303, 0, 0, 0, 0, 0, 9303, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9303, 9303, 9303, 9304, 9304, 9304, 9304, 9304, 9304, 9304, 9304, 9304, 0, 9304, 9304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9304, 9304, 9304, 9304, 9304, 9304, 9304, 9304, 0, 0, 0, 0, 9304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9304, 9304, 9304, 9307, 9307, 9307, 9307, 9307, 9307, 9307, 9307, 9307, 0, 9307, 9307, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9307, 9307, 9307, 9307, 9307, 9307, 9307, 0, 0, 0, 0, 0, 9307, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9307, 9307, 9307, 9308, 9308, 9308, 9308, 9308, 9308, 9308, 9308, 9308, 0, 9308, 9308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9308, 9308, 9308, 9308, 9308, 9308, 9308, 9308, 0, 0, 0, 0, 9308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9308, 9308, 9308, 9310, 9310, 9310, 9310, 9310, 9310, 9310, 9310, 9310, 0, 9310, 9310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9310, 9310, 9310, 9310, 9310, 9310, 9310, 0, 0, 0, 0, 0, 9310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9310, 9310, 9310, 9311, 9311, 9311, 9311, 9311, 9311, 9311, 9311, 9311, 0, 9311, 9311, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9311, 9311, 9311, 9311, 9311, 9311, 9311, 9311, 0, 0, 0, 0, 9311, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9311, 9311, 9311, 9312, 9312, 9312, 9312, 9312, 9312, 9312, 9312, 9312, 9312, 9312, 9312, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9312, 9312, 9312, 9312, 9312, 9312, 9312, 9312, 0, 0, 0, 0, 9312, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9312, 9312, 9312, 9312, 9312, 9313, 9313, 9313, 9313, 9313, 9313, 9313, 9313, 9313, 0, 9313, 9313, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9313, 9313, 9313, 9313, 9313, 9313, 9313, 0, 0, 0, 0, 0, 9313, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9313, 9313, 9313, 9314, 9314, 9314, 9314, 9314, 9314, 9314, 9314, 9314, 0, 9314, 9314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9314, 9314, 9314, 9314, 9314, 9314, 9314, 9314, 0, 0, 0, 0, 9314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9314, 9314, 9314, 9316, 9316, 9316, 9316, 9316, 9316, 9316, 9316, 9316, 0, 9316, 9316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9316, 9316, 9316, 9316, 9316, 9316, 9316, 0, 0, 0, 0, 0, 9316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9316, 9316, 9316, 9317, 9317, 9317, 9317, 9317, 9317, 9317, 9317, 9317, 0, 9317, 9317, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9317, 9317, 9317, 9317, 9317, 9317, 9317, 9317, 0, 0, 0, 0, 9317, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9317, 9317, 9317, 9319, 9319, 9319, 9319, 9319, 9319, 9319, 9319, 9319, 0, 9319, 9319, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9319, 9319, 9319, 9319, 9319, 9319, 9319, 0, 0, 0, 0, 0, 9319, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9319, 9319, 9319, 9320, 9320, 9320, 9320, 9320, 9320, 9320, 9320, 9320, 0, 9320, 9320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9320, 9320, 9320, 9320, 9320, 9320, 9320, 9320, 0, 0, 0, 0, 9320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9320, 9320, 9320, 9321, 9321, 9321, 9321, 9321, 9321, 9321, 9321, 9321, 9321, 9321, 9321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9321, 9321, 9321, 9321, 9321, 9321, 9321, 9321, 0, 0, 0, 0, 9321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9321, 9321, 9321, 9321, 9321, 9341, 9341, 0, 9341, 9341, 9341, 9341, 9341, 9341, 0, 9341, 9341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9341, 9341, 9341, 9341, 9341, 9341, 9341, 0, 0, 0, 0, 0, 9341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9341, 9341, 9341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9341, 9343, 9343, 0, 9343, 9343, 9343, 9343, 9343, 9343, 0, 9343, 9343, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9343, 9343, 9343, 9343, 9343, 9343, 9343, 0, 0, 0, 0, 0, 9343, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9343, 9343, 9343, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9343, 9345, 9345, 0, 9345, 9345, 9345, 9345, 0, 9345, 9345, 9345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9345, 9345, 9345, 9345, 9345, 9345, 9345, 0, 0, 0, 0, 0, 9345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9345, 9345, 9345, 9345, 9346, 9346, 0, 9346, 9346, 9346, 9346, 0, 9346, 9346, 9346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9346, 9346, 9346, 9346, 9346, 9346, 9346, 9346, 0, 0, 0, 0, 9346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9346, 9346, 9346, 9346, 9349, 9349, 9349, 9349, 9349, 9349, 9349, 9349, 9349, 0, 0, 0, 0, 0, 0, 0, 9349, 9349, 9349, 9349, 9349, 9349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9349, 9349, 9349, 9349, 9349, 9349, 9361, 9361, 0, 9361, 9361, 9361, 9361, 9361, 9361, 0, 9361, 9361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9361, 9361, 9361, 9361, 9361, 9361, 9361, 0, 0, 0, 0, 0, 9361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9361, 9361, 9361, 9362, 9362, 0, 9362, 9362, 9362, 9362, 9362, 9362, 0, 9362, 9362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9362, 9362, 9362, 9362, 9362, 9362, 9362, 9362, 0, 0, 0, 0, 9362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9362, 9362, 9362, 9366, 9366, 0, 9366, 9366, 9366, 9366, 9366, 9366, 0, 9366, 9366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9366, 9366, 9366, 9366, 9366, 9366, 9366, 0, 0, 0, 0, 0, 9366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9366, 9366, 9366, 9367, 9367, 0, 9367, 9367, 9367, 9367, 9367, 9367, 0, 9367, 9367, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9367, 9367, 9367, 9367, 9367, 9367, 9367, 9367, 0, 0, 0, 0, 9367, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9367, 9367, 9367, 9381, 9381, 0, 9381, 9381, 9381, 9381, 9381, 9381, 0, 9381, 9381, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9381, 9381, 9381, 9381, 9381, 9381, 9381, 0, 0, 0, 0, 0, 9381, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9381, 9381, 9381, 9382, 9382, 0, 9382, 9382, 9382, 9382, 9382, 9382, 0, 9382, 9382, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9382, 9382, 9382, 9382, 9382, 9382, 9382, 9382, 0, 0, 0, 0, 9382, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9382, 9382, 9382, 9396, 9396, 0, 9396, 9396, 9396, 9396, 9396, 9396, 0, 9396, 9396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9396, 9396, 9396, 9396, 9396, 9396, 9396, 0, 0, 0, 0, 0, 9396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9396, 9396, 9396, 9397, 9397, 0, 9397, 9397, 9397, 9397, 9397, 9397, 0, 9397, 9397, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9397, 9397, 9397, 9397, 9397, 9397, 9397, 9397, 0, 0, 0, 0, 9397, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9397, 9397, 9397, 9417, 9417, 0, 9417, 9417, 9417, 9417, 9417, 9417, 9417, 9417, 9417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9417, 9417, 9417, 9417, 9417, 9417, 9417, 0, 0, 0, 0, 0, 9417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9417, 9417, 9417, 9417, 9425, 9425, 9425, 9425, 9425, 9425, 9425, 9425, 9425, 9425, 0, 0, 0, 0, 0, 0, 9425, 9425, 9425, 9425, 9425, 9425, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9425, 9425, 9425, 9425, 9425, 9425, 9426, 9426, 9426, 9426, 9426, 9426, 9426, 9426, 9426, 9426, 0, 0, 0, 0, 0, 0, 9426, 9426, 9426, 9426, 9426, 9426, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9426, 9426, 9426, 9426, 9426, 9426, 9428, 9428, 9428, 9428, 9428, 9428, 9428, 9428, 9428, 9428, 0, 0, 0, 0, 0, 0, 9428, 9428, 9428, 9428, 9428, 9428, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9428, 0, 0, 0, 9428, 9428, 9428, 9428, 9428, 9428, 9433, 9433, 9433, 9433, 9433, 9433, 9433, 9433, 9433, 9433, 0, 0, 0, 0, 0, 0, 9433, 9433, 9433, 9433, 9433, 9433, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9433, 9433, 9433, 9433, 9433, 9433, 9435, 9435, 9435, 9435, 9435, 9435, 9435, 9435, 9435, 9435, 0, 0, 0, 0, 0, 0, 9435, 9435, 9435, 9435, 9435, 9435, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9435, 9435, 9435, 9435, 9435, 9435, 9440, 9440, 9440, 9440, 9440, 9440, 9440, 9440, 9440, 9440, 0, 0, 0, 0, 0, 0, 9440, 9440, 9440, 9440, 9440, 9440, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9440, 9440, 9440, 9440, 9440, 9440, 9442, 9442, 9442, 9442, 9442, 9442, 9442, 9442, 9442, 9442, 0, 0, 0, 0, 0, 0, 9442, 9442, 9442, 9442, 9442, 9442, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9442, 9442, 9442, 9442, 9442, 9442, 9447, 9447, 9447, 9447, 9447, 9447, 9447, 9447, 9447, 0, 0, 0, 0, 0, 0, 0, 9447, 9447, 9447, 9447, 9447, 9447, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9447, 9447, 9447, 9447, 9447, 9447, 9448, 9448, 9448, 9448, 9448, 9448, 9448, 9448, 9448, 9448, 0, 0, 0, 0, 0, 0, 9448, 9448, 9448, 9448, 9448, 9448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9448, 9448, 9448, 9448, 9448, 9448, 9450, 9450, 9450, 9450, 9450, 9450, 9450, 9450, 9450, 9450, 0, 0, 0, 0, 0, 0, 9450, 9450, 9450, 9450, 9450, 9450, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9450, 9450, 9450, 9450, 9450, 9450, 9455, 9455, 9455, 9455, 9455, 9455, 9455, 9455, 9455, 0, 0, 0, 0, 0, 0, 0, 9455, 9455, 9455, 9455, 9455, 9455, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9455, 9455, 9455, 9455, 9455, 9455, 9456, 0, 9456, 9456, 9456, 9456, 9456, 9456, 9456, 9456, 9456, 9456, 0, 0, 0, 0, 0, 0, 9456, 9456, 9456, 9456, 9456, 9456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9456, 9456, 9456, 9456, 9456, 9456, 9459, 9459, 9459, 9459, 9459, 9459, 9459, 9459, 9459, 9459, 0, 0, 0, 0, 0, 0, 9459, 9459, 9459, 9459, 9459, 9459, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9459, 9459, 9459, 9459, 9459, 9459, 9461, 9461, 9461, 9461, 9461, 9461, 9461, 9461, 9461, 9461, 0, 0, 0, 0, 0, 0, 9461, 9461, 9461, 9461, 9461, 9461, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9461, 9461, 9461, 9461, 9461, 9461, 9466, 9466, 9466, 9466, 9466, 9466, 9466, 9466, 9466, 0, 0, 0, 0, 0, 0, 0, 9466, 9466, 9466, 9466, 9466, 9466, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9466, 9466, 9466, 9466, 9466, 9466, 9467, 9467, 9467, 9467, 9467, 9467, 9467, 9467, 9467, 9467, 0, 0, 0, 0, 0, 0, 9467, 9467, 9467, 9467, 9467, 9467, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9467, 9467, 9467, 9467, 9467, 9467, 9474, 9474, 9474, 9474, 9474, 9474, 9474, 9474, 9474, 9474, 0, 0, 0, 0, 0, 0, 9474, 9474, 9474, 9474, 9474, 9474, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9474, 9474, 9474, 9474, 9474, 9474, 9475, 9475, 9475, 9475, 9475, 9475, 9475, 9475, 9475, 0, 0, 0, 0, 0, 0, 0, 9475, 9475, 9475, 9475, 9475, 9475, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9475, 9475, 9475, 9475, 9475, 9475, 9482, 9482, 9482, 9482, 9482, 9482, 9482, 9482, 9482, 9482, 0, 0, 0, 0, 0, 0, 9482, 9482, 9482, 9482, 9482, 9482, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9482, 9482, 9482, 9482, 9482, 9482, 9486, 9486, 9486, 9486, 9486, 9486, 9486, 9486, 9486, 9486, 0, 0, 0, 0, 0, 0, 9486, 9486, 9486, 9486, 9486, 9486, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9486, 9486, 9486, 9486, 9486, 9486, 9541, 0, 0, 0, 0, 0, 0, 9541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9541, 0, 9541, 0, 9541, 0, 0, 9541, 0, 0, 0, 0, 9541, 0, 0, 9541, 0, 9541, 0, 9541, 0, 9541, 9541, 9541, 9543, 9543, 0, 0, 0, 0, 9543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9543, 0, 0, 0, 0, 0, 0, 9543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9543, 0, 9543, 0, 9543, 0, 0, 9543, 0, 0, 0, 0, 9543, 0, 0, 9543, 0, 9543, 0, 9543, 0, 9543, 9543, 9543, 9544, 9544, 0, 0, 0, 0, 9544, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9544, 0, 0, 9544, 0, 9544, 0, 0, 0, 0, 9544, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9544, 0, 9544, 0, 9544, 0, 0, 9544, 0, 0, 0, 0, 9544, 0, 0, 9544, 0, 9544, 0, 9544, 0, 9544, 9544, 9544, 9545, 9545, 0, 0, 0, 0, 9545, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9545, 0, 0, 0, 0, 0, 0, 9545, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9545, 0, 9545, 0, 9545, 0, 0, 9545, 0, 0, 0, 0, 9545, 0, 0, 9545, 0, 9545, 0, 9545, 0, 9545, 9545, 9545, 9546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9546, 0, 0, 0, 0, 0, 0, 9546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9546, 0, 9546, 0, 9546, 0, 0, 9546, 0, 0, 0, 0, 9546, 0, 0, 9546, 0, 9546, 0, 9546, 0, 9546, 9546, 9546, 9547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9547, 0, 0, 0, 0, 0, 0, 9547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9547, 0, 9547, 0, 9547, 0, 0, 9547, 9547, 0, 0, 0, 9547, 0, 0, 9547, 0, 9547, 0, 9547, 0, 9547, 9547, 9547, 9548, 9548, 0, 0, 0, 0, 9548, 0, 0, 9548, 9548, 9548, 9548, 9548, 9548, 9548, 9548, 9548, 9548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9548, 0, 0, 0, 0, 0, 0, 9548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9548, 0, 9548, 0, 9548, 0, 0, 9548, 0, 0, 0, 0, 9548, 0, 0, 9548, 0, 9548, 0, 9548, 0, 9548, 9548, 9548, 9549, 9549, 0, 0, 0, 0, 9549, 0, 0, 9549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9549, 0, 0, 0, 0, 0, 0, 9549, 0, 0, 0, 0, 0, 9549, 0, 0, 0, 0, 0, 0, 0, 9549, 0, 9549, 0, 9549, 0, 0, 9549, 0, 0, 0, 0, 9549, 0, 0, 9549, 0, 9549, 0, 9549, 0, 9549, 9549, 9549, 9566, 9566, 0, 9566, 9566, 9566, 9566, 9566, 9566, 0, 9566, 9566, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9566, 9566, 9566, 9566, 9566, 9566, 9566, 0, 0, 0, 0, 0, 9566, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9566, 9566, 9566, 9567, 9567, 0, 9567, 9567, 9567, 9567, 9567, 9567, 0, 9567, 9567, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9567, 9567, 9567, 9567, 9567, 9567, 9567, 9567, 0, 0, 0, 0, 9567, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9567, 9567, 9567, 9571, 9571, 0, 9571, 9571, 9571, 9571, 9571, 9571, 0, 9571, 9571, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9571, 9571, 9571, 9571, 9571, 9571, 9571, 0, 0, 0, 0, 0, 9571, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9571, 9571, 9571, 9572, 9572, 0, 9572, 9572, 9572, 9572, 9572, 9572, 0, 9572, 9572, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9572, 9572, 9572, 9572, 9572, 9572, 9572, 9572, 0, 0, 0, 0, 9572, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9572, 9572, 9572, 9574, 9574, 0, 9574, 9574, 9574, 9574, 9574, 9574, 0, 9574, 9574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9574, 9574, 9574, 9574, 9574, 9574, 9574, 0, 0, 0, 0, 0, 9574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9574, 0, 0, 0, 0, 9574, 9574, 9574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9574, 9575, 9575, 0, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9575, 9576, 0, 0, 0, 0, 0, 0, 0, 0, 9576, 9576, 9576, 9576, 9576, 9576, 9576, 9576, 9576, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9576, 9576, 9576, 9576, 9576, 9576, 9576, 9576, 9576, 9576, 9576, 9576, 9576, 9576, 9576, 9576, 9576, 9576, 9576, 9576, 9576, 9576, 9576, 9576, 9576, 9581, 9581, 0, 9581, 9581, 9581, 9581, 9581, 9581, 0, 9581, 9581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9581, 9581, 9581, 9581, 9581, 9581, 9581, 0, 0, 0, 0, 0, 9581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9581, 9581, 9581, 9582, 9582, 0, 9582, 9582, 9582, 9582, 9582, 9582, 0, 9582, 9582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9582, 9582, 9582, 9582, 9582, 9582, 9582, 9582, 0, 0, 0, 0, 9582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9582, 9582, 9582, 9584, 9584, 0, 9584, 9584, 9584, 9584, 9584, 9584, 0, 9584, 9584, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9584, 9584, 9584, 9584, 9584, 9584, 9584, 0, 0, 0, 0, 0, 9584, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9584, 9584, 9584, 9585, 9585, 0, 9585, 9585, 9585, 9585, 9585, 9585, 0, 9585, 9585, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9585, 9585, 9585, 9585, 9585, 9585, 9585, 9585, 0, 0, 0, 0, 9585, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9585, 9585, 9585, 9586, 9586, 0, 9586, 9586, 9586, 9586, 9586, 9586, 0, 9586, 9586, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9586, 9586, 9586, 9586, 9586, 9586, 9586, 0, 0, 0, 0, 0, 9586, 0, 9586, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9586, 9586, 9586, 0, 0, 0, 0, 0, 0, 0, 0, 9586, 9587, 9587, 0, 9587, 9587, 9587, 9587, 9587, 9587, 0, 9587, 9587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9587, 9587, 9587, 9587, 9587, 9587, 9587, 0, 0, 0, 0, 0, 9587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9587, 9587, 9587, 9587, 9588, 9588, 0, 9588, 9588, 9588, 9588, 9588, 9588, 0, 9588, 9588, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9588, 9588, 9588, 9588, 9588, 9588, 9588, 9588, 0, 0, 0, 0, 9588, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9588, 9588, 9588, 9588, 9589, 9589, 0, 9589, 9589, 9589, 9589, 9589, 9589, 0, 9589, 9589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9589, 9589, 9589, 9589, 9589, 9589, 9589, 0, 0, 0, 0, 0, 9589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9589, 9589, 9589, 9591, 9591, 0, 9591, 9591, 9591, 9591, 9591, 9591, 0, 9591, 9591, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9591, 9591, 9591, 9591, 9591, 9591, 9591, 0, 0, 0, 0, 0, 9591, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9591, 9591, 9591, 9591, 9592, 9592, 0, 9592, 9592, 9592, 9592, 9592, 9592, 0, 9592, 9592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9592, 9592, 9592, 9592, 9592, 9592, 9592, 9592, 0, 0, 0, 0, 9592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9592, 9592, 9592, 9592, 9593, 9593, 0, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9593, 9597, 9597, 0, 9597, 9597, 9597, 9597, 9597, 9597, 0, 9597, 9597, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9597, 9597, 9597, 9597, 9597, 9597, 9597, 9597, 0, 0, 0, 0, 9597, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9597, 9597, 9597, 9599, 9599, 0, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9609, 9609, 0, 9609, 9609, 9609, 9609, 9609, 9609, 9609, 9609, 9609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9609, 9609, 9609, 9609, 9609, 9609, 9609, 0, 0, 0, 0, 0, 9609, 0, 0, 0, 0, 0, 9609, 0, 0, 0, 0, 0, 9609, 0, 0, 0, 0, 9609, 9609, 9609, 9609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9609, 9611, 9611, 0, 9611, 9611, 9611, 9611, 9611, 9611, 0, 9611, 9611, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9611, 9611, 9611, 9611, 9611, 9611, 9611, 0, 0, 0, 0, 0, 9611, 0, 0, 0, 0, 0, 9611, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9611, 9611, 9611, 9612, 9612, 0, 9612, 9612, 9612, 9612, 9612, 9612, 9612, 9612, 9612, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9612, 9612, 9612, 9612, 9612, 9612, 9612, 0, 0, 0, 0, 0, 9612, 0, 0, 0, 0, 0, 9612, 0, 0, 0, 0, 0, 9612, 0, 0, 0, 0, 9612, 9612, 9612, 9612, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9612, 9613, 9613, 0, 9613, 9613, 9613, 9613, 9613, 9613, 0, 9613, 9613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9613, 9613, 9613, 9613, 9613, 9613, 9613, 0, 0, 0, 0, 0, 9613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9613, 9613, 9613, 9613, 0, 0, 0, 0, 0, 0, 0, 9613, 9614, 9614, 0, 9614, 9614, 9614, 9614, 9614, 9614, 0, 9614, 9614, 9614, 9614, 9614, 9614, 9614, 9614, 9614, 9614, 9614, 9614, 9614, 9614, 9614, 9614, 9614, 9614, 0, 0, 0, 0, 0, 9614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9614, 9614, 9614, 9614, 9618, 9618, 9618, 9618, 9618, 9618, 9618, 9618, 9618, 0, 0, 0, 0, 0, 0, 0, 9618, 9618, 9618, 9618, 9618, 9618, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9618, 9618, 9618, 9618, 9618, 9618, 9621, 9621, 0, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9621, 9622, 9622, 0, 9622, 9622, 9622, 9622, 9622, 9622, 0, 9622, 9622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9622, 9622, 9622, 9622, 9622, 9622, 9622, 0, 0, 0, 0, 0, 9622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9622, 9622, 9622, 9623, 9623, 0, 9623, 9623, 9623, 9623, 9623, 9623, 0, 9623, 9623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9623, 9623, 9623, 9623, 9623, 9623, 9623, 0, 0, 0, 0, 0, 9623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9623, 9623, 9623, 9624, 9624, 0, 9624, 9624, 9624, 9624, 9624, 9624, 0, 9624, 9624, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9624, 9624, 9624, 9624, 9624, 9624, 9624, 9624, 0, 0, 0, 0, 9624, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9624, 9624, 9624, 9627, 9627, 0, 9627, 9627, 9627, 9627, 9627, 9627, 0, 9627, 9627, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9627, 9627, 9627, 9627, 9627, 9627, 9627, 0, 0, 0, 0, 0, 9627, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9627, 9627, 9627, 9628, 9628, 0, 9628, 9628, 9628, 9628, 9628, 9628, 0, 9628, 9628, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9628, 9628, 9628, 9628, 9628, 9628, 9628, 9628, 0, 0, 0, 0, 9628, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9628, 9628, 9628, 9630, 9630, 0, 9630, 9630, 9630, 9630, 9630, 9630, 0, 9630, 9630, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9630, 9630, 9630, 9630, 9630, 9630, 9630, 0, 0, 0, 0, 0, 9630, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9630, 9630, 9630, 9631, 9631, 0, 9631, 9631, 9631, 9631, 9631, 9631, 0, 9631, 9631, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9631, 9631, 9631, 9631, 9631, 9631, 9631, 9631, 0, 0, 0, 0, 9631, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9631, 9631, 9631, 9632, 9632, 0, 9632, 9632, 9632, 9632, 9632, 9632, 0, 9632, 9632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9632, 9632, 9632, 9632, 9632, 9632, 9632, 0, 0, 0, 0, 0, 9632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9632, 0, 0, 9632, 9632, 9632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9632, 9633, 9633, 0, 9633, 9633, 9633, 9633, 9633, 9633, 0, 9633, 9633, 9633, 9633, 9633, 9633, 9633, 9633, 9633, 9633, 9633, 9633, 9633, 9633, 9633, 9633, 9633, 9633, 0, 0, 0, 0, 0, 9633, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9633, 9633, 9633, 9634, 9634, 0, 9634, 9634, 9634, 9634, 9634, 9634, 0, 9634, 9634, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9634, 9634, 9634, 9634, 9634, 9634, 9634, 9634, 0, 0, 0, 0, 9634, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9634, 9634, 9634, 9635, 9635, 0, 9635, 9635, 9635, 9635, 9635, 9635, 0, 9635, 9635, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9635, 9635, 9635, 9635, 9635, 9635, 9635, 0, 0, 0, 0, 0, 9635, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9635, 9635, 9635, 9636, 9636, 0, 9636, 9636, 9636, 9636, 9636, 9636, 0, 9636, 9636, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9636, 9636, 9636, 9636, 9636, 9636, 9636, 9636, 0, 0, 0, 0, 9636, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9636, 9636, 9636, 9637, 9637, 0, 9637, 9637, 9637, 9637, 9637, 9637, 0, 9637, 9637, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9637, 9637, 9637, 9637, 9637, 9637, 9637, 0, 0, 0, 0, 0, 9637, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9637, 0, 0, 9637, 9637, 9637, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9637, 9639, 9639, 0, 9639, 9639, 9639, 9639, 9639, 9639, 0, 9639, 9639, 9639, 9639, 9639, 9639, 9639, 9639, 9639, 9639, 9639, 9639, 9639, 9639, 9639, 9639, 9639, 9639, 0, 0, 0, 0, 0, 9639, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9639, 9639, 9639, 9639, 9640, 9640, 0, 9640, 9640, 9640, 9640, 9640, 9640, 0, 9640, 9640, 9640, 9640, 9640, 9640, 9640, 9640, 9640, 9640, 9640, 9640, 9640, 9640, 9640, 9640, 9640, 9640, 0, 0, 0, 0, 0, 9640, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9640, 9640, 9640, 9640, 9647, 9647, 9647, 9647, 9647, 9647, 9647, 9647, 9647, 9647, 0, 0, 0, 0, 0, 0, 9647, 9647, 9647, 9647, 9647, 9647, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9647, 9647, 9647, 9647, 9647, 9647, 9649, 9649, 9649, 9649, 9649, 9649, 9649, 9649, 9649, 9649, 0, 0, 0, 0, 0, 0, 9649, 9649, 9649, 9649, 9649, 9649, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9649, 9649, 9649, 9649, 9649, 9649, 9652, 0, 0, 0, 0, 0, 0, 0, 0, 9652, 9652, 9652, 9652, 9652, 9652, 9652, 9652, 9652, 9652, 0, 0, 0, 0, 0, 0, 9652, 9652, 9652, 9652, 9652, 9652, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9652, 9652, 9652, 9652, 9652, 9652, 9658, 9658, 9658, 9658, 9658, 9658, 9658, 9658, 9658, 9658, 0, 0, 0, 0, 0, 0, 9658, 9658, 9658, 9658, 9658, 9658, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9658, 9658, 9658, 9658, 9658, 9658, 9661, 9661, 9661, 9661, 9661, 9661, 9661, 9661, 9661, 9661, 0, 0, 0, 0, 0, 0, 9661, 9661, 9661, 9661, 9661, 9661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9661, 9661, 9661, 9661, 9661, 9661, 9669, 9669, 0, 9669, 9669, 9669, 9669, 9669, 9669, 0, 9669, 9669, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9669, 9669, 9669, 9669, 9669, 9669, 9669, 0, 0, 0, 0, 0, 9669, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9669, 9669, 9669, 9674, 9674, 9674, 9674, 9674, 9674, 9674, 9674, 9674, 9674, 0, 0, 0, 0, 0, 0, 9674, 9674, 9674, 9674, 9674, 9674, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9674, 9674, 9674, 9674, 9674, 9674, 9676, 9676, 9676, 9676, 9676, 9676, 9676, 9676, 9676, 0, 0, 0, 0, 0, 0, 0, 9676, 9676, 9676, 9676, 9676, 9676, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9676, 9676, 9676, 9676, 9676, 9676, 9684, 9684, 0, 9684, 9684, 9684, 9684, 9684, 9684, 0, 9684, 9684, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9684, 9684, 9684, 9684, 9684, 9684, 9684, 0, 0, 0, 0, 0, 9684, 0, 0, 0, 0, 0, 0, 0, 0, 9684, 0, 0, 0, 0, 0, 0, 0, 9684, 9684, 9684, 9685, 9685, 0, 9685, 9685, 9685, 9685, 9685, 9685, 0, 9685, 9685, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9685, 9685, 9685, 9685, 9685, 9685, 9685, 0, 0, 0, 0, 0, 9685, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9685, 9685, 9685, 9685, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9685, 9686, 9686, 0, 9686, 9686, 9686, 9686, 9686, 9686, 0, 9686, 9686, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9686, 9686, 9686, 9686, 9686, 9686, 9686, 0, 0, 0, 0, 0, 9686, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9686, 9686, 9686, 9687, 9687, 0, 9687, 9687, 9687, 9687, 9687, 9687, 0, 9687, 9687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9687, 9687, 9687, 9687, 9687, 9687, 9687, 9687, 0, 0, 0, 0, 9687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9687, 9687, 9687, 9689, 9689, 0, 9689, 9689, 9689, 9689, 9689, 9689, 0, 9689, 9689, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9689, 9689, 9689, 9689, 9689, 9689, 9689, 0, 0, 0, 0, 0, 9689, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9689, 9689, 9689, 9690, 9690, 0, 9690, 9690, 9690, 9690, 9690, 9690, 0, 9690, 9690, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9690, 9690, 9690, 9690, 9690, 9690, 9690, 9690, 0, 0, 0, 0, 9690, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9690, 9690, 9690, 9692, 9692, 0, 9692, 9692, 9692, 9692, 9692, 9692, 0, 9692, 9692, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9692, 9692, 9692, 9692, 9692, 9692, 9692, 0, 0, 0, 0, 0, 9692, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9692, 9692, 9692, 9693, 9693, 0, 9693, 9693, 9693, 9693, 9693, 9693, 0, 9693, 9693, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9693, 9693, 9693, 9693, 9693, 9693, 9693, 9693, 0, 0, 0, 0, 9693, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9693, 9693, 9693, 9694, 9694, 0, 9694, 9694, 9694, 9694, 9694, 9694, 0, 9694, 9694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9694, 9694, 9694, 9694, 9694, 9694, 9694, 0, 0, 0, 0, 0, 9694, 0, 9694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9694, 9694, 9694, 0, 0, 0, 0, 0, 0, 0, 0, 9694, 9699, 9699, 0, 9699, 9699, 9699, 9699, 9699, 9699, 0, 9699, 9699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9699, 9699, 9699, 9699, 9699, 9699, 9699, 0, 0, 0, 0, 0, 9699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9699, 9699, 9699, 9700, 9700, 0, 9700, 9700, 9700, 9700, 9700, 9700, 0, 9700, 9700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9700, 9700, 9700, 9700, 9700, 9700, 9700, 9700, 0, 0, 0, 0, 9700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9700, 9700, 9700, 9702, 9702, 0, 9702, 9702, 9702, 9702, 9702, 9702, 9702, 9702, 9702, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9702, 9702, 9702, 9702, 9702, 9702, 9702, 0, 0, 0, 0, 0, 9702, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9702, 9702, 9702, 9702, 9703, 9703, 0, 9703, 9703, 9703, 9703, 9703, 9703, 0, 9703, 9703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9703, 9703, 9703, 9703, 9703, 9703, 9703, 0, 0, 0, 0, 0, 9703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9703, 9703, 9703, 9704, 9704, 0, 9704, 9704, 9704, 9704, 9704, 9704, 0, 9704, 9704, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9704, 9704, 9704, 9704, 9704, 9704, 9704, 9704, 0, 0, 0, 0, 9704, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9704, 9704, 9704, 9708, 9708, 0, 9708, 9708, 9708, 9708, 9708, 9708, 0, 9708, 9708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9708, 9708, 9708, 9708, 9708, 9708, 9708, 0, 0, 0, 0, 0, 9708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9708, 9708, 9708, 9709, 9709, 0, 9709, 9709, 9709, 9709, 9709, 9709, 0, 9709, 9709, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9709, 9709, 9709, 9709, 9709, 9709, 9709, 9709, 0, 0, 0, 0, 9709, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9709, 9709, 9709, 9711, 9711, 0, 9711, 9711, 9711, 9711, 9711, 9711, 0, 9711, 9711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9711, 9711, 9711, 9711, 9711, 9711, 9711, 0, 0, 0, 0, 0, 9711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9711, 9711, 9711, 9712, 9712, 0, 9712, 9712, 9712, 9712, 9712, 9712, 0, 9712, 9712, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9712, 9712, 9712, 9712, 9712, 9712, 9712, 9712, 0, 0, 0, 0, 9712, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9712, 9712, 9712, 9713, 9713, 0, 9713, 9713, 9713, 9713, 9713, 9713, 0, 9713, 9713, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9713, 9713, 9713, 9713, 9713, 9713, 9713, 0, 0, 0, 0, 0, 9713, 0, 9713, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9713, 9713, 9713, 0, 0, 0, 0, 0, 0, 0, 0, 9713, 9717, 9717, 0, 9717, 9717, 9717, 9717, 9717, 9717, 9717, 9717, 9717, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9717, 9717, 9717, 9717, 9717, 9717, 9717, 0, 0, 0, 0, 0, 9717, 0, 0, 0, 0, 0, 9717, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9717, 9717, 9717, 9717, 9718, 9718, 0, 9718, 9718, 9718, 9718, 9718, 9718, 9718, 9718, 9718, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9718, 9718, 9718, 9718, 9718, 9718, 9718, 0, 0, 0, 0, 0, 9718, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9718, 9718, 9718, 9718, 9719, 9719, 0, 9719, 9719, 9719, 9719, 9719, 9719, 0, 9719, 9719, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9719, 9719, 9719, 9719, 9719, 9719, 9719, 0, 0, 0, 0, 0, 9719, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9719, 9719, 9719, 9720, 9720, 0, 9720, 9720, 9720, 9720, 9720, 9720, 0, 9720, 9720, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9720, 9720, 9720, 9720, 9720, 9720, 9720, 9720, 0, 0, 0, 0, 9720, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9720, 9720, 9720, 9726, 9726, 0, 9726, 9726, 9726, 9726, 9726, 9726, 9726, 9726, 9726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9726, 9726, 9726, 9726, 9726, 9726, 9726, 0, 0, 0, 0, 0, 9726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9726, 9726, 9726, 9726, 9727, 9727, 0, 9727, 9727, 9727, 9727, 9727, 9727, 0, 9727, 9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9727, 9727, 9727, 9727, 9727, 9727, 9727, 0, 0, 0, 0, 0, 9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9727, 9727, 9727, 9728, 9728, 0, 9728, 9728, 9728, 9728, 9728, 9728, 0, 9728, 9728, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9728, 9728, 9728, 9728, 9728, 9728, 9728, 9728, 0, 0, 0, 0, 9728, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9728, 9728, 9728, 9733, 9733, 0, 9733, 9733, 9733, 9733, 9733, 9733, 9733, 9733, 9733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9733, 9733, 9733, 9733, 9733, 9733, 9733, 0, 0, 0, 0, 0, 9733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9733, 9733, 9733, 9733, 9734, 9734, 0, 9734, 9734, 9734, 9734, 9734, 9734, 0, 9734, 9734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9734, 9734, 9734, 9734, 9734, 9734, 9734, 0, 0, 0, 0, 0, 9734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9734, 9734, 9734, 9735, 9735, 0, 9735, 9735, 9735, 9735, 9735, 9735, 0, 9735, 9735, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9735, 9735, 9735, 9735, 9735, 9735, 9735, 9735, 0, 0, 0, 0, 9735, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9735, 9735, 9735, 9739, 9739, 0, 9739, 9739, 9739, 9739, 9739, 9739, 0, 9739, 9739, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9739, 9739, 9739, 9739, 9739, 9739, 9739, 0, 0, 0, 0, 0, 9739, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9739, 9739, 9739, 9740, 9740, 0, 9740, 9740, 9740, 9740, 9740, 9740, 0, 9740, 9740, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9740, 9740, 9740, 9740, 9740, 9740, 9740, 9740, 0, 0, 0, 0, 9740, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9740, 9740, 9740, 9741, 9741, 0, 9741, 9741, 9741, 9741, 9741, 9741, 9741, 9741, 9741, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9741, 9741, 9741, 9741, 9741, 9741, 9741, 9741, 0, 0, 0, 0, 9741, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9741, 9741, 9741, 9741, 9741, 9742, 9742, 0, 9742, 9742, 9742, 9742, 9742, 9742, 0, 9742, 9742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9742, 9742, 9742, 9742, 9742, 9742, 9742, 0, 0, 0, 0, 0, 9742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9742, 9742, 9742, 9743, 9743, 0, 9743, 9743, 9743, 9743, 9743, 9743, 0, 9743, 9743, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9743, 9743, 9743, 9743, 9743, 9743, 9743, 9743, 0, 0, 0, 0, 9743, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9743, 9743, 9743, 9744, 9744, 0, 9744, 9744, 9744, 9744, 9744, 9744, 0, 9744, 9744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9744, 9744, 9744, 9744, 9744, 9744, 9744, 0, 0, 0, 0, 0, 9744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9744, 9744, 9744, 9745, 9745, 0, 9745, 9745, 9745, 9745, 9745, 9745, 0, 9745, 9745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9745, 9745, 9745, 9745, 9745, 9745, 9745, 9745, 0, 0, 0, 0, 9745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9745, 9745, 9745, 9748, 9748, 0, 9748, 9748, 9748, 9748, 9748, 9748, 9748, 9748, 9748, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9748, 9748, 9748, 9748, 9748, 9748, 9748, 0, 0, 0, 0, 0, 9748, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9748, 9748, 9748, 9748, 9749, 9749, 0, 9749, 9749, 9749, 9749, 9749, 9749, 0, 9749, 9749, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9749, 9749, 9749, 9749, 9749, 9749, 9749, 0, 0, 0, 0, 0, 9749, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9749, 9749, 9749, 9750, 9750, 0, 9750, 9750, 9750, 9750, 9750, 9750, 0, 9750, 9750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9750, 9750, 9750, 9750, 9750, 9750, 9750, 9750, 0, 0, 0, 0, 9750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9750, 9750, 9750, 9754, 9754, 0, 9754, 9754, 9754, 9754, 9754, 9754, 0, 9754, 9754, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9754, 9754, 9754, 9754, 9754, 9754, 9754, 0, 0, 0, 0, 0, 9754, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9754, 9754, 9754, 9755, 9755, 0, 9755, 9755, 9755, 9755, 9755, 9755, 0, 9755, 9755, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9755, 9755, 9755, 9755, 9755, 9755, 9755, 9755, 0, 0, 0, 0, 9755, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9755, 9755, 9755, 9756, 9756, 0, 9756, 9756, 9756, 9756, 9756, 9756, 9756, 9756, 9756, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9756, 9756, 9756, 9756, 9756, 9756, 9756, 9756, 0, 0, 0, 0, 9756, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9756, 9756, 9756, 9756, 9756, 9757, 9757, 0, 9757, 9757, 9757, 9757, 9757, 9757, 0, 9757, 9757, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9757, 9757, 9757, 9757, 9757, 9757, 9757, 0, 0, 0, 0, 0, 9757, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9757, 9757, 9757, 9757, 9758, 9758, 0, 9758, 9758, 9758, 9758, 9758, 9758, 0, 9758, 9758, 9758, 9758, 9758, 9758, 9758, 9758, 9758, 9758, 9758, 9758, 9758, 9758, 9758, 9758, 9758, 9758, 0, 0, 0, 0, 0, 9758, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9758, 9758, 9758, 9758, 9761, 9761, 9761, 9761, 9761, 9761, 9761, 9761, 9761, 9761, 0, 0, 0, 0, 0, 0, 9761, 9761, 9761, 9761, 9761, 9761, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9761, 9761, 9761, 9761, 9761, 9761, 9762, 9762, 9762, 9762, 9762, 9762, 9762, 9762, 9762, 9762, 0, 0, 0, 0, 0, 0, 9762, 9762, 9762, 9762, 9762, 9762, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9762, 9762, 9762, 9762, 9762, 9762, 9764, 9764, 9764, 9764, 9764, 9764, 9764, 9764, 9764, 9764, 0, 0, 0, 0, 0, 0, 9764, 9764, 9764, 9764, 9764, 9764, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9764, 9764, 9764, 9764, 9764, 9764, 9766, 0, 0, 0, 0, 0, 0, 0, 0, 9766, 9766, 9766, 9766, 9766, 9766, 9766, 9766, 9766, 0, 0, 0, 0, 0, 0, 0, 9766, 9766, 9766, 9766, 9766, 9766, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9766, 9766, 9766, 9766, 9766, 9766, 9770, 9770, 9770, 9770, 9770, 9770, 9770, 9770, 9770, 9770, 0, 0, 0, 0, 0, 0, 9770, 9770, 9770, 9770, 9770, 9770, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9770, 9770, 9770, 9770, 9770, 9770, 9772, 9772, 9772, 9772, 9772, 9772, 9772, 9772, 9772, 0, 0, 0, 0, 0, 0, 0, 9772, 9772, 9772, 9772, 9772, 9772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9772, 9772, 9772, 9772, 9772, 9772, 9782, 9782, 9782, 9782, 9782, 9782, 9782, 9782, 9782, 9782, 0, 0, 0, 0, 0, 0, 9782, 9782, 9782, 9782, 9782, 9782, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9782, 9782, 9782, 9782, 9782, 9782, 9784, 9784, 9784, 9784, 9784, 9784, 9784, 9784, 9784, 0, 0, 0, 0, 0, 0, 0, 9784, 9784, 9784, 9784, 9784, 9784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9784, 9784, 9784, 9784, 9784, 9784, 9792, 9792, 9792, 9792, 9792, 9792, 9792, 9792, 9792, 9792, 0, 0, 0, 0, 0, 0, 9792, 9792, 9792, 9792, 9792, 9792, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9792, 9792, 9792, 9792, 9792, 9792, 9795, 9795, 9795, 9795, 9795, 9795, 9795, 9795, 9795, 9795, 0, 0, 0, 0, 0, 0, 9795, 9795, 9795, 9795, 9795, 9795, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9795, 9795, 9795, 9795, 9795, 9795, 9803, 9803, 9803, 9803, 9803, 9803, 9803, 9803, 9803, 0, 0, 0, 0, 0, 0, 0, 9803, 9803, 9803, 9803, 9803, 9803, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9803, 9803, 9803, 9803, 9803, 9803, 9804, 9804, 0, 9804, 9804, 9804, 9804, 9804, 9804, 9804, 9804, 9804, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9804, 9804, 9804, 9804, 9804, 9804, 9804, 0, 0, 0, 0, 0, 9804, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9804, 9804, 9804, 9804, 9805, 9805, 0, 9805, 9805, 9805, 9805, 9805, 9805, 0, 9805, 9805, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9805, 9805, 9805, 9805, 9805, 9805, 9805, 0, 0, 0, 0, 0, 9805, 9805, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9805, 9805, 9805, 9806, 9806, 0, 9806, 9806, 9806, 9806, 9806, 9806, 0, 9806, 9806, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9806, 9806, 9806, 9806, 9806, 9806, 9806, 0, 0, 0, 0, 0, 9806, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9806, 9806, 9806, 9807, 9807, 0, 9807, 9807, 9807, 9807, 9807, 9807, 0, 9807, 9807, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9807, 9807, 9807, 9807, 9807, 9807, 9807, 9807, 0, 0, 0, 0, 9807, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9807, 9807, 9807, 9810, 9810, 0, 9810, 9810, 9810, 9810, 9810, 9810, 0, 9810, 9810, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9810, 9810, 9810, 9810, 9810, 9810, 9810, 0, 0, 0, 0, 0, 9810, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9810, 9810, 9810, 9811, 9811, 0, 9811, 9811, 9811, 9811, 9811, 9811, 0, 9811, 9811, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9811, 9811, 9811, 9811, 9811, 9811, 9811, 0, 0, 0, 0, 0, 9811, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9811, 0, 0, 0, 0, 9811, 9811, 9811, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9811, 9812, 9812, 0, 9812, 9812, 9812, 9812, 9812, 9812, 0, 9812, 9812, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9812, 9812, 9812, 9812, 9812, 9812, 9812, 9812, 0, 0, 0, 0, 9812, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9812, 9812, 9812, 9815, 9815, 0, 9815, 9815, 9815, 9815, 9815, 9815, 0, 9815, 9815, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9815, 9815, 9815, 9815, 9815, 9815, 9815, 0, 0, 0, 0, 0, 9815, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9815, 9815, 9815, 9816, 9816, 0, 9816, 9816, 9816, 9816, 9816, 9816, 0, 9816, 9816, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9816, 9816, 9816, 9816, 9816, 9816, 9816, 9816, 0, 0, 0, 0, 9816, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9816, 9816, 9816, 9818, 9818, 0, 9818, 9818, 9818, 9818, 9818, 9818, 0, 9818, 9818, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9818, 9818, 9818, 9818, 9818, 9818, 9818, 0, 0, 0, 0, 0, 9818, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9818, 9818, 9818, 9819, 9819, 0, 9819, 9819, 9819, 9819, 9819, 9819, 0, 9819, 9819, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9819, 9819, 9819, 9819, 9819, 9819, 9819, 9819, 0, 0, 0, 0, 9819, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9819, 9819, 9819, 9820, 9820, 0, 9820, 9820, 9820, 9820, 9820, 9820, 0, 9820, 9820, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9820, 9820, 9820, 9820, 9820, 9820, 9820, 0, 0, 0, 0, 0, 9820, 9820, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9820, 9820, 9820, 0, 0, 0, 0, 0, 0, 0, 9820, 9821, 9821, 0, 9821, 9821, 9821, 9821, 9821, 9821, 0, 9821, 9821, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9821, 9821, 9821, 9821, 9821, 9821, 9821, 0, 0, 0, 0, 0, 9821, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9821, 9821, 9821, 9822, 9822, 0, 9822, 9822, 9822, 9822, 9822, 9822, 0, 9822, 9822, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9822, 9822, 9822, 9822, 9822, 9822, 9822, 0, 0, 0, 0, 0, 9822, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9822, 9822, 9822, 9823, 9823, 0, 9823, 9823, 9823, 9823, 9823, 9823, 0, 9823, 9823, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9823, 9823, 9823, 9823, 9823, 9823, 9823, 0, 0, 0, 0, 0, 9823, 9823, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9823, 9823, 9823, 0, 0, 0, 0, 0, 0, 0, 9823, 9825, 9825, 0, 9825, 9825, 9825, 9825, 9825, 9825, 0, 9825, 9825, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9825, 9825, 9825, 9825, 9825, 9825, 9825, 0, 0, 0, 0, 0, 9825, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9825, 9825, 9825, 9826, 9826, 0, 9826, 9826, 9826, 9826, 9826, 9826, 0, 9826, 9826, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9826, 9826, 9826, 9826, 9826, 9826, 9826, 9826, 0, 0, 0, 0, 9826, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9826, 9826, 9826, 9830, 9830, 0, 9830, 9830, 9830, 9830, 9830, 9830, 0, 9830, 9830, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9830, 9830, 9830, 9830, 9830, 9830, 9830, 0, 0, 0, 0, 0, 9830, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9830, 9830, 9830, 9831, 9831, 0, 9831, 9831, 9831, 9831, 9831, 9831, 0, 9831, 9831, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9831, 9831, 9831, 9831, 9831, 9831, 9831, 9831, 0, 0, 0, 0, 9831, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9831, 9831, 9831, 9835, 9835, 0, 9835, 9835, 9835, 9835, 9835, 9835, 0, 9835, 9835, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9835, 9835, 9835, 9835, 9835, 9835, 9835, 0, 0, 0, 0, 0, 9835, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9835, 9835, 9835, 9836, 9836, 0, 9836, 9836, 9836, 9836, 9836, 9836, 0, 9836, 9836, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9836, 9836, 9836, 9836, 9836, 9836, 9836, 9836, 0, 0, 0, 0, 9836, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9836, 9836, 9836, 9839, 9839, 0, 9839, 9839, 9839, 9839, 9839, 9839, 0, 9839, 9839, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9839, 9839, 9839, 9839, 9839, 9839, 9839, 0, 0, 0, 0, 0, 9839, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9839, 9839, 9839, 9840, 9840, 0, 9840, 9840, 9840, 9840, 9840, 9840, 0, 9840, 9840, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9840, 9840, 9840, 9840, 9840, 9840, 9840, 9840, 0, 0, 0, 0, 9840, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9840, 9840, 9840, 9842, 9842, 0, 9842, 9842, 9842, 9842, 9842, 9842, 0, 9842, 9842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9842, 9842, 9842, 9842, 9842, 9842, 9842, 0, 0, 0, 0, 0, 9842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9842, 0, 0, 0, 0, 0, 9842, 9842, 9842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9842, 9843, 9843, 0, 9843, 9843, 9843, 9843, 9843, 9843, 0, 9843, 9843, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9843, 9843, 9843, 9843, 9843, 9843, 9843, 0, 0, 0, 0, 0, 9843, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9843, 9843, 9843, 9844, 9844, 0, 9844, 9844, 9844, 9844, 9844, 9844, 0, 9844, 9844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9844, 9844, 9844, 9844, 9844, 9844, 9844, 9844, 0, 0, 0, 0, 9844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9844, 9844, 9844, 9845, 9845, 0, 9845, 9845, 9845, 9845, 9845, 9845, 0, 9845, 9845, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9845, 9845, 9845, 9845, 9845, 9845, 9845, 0, 0, 0, 0, 0, 9845, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9845, 9845, 9845, 9846, 9846, 0, 9846, 9846, 9846, 9846, 9846, 9846, 0, 9846, 9846, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9846, 9846, 9846, 9846, 9846, 9846, 9846, 9846, 0, 0, 0, 0, 9846, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9846, 9846, 9846, 9849, 9849, 0, 9849, 9849, 9849, 9849, 9849, 9849, 0, 9849, 9849, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 0, 0, 0, 0, 0, 9849, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9849, 9849, 9849, 9850, 9850, 0, 9850, 9850, 9850, 9850, 9850, 9850, 0, 9850, 9850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 0, 0, 0, 0, 9850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9850, 9850, 9850, 9853, 9853, 0, 9853, 9853, 9853, 9853, 9853, 9853, 0, 9853, 9853, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9853, 9853, 9853, 9853, 9853, 9853, 9853, 0, 0, 0, 0, 0, 9853, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9853, 9853, 9853, 9854, 9854, 0, 9854, 9854, 9854, 9854, 9854, 9854, 0, 9854, 9854, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9854, 9854, 9854, 9854, 9854, 9854, 9854, 9854, 0, 0, 0, 0, 9854, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9854, 9854, 9854, 9856, 9856, 0, 9856, 9856, 9856, 9856, 9856, 9856, 0, 9856, 9856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 0, 0, 0, 0, 0, 9856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9856, 0, 0, 0, 0, 0, 9856, 9856, 9856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9856, 9857, 9857, 0, 9857, 9857, 9857, 9857, 9857, 9857, 0, 9857, 9857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9857, 9857, 9857, 9857, 9857, 9857, 9857, 0, 0, 0, 0, 0, 9857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9857, 9857, 9857, 9858, 9858, 0, 9858, 9858, 9858, 9858, 9858, 9858, 0, 9858, 9858, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9858, 9858, 9858, 9858, 9858, 9858, 9858, 9858, 0, 0, 0, 0, 9858, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9858, 9858, 9858, 9859, 9859, 0, 9859, 9859, 9859, 9859, 9859, 9859, 0, 9859, 9859, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9859, 9859, 9859, 9859, 9859, 9859, 9859, 0, 0, 0, 0, 0, 9859, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9859, 9859, 9859, 9859, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9859, 9890, 9890, 0, 9890, 9890, 9890, 9890, 9890, 9890, 0, 9890, 9890, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9890, 9890, 9890, 9890, 9890, 9890, 9890, 0, 0, 0, 0, 0, 9890, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9890, 9890, 9890, 9891, 9891, 0, 9891, 9891, 9891, 9891, 9891, 9891, 0, 9891, 9891, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9891, 9891, 9891, 9891, 9891, 9891, 9891, 9891, 0, 0, 0, 0, 9891, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9891, 9891, 9891, 9895, 9895, 0, 9895, 9895, 9895, 9895, 9895, 9895, 0, 9895, 9895, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9895, 9895, 9895, 9895, 9895, 9895, 9895, 0, 0, 0, 0, 0, 9895, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9895, 9895, 9895, 9896, 9896, 0, 9896, 9896, 9896, 9896, 9896, 9896, 0, 9896, 9896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9896, 9896, 9896, 9896, 9896, 9896, 9896, 9896, 0, 0, 0, 0, 9896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9896, 9896, 9896, 9910, 9910, 0, 9910, 9910, 9910, 9910, 9910, 9910, 0, 9910, 9910, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9910, 9910, 9910, 9910, 9910, 9910, 9910, 0, 0, 0, 0, 0, 9910, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9910, 9910, 9910, 9911, 9911, 0, 9911, 9911, 9911, 9911, 9911, 9911, 0, 9911, 9911, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 0, 0, 0, 0, 9911, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9911, 9911, 9911, 9925, 9925, 0, 9925, 9925, 9925, 9925, 9925, 9925, 0, 9925, 9925, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9925, 9925, 9925, 9925, 9925, 9925, 9925, 0, 0, 0, 0, 0, 9925, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9925, 9925, 9925, 9926, 9926, 0, 9926, 9926, 9926, 9926, 9926, 9926, 0, 9926, 9926, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9926, 9926, 9926, 9926, 9926, 9926, 9926, 9926, 0, 0, 0, 0, 9926, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9926, 9926, 9926, 9946, 9946, 0, 9946, 9946, 9946, 9946, 9946, 9946, 9946, 9946, 9946, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9946, 9946, 9946, 9946, 9946, 9946, 9946, 0, 0, 0, 0, 0, 9946, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9946, 9946, 9946, 9946, 0, 0, 0, 0, 0, 9946, 9951, 9951, 0, 9951, 9951, 9951, 9951, 9951, 9951, 0, 9951, 9951, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9951, 9951, 9951, 9951, 9951, 9951, 9951, 0, 0, 0, 0, 0, 9951, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9951, 9951, 9951, 0, 0, 0, 9951, 9952, 9952, 0, 9952, 9952, 9952, 9952, 9952, 9952, 0, 9952, 9952, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9952, 9952, 9952, 9952, 9952, 9952, 9952, 9952, 0, 0, 0, 0, 9952, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9952, 9952, 9952, 0, 0, 0, 9952, 9956, 9956, 0, 9956, 9956, 9956, 9956, 9956, 9956, 0, 9956, 9956, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9956, 9956, 9956, 9956, 9956, 9956, 9956, 0, 0, 0, 0, 0, 9956, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9956, 9956, 9956, 0, 0, 0, 9956, 9957, 9957, 0, 9957, 9957, 9957, 9957, 9957, 9957, 0, 9957, 9957, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9957, 9957, 9957, 9957, 9957, 9957, 9957, 9957, 0, 0, 0, 0, 9957, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9957, 9957, 9957, 0, 0, 0, 9957, 9960, 9960, 0, 9960, 9960, 9960, 9960, 9960, 9960, 0, 9960, 9960, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9960, 9960, 9960, 9960, 9960, 9960, 9960, 0, 0, 0, 0, 0, 9960, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9960, 9960, 9960, 0, 0, 0, 9960, 9961, 9961, 0, 9961, 9961, 9961, 9961, 9961, 9961, 0, 9961, 9961, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9961, 9961, 9961, 9961, 9961, 9961, 9961, 9961, 0, 0, 0, 0, 9961, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9961, 9961, 9961, 0, 0, 0, 9961, 9962, 9962, 0, 9962, 9962, 9962, 9962, 9962, 9962, 0, 9962, 9962, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9962, 9962, 9962, 9962, 9962, 9962, 9962, 0, 0, 0, 0, 0, 9962, 0, 9962, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9962, 9962, 9962, 0, 0, 0, 9962, 0, 0, 0, 0, 9962, 9966, 9966, 9966, 9966, 9966, 9966, 9966, 9966, 9966, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9966, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9966, 0, 0, 0, 9966, 9971, 0, 0, 0, 0, 0, 0, 0, 0, 9971, 9971, 9971, 9971, 9971, 9971, 9971, 9971, 9971, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9971, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9971, 9972, 9972, 0, 9972, 9972, 9972, 9972, 9972, 9972, 0, 9972, 9972, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9972, 9972, 9972, 9972, 9972, 9972, 9972, 0, 0, 0, 0, 0, 9972, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9972, 9972, 9972, 0, 0, 0, 9972, 9973, 9973, 0, 9973, 9973, 9973, 9973, 9973, 9973, 0, 9973, 9973, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9973, 9973, 9973, 9973, 9973, 9973, 9973, 9973, 0, 0, 0, 0, 9973, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9973, 9973, 9973, 0, 0, 0, 9973, 9980, 9980, 0, 9980, 9980, 9980, 9980, 9980, 9980, 0, 9980, 9980, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9980, 9980, 9980, 9980, 9980, 9980, 9980, 0, 0, 0, 0, 0, 9980, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9980, 9980, 9980, 0, 0, 0, 9980, 9981, 9981, 0, 9981, 9981, 9981, 9981, 9981, 9981, 0, 9981, 9981, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9981, 9981, 9981, 9981, 9981, 9981, 9981, 9981, 0, 0, 0, 0, 9981, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9981, 9981, 9981, 0, 0, 0, 9981, 9986, 9986, 0, 9986, 9986, 9986, 9986, 9986, 9986, 0, 9986, 9986, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9986, 9986, 9986, 9986, 9986, 9986, 9986, 0, 0, 0, 0, 0, 9986, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9986, 9986, 9986, 0, 0, 0, 9986, 9987, 9987, 0, 9987, 9987, 9987, 9987, 9987, 9987, 0, 9987, 9987, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9987, 9987, 9987, 9987, 9987, 9987, 9987, 9987, 0, 0, 0, 0, 9987, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9987, 9987, 9987, 0, 0, 0, 9987, 9990, 9990, 0, 9990, 9990, 9990, 9990, 9990, 9990, 0, 9990, 9990, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9990, 9990, 9990, 9990, 9990, 9990, 9990, 0, 0, 0, 0, 0, 9990, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9990, 9990, 9990, 0, 0, 0, 9990, 9991, 9991, 0, 9991, 9991, 9991, 9991, 9991, 9991, 0, 9991, 9991, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9991, 9991, 9991, 9991, 9991, 9991, 9991, 9991, 0, 0, 0, 0, 9991, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9991, 9991, 9991, 0, 0, 0, 9991, 9992, 9992, 0, 9992, 9992, 9992, 9992, 9992, 9992, 9992, 9992, 9992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9992, 9992, 9992, 9992, 9992, 9992, 9992, 9992, 0, 0, 0, 0, 9992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9992, 9992, 9992, 9992, 9992, 0, 9992, 9995, 9995, 0, 9995, 9995, 9995, 9995, 9995, 9995, 0, 9995, 9995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9995, 9995, 9995, 9995, 9995, 9995, 9995, 0, 0, 0, 0, 0, 9995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9995, 9995, 9995, 0, 0, 0, 9995, 9996, 9996, 0, 9996, 9996, 9996, 9996, 9996, 9996, 0, 9996, 9996, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9996, 9996, 9996, 9996, 9996, 9996, 9996, 9996, 0, 0, 0, 0, 9996, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9996, 9996, 9996, 0, 0, 0, 9996,10002,10002, 0,10002,10002,10002,10002,10002, 10002, 0,10002,10002, 0, 0, 0, 0, 0, 0, 0, 0, 0,10002,10002,10002,10002,10002,10002,10002, 0, 0, 0, 0, 0,10002, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10002,10002,10002, 0, 0, 0,10002,10003, 10003, 0,10003,10003,10003,10003,10003,10003, 0,10003, 10003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10003,10003,10003,10003,10003,10003,10003,10003, 0, 0, 0, 0,10003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10003, 10003,10003, 0, 0, 0,10003,10006,10006, 0,10006, 10006,10006,10006,10006,10006, 0,10006,10006, 0, 0, 0, 0, 0, 0, 0, 0, 0,10006,10006,10006, 10006,10006,10006,10006, 0, 0, 0, 0, 0,10006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10006,10006,10006, 0, 0, 0,10006,10007,10007, 0,10007,10007,10007,10007, 10007,10007, 0,10007,10007, 0, 0, 0, 0, 0, 0, 0, 0, 0,10007,10007,10007,10007,10007,10007, 10007,10007, 0, 0, 0, 0,10007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10007,10007,10007, 0, 0, 0,10007, 10008,10008, 0,10008,10008,10008,10008,10008,10008,10008, 10008,10008, 0, 0, 0, 0, 0, 0, 0, 0, 0,10008,10008,10008,10008,10008,10008,10008,10008, 0, 0, 0, 0,10008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10008,10008,10008,10008,10008, 0,10008,10014,10014, 0, 10014,10014,10014,10014,10014,10014, 0,10014,10014, 0, 0, 0, 0, 0, 0, 0, 0, 0,10014,10014, 10014,10014,10014,10014,10014, 0, 0, 0, 0, 0, 10014, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10014,10014,10014, 0,10014, 0,10014,10015,10015, 0,10015,10015,10015, 10015,10015,10015, 0,10015,10015, 0, 0, 0, 0, 0, 0, 0, 0, 0,10015,10015,10015,10015,10015, 10015,10015, 0, 0, 0, 0, 0,10015, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10015,10015,10015,10017,10017,10017, 10017,10017,10017,10017,10017,10017, 0,10017,10017, 0, 0, 0, 0, 0, 0, 0, 0, 0,10017,10017, 10017,10017,10017,10017,10017, 0, 0, 0, 0, 0, 10017, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10017,10017,10017, 10018,10018,10018,10018,10018,10018,10018,10018,10018, 0, 10018,10018, 0, 0, 0, 0, 0, 0, 0, 0, 0,10018,10018,10018,10018,10018,10018,10018,10018, 0, 0, 0, 0,10018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10018,10018,10018,10022,10022,10022,10022,10022,10022,10022, 10022,10022, 0,10022,10022, 0, 0, 0, 0, 0, 0, 0, 0, 0,10022,10022,10022,10022,10022,10022, 10022, 0, 0, 0, 0, 0,10022, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10022,10022,10022,10023,10023,10023,10023, 10023,10023,10023,10023,10023, 0,10023,10023, 0, 0, 0, 0, 0, 0, 0, 0, 0,10023,10023,10023, 10023,10023,10023,10023,10023, 0, 0, 0, 0,10023, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10023,10023,10023,10027, 10027,10027,10027,10027,10027,10027,10027,10027, 0,10027, 10027, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10027,10027,10027,10027,10027,10027,10027, 0, 0, 0, 0, 0,10027, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10027, 10027,10027,10028,10028,10028,10028,10028,10028,10028,10028, 10028, 0,10028,10028, 0, 0, 0, 0, 0, 0, 0, 0, 0,10028,10028,10028,10028,10028,10028,10028, 10028, 0, 0, 0, 0,10028, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10028,10028,10028,10032,10032,10032,10032,10032, 10032,10032,10032,10032, 0,10032,10032, 0, 0, 0, 0, 0, 0, 0, 0, 0,10032,10032,10032,10032, 10032,10032,10032, 0, 0, 0, 0, 0,10032, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10032,10032,10032,10033,10033, 10033,10033,10033,10033,10033,10033,10033, 0,10033,10033, 0, 0, 0, 0, 0, 0, 0, 0, 0,10033, 10033,10033,10033,10033,10033,10033,10033, 0, 0, 0, 0,10033, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10033,10033, 10033,10037,10037,10037,10037,10037,10037,10037,10037,10037, 0,10037,10037, 0, 0, 0, 0, 0, 0, 0, 0, 0,10037,10037,10037,10037,10037,10037,10037, 0, 0, 0, 0, 0,10037, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10037,10037,10037,10038,10038,10038,10038,10038,10038, 10038,10038,10038, 0,10038,10038, 0, 0, 0, 0, 0, 0, 0, 0, 0,10038,10038,10038,10038,10038, 10038,10038,10038, 0, 0, 0, 0,10038, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10038,10038,10038,10041,10041,10041, 10041,10041,10041,10041,10041,10041, 0,10041,10041, 0, 0, 0, 0, 0, 0, 0, 0, 0,10041,10041, 10041,10041,10041,10041,10041, 0, 0, 0, 0, 0, 10041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10041,10041,10041, 10042,10042,10042,10042,10042,10042,10042,10042,10042, 0, 10042,10042, 0, 0, 0, 0, 0, 0, 0, 0, 0,10042,10042,10042,10042,10042,10042,10042,10042, 0, 0, 0, 0,10042, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10042,10042,10042,10044,10044,10044,10044,10044,10044,10044, 10044,10044, 0,10044,10044, 0, 0, 0, 0, 0, 0, 0, 0, 0,10044,10044,10044,10044,10044,10044, 10044, 0, 0, 0, 0, 0,10044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10044, 0, 0, 0, 0, 0,10044,10044,10044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10044,10045,10045,10045,10045,10045, 10045,10045,10045,10045, 0,10045,10045, 0, 0, 0, 0, 0, 0, 0, 0, 0,10045,10045,10045,10045, 10045,10045,10045, 0, 0, 0, 0, 0,10045, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10045,10045,10045,10046,10046, 10046,10046,10046,10046,10046,10046,10046, 0,10046,10046, 0, 0, 0, 0, 0, 0, 0, 0, 0,10046, 10046,10046,10046,10046,10046,10046,10046, 0, 0, 0, 0,10046, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10046,10046, 10046,10047,10047,10047,10047,10047,10047,10047,10047,10047, 0,10047,10047, 0, 0, 0, 0, 0, 0, 0, 0, 0,10047,10047,10047,10047,10047,10047,10047, 0, 0, 0, 0, 0,10047, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10047,10047,10047,10048,10048,10048,10048,10048,10048, 10048,10048,10048, 0,10048,10048, 0, 0, 0, 0, 0, 0, 0, 0, 0,10048,10048,10048,10048,10048, 10048,10048,10048, 0, 0, 0, 0,10048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10048,10048,10048,10051,10051,10051, 10051,10051,10051,10051,10051,10051, 0,10051,10051, 0, 0, 0, 0, 0, 0, 0, 0, 0,10051,10051, 10051,10051,10051,10051,10051, 0, 0, 0, 0, 0, 10051, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10051,10051,10051, 10052,10052,10052,10052,10052,10052,10052,10052,10052, 0, 10052,10052, 0, 0, 0, 0, 0, 0, 0, 0, 0,10052,10052,10052,10052,10052,10052,10052,10052, 0, 0, 0, 0,10052, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10052,10052,10052,10055,10055,10055,10055,10055,10055,10055, 10055,10055, 0,10055,10055, 0, 0, 0, 0, 0, 0, 0, 0, 0,10055,10055,10055,10055,10055,10055, 10055, 0, 0, 0, 0, 0,10055, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10055,10055,10055,10056,10056,10056,10056, 10056,10056,10056,10056,10056, 0,10056,10056, 0, 0, 0, 0, 0, 0, 0, 0, 0,10056,10056,10056, 10056,10056,10056,10056,10056, 0, 0, 0, 0,10056, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10056,10056,10056,10058, 10058,10058,10058,10058,10058,10058,10058,10058, 0,10058, 10058, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10058,10058,10058,10058,10058,10058,10058, 0, 0, 0, 0, 0,10058, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10058, 0, 0, 0, 0, 0,10058, 10058,10058, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10058,10059,10059,10059,10059,10059,10059,10059,10059,10059, 0,10059,10059, 0, 0, 0, 0, 0, 0, 0, 0, 0,10059,10059,10059,10059,10059,10059,10059, 0, 0, 0, 0, 0,10059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10059,10059,10059,10060,10060,10060,10060,10060,10060, 10060,10060,10060, 0,10060,10060, 0, 0, 0, 0, 0, 0, 0, 0, 0,10060,10060,10060,10060,10060, 10060,10060,10060, 0, 0, 0, 0,10060, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10060,10060,10060,10069,10069, 0, 10069,10069,10069,10069,10069,10069, 0,10069,10069, 0, 0, 0, 0, 0, 0, 0, 0, 0,10069,10069, 10069,10069,10069,10069,10069, 0, 0, 0, 0, 0, 10069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10069,10069,10069, 0, 0, 0, 0, 0,10069,10071,10071, 0,10071, 10071,10071,10071,10071,10071, 0,10071,10071, 0, 0, 0, 0, 0, 0, 0, 0, 0,10071,10071,10071, 10071,10071,10071,10071, 0, 0, 0, 0, 0,10071, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10071,10071,10071,10073, 10073, 0,10073,10073,10073,10073, 0,10073,10073,10073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10073,10073,10073,10073,10073,10073,10073, 0, 0, 0, 0, 0,10073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10073, 10073,10073,10073,10074,10074, 0,10074,10074,10074,10074, 0,10074,10074,10074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10074,10074,10074,10074,10074,10074, 10074,10074, 0, 0, 0, 0,10074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10074,10074,10074,10074,10090,10090, 0, 10090,10090,10090,10090,10090,10090, 0,10090,10090, 0, 0, 0, 0, 0, 0, 0, 0, 0,10090,10090, 10090,10090,10090,10090,10090, 0, 0, 0, 0, 0, 10090, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10090,10090,10090, 10091,10091, 0,10091,10091,10091,10091,10091,10091, 0, 10091,10091, 0, 0, 0, 0, 0, 0, 0, 0, 0,10091,10091,10091,10091,10091,10091,10091,10091, 0, 0, 0, 0,10091, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10091,10091,10091,10105,10105,10105,10105,10105,10105,10105, 10105,10105,10105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10105, 0,10105,10107,10107, 0,10107,10107,10107, 10107,10107,10107, 0,10107,10107, 0, 0, 0, 0, 0, 0, 0, 0, 0,10107,10107,10107,10107,10107, 10107,10107, 0, 0, 0, 0, 0,10107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10107,10107,10107,10108,10108, 0, 10108,10108,10108,10108,10108,10108, 0,10108,10108, 0, 0, 0, 0, 0, 0, 0, 0, 0,10108,10108, 10108,10108,10108,10108,10108,10108, 0, 0, 0, 0, 10108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10108,10108,10108, 10112,10112,10112,10112,10112,10112,10112,10112,10112,10112, 0, 0, 0, 0, 0, 0,10112,10112,10112,10112, 10112,10112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10112,10112,10112,10112,10112,10112,10114,10114, 10114,10114,10114,10114,10114,10114,10114,10114, 0, 0, 0, 0, 0, 0,10114,10114,10114,10114,10114,10114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10114,10114,10114,10114,10114,10114,10115,10115,10115,10115, 10115,10115,10115,10115,10115, 0, 0, 0, 0, 0, 0, 0,10115,10115,10115,10115,10115,10115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10115, 0, 0, 0,10115,10115, 10115,10115,10115,10115,10118,10118,10118,10118,10118,10118, 10118,10118,10118,10118, 0, 0, 0, 0, 0, 0, 10118,10118,10118,10118,10118,10118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10118,10118,10118,10118, 10118,10118,10119,10119,10119,10119,10119,10119,10119,10119, 10119, 0, 0, 0, 0, 0, 0, 0,10119,10119, 10119,10119,10119,10119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10119,10119,10119,10119,10119,10119, 10127,10127,10127,10127,10127,10127,10127,10127,10127,10127, 0, 0, 0, 0, 0, 0,10127,10127,10127,10127, 10127,10127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10127,10127,10127,10127,10127,10127,10128,10128, 10128,10128,10128,10128,10128,10128,10128, 0, 0, 0, 0, 0, 0, 0,10128,10128,10128,10128,10128,10128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10128,10128,10128,10128,10128,10128,10136,10136,10136,10136, 10136,10136,10136,10136,10136,10136, 0, 0, 0, 0, 0, 0,10136,10136,10136,10136,10136,10136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10136,10136, 10136,10136,10136,10136,10137,10137,10137,10137,10137,10137, 10137,10137,10137, 0, 0, 0, 0, 0, 0, 0, 10137,10137,10137,10137,10137,10137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10137,10137,10137,10137, 10137,10137,10142, 0,10142,10142,10142,10142,10142,10142, 10142,10142,10142,10142, 0, 0, 0, 0, 0, 0, 10142,10142,10142,10142,10142,10142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10142,10142,10142,10142, 10142,10142,10149,10149,10149,10149,10149,10149,10149,10149, 10149,10149, 0, 0, 0, 0, 0, 0,10149,10149, 10149,10149,10149,10149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10149,10149,10149,10149,10149,10149, 10150,10150,10150,10150,10150,10150,10150,10150,10150, 0, 0, 0, 0, 0, 0, 0,10150,10150,10150,10150, 10150,10150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10150,10150,10150,10150,10150,10150,10155,10155, 10155,10155,10155,10155,10155,10155,10155,10155, 0, 0, 0, 0, 0, 0,10155,10155,10155,10155,10155,10155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10155,10155,10155,10155,10155,10155,10159,10159,10159,10159, 10159,10159,10159,10159,10159,10159, 0, 0, 0, 0, 0, 0,10159,10159,10159,10159,10159,10159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10159,10159, 10159,10159,10159,10159,10163,10163,10163,10163,10163,10163, 10163,10163,10163,10163, 0, 0, 0, 0, 0, 0, 10163,10163,10163,10163,10163,10163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10163,10163,10163,10163, 10163,10163,10164,10164,10164,10164,10164,10164,10164,10164, 10164, 0, 0, 0, 0, 0, 0, 0,10164,10164, 10164,10164,10164,10164, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10164,10164,10164,10164,10164,10164, 10169,10169,10169,10169,10169,10169,10169,10169,10169,10169, 0, 0, 0, 0, 0, 0,10169,10169,10169,10169, 10169,10169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10169,10169,10169,10169,10169,10169,10173,10173, 10173,10173,10173,10173,10173,10173,10173,10173, 0, 0, 0, 0, 0, 0,10173,10173,10173,10173,10173,10173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10173,10173,10173,10173,10173,10173,10174,10174,10174,10174, 10174,10174,10174,10174,10174,10174, 0, 0, 0, 0, 0, 0,10174,10174,10174,10174,10174,10174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10174,10174, 10174,10174,10174,10174,10176,10176,10176,10176,10176,10176, 10176,10176,10176,10176, 0, 0, 0, 0, 0, 0, 10176,10176,10176,10176,10176,10176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10176,10176,10176,10176, 10176,10176,10181,10181,10181,10181,10181,10181,10181,10181, 10181, 0, 0, 0, 0, 0, 0, 0,10181,10181, 10181,10181,10181,10181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10181,10181,10181,10181,10181,10181, 10182,10182,10182,10182,10182,10182,10182,10182,10182,10182, 0, 0, 0, 0, 0, 0,10182,10182,10182,10182, 10182,10182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10182,10182,10182,10182,10182,10182,10235, 0, 0, 0, 0, 0, 0,10235, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10235, 0,10235, 0,10235, 0, 0,10235, 0, 0, 0, 0,10235,10235, 0,10235, 0,10235, 0,10235, 0, 10235,10235,10235,10237,10237, 0, 0, 0, 0,10237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10237, 0, 0, 0, 0, 0, 0,10237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10237, 0,10237, 0,10237, 0, 0,10237, 0, 0, 0, 0,10237, 0, 0, 10237, 0,10237, 0,10237, 0,10237,10237,10237,10238, 10238, 0, 0, 0, 0,10238, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10238, 0,10238, 0, 0, 0, 0,10238, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10238, 0,10238, 0,10238, 0, 0,10238, 0, 0, 0, 0,10238, 0, 0,10238, 0,10238, 0, 10238, 0,10238,10238,10238,10239, 0, 0, 0, 0, 0, 0,10239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10239, 0,10239, 0, 10239, 0, 0,10239, 0, 0, 0, 0,10239, 0, 0,10239, 0,10239, 0,10239, 0,10239,10239,10239, 10253,10253, 0, 0, 0, 0,10253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10253, 0, 0, 0, 0, 0, 0,10253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10253, 0,10253, 0,10253, 0, 0,10253, 0, 0, 0,10253,10253, 0, 0,10253, 0,10253, 0,10253, 0,10253,10253,10253,10254,10254,10254,10254, 10254,10254,10254,10254,10254,10254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10254, 0, 0, 0, 0, 0, 0,10254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10254, 0,10254, 0,10254, 0, 0,10254, 0, 0, 0, 0,10254, 0, 0,10254, 0,10254, 0,10254, 0, 10254,10254,10254,10255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10255, 0, 0, 0, 0, 0, 0,10255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10255, 0,10255, 0, 10255, 0, 0,10255, 0, 0, 0, 0,10255, 0, 0,10255, 0,10255, 0,10255, 0,10255,10255,10255, 10256,10256, 0, 0, 0, 0,10256, 0, 0,10256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10256, 0, 0, 0, 0, 0, 0,10256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10256, 0,10256, 0,10256, 0, 0,10256, 0, 0, 0, 0,10256, 0, 0,10256, 0,10256, 0,10256, 0,10256,10256,10256,10257,10257, 0, 0, 0, 0,10257, 0, 0,10257, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10257, 0, 0, 0, 0, 0, 0,10257, 0, 0, 0, 0, 0, 10257, 0, 0, 0, 0, 0, 0, 0,10257, 0, 10257, 0,10257, 0, 0,10257, 0, 0, 0, 0, 10257, 0, 0,10257, 0,10257, 0,10257, 0,10257, 10257,10257,10258,10258, 0, 0, 0, 0,10258, 0, 0,10258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10258, 0, 0, 0, 0, 0, 0, 10258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10258, 0,10258, 0,10258, 0, 0,10258, 0, 0, 0, 0,10258, 0,10258,10258, 0,10258, 0,10258, 0,10258,10258,10258,10270, 0, 10270, 0, 0,10270,10270,10270,10270,10270,10270,10270, 10270,10270, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10270, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10270, 0, 0,10270,10277,10277, 0,10277,10277,10277, 10277,10277,10277, 0,10277,10277, 0, 0, 0, 0, 0, 0, 0, 0, 0,10277,10277,10277,10277,10277, 10277,10277, 0, 0, 0, 0, 0,10277, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10277,10277,10277,10278,10278, 0, 10278,10278,10278,10278,10278,10278, 0,10278,10278, 0, 0, 0, 0, 0, 0, 0, 0, 0,10278,10278, 10278,10278,10278,10278,10278,10278, 0, 0, 0, 0, 10278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10278,10278,10278, 10282,10282, 0,10282,10282,10282,10282,10282,10282,10282, 10282,10282, 0, 0, 0, 0, 0, 0, 0, 0, 0,10282,10282,10282,10282,10282,10282,10282, 0, 0, 0, 0, 0,10282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10282,10282,10282,10282,10283,10283, 0,10283,10283,10283, 10283,10283,10283, 0,10283,10283, 0, 0, 0, 0, 0, 0, 0, 0, 0,10283,10283,10283,10283,10283, 10283,10283, 0, 0, 0, 0, 0,10283, 0, 0, 0, 0, 0,10283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10283,10283,10283,10284,10284, 0, 10284,10284,10284,10284,10284,10284, 0,10284,10284, 0, 0, 0, 0, 0, 0, 0, 0, 0,10284,10284, 10284,10284,10284,10284,10284,10284, 0, 0, 0, 0, 10284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10284,10284,10284, 10285,10285, 0,10285,10285,10285,10285,10285,10285,10285, 10285,10285,10285,10285,10285,10285,10285,10285,10285,10285, 10285,10285,10285,10285,10285,10285,10285,10285,10285,10285, 10285,10285,10285,10285,10285,10285,10285,10285,10285,10285, 10285,10285,10285,10285,10285,10285,10285,10285,10285,10285, 10285,10285,10285,10285,10285,10285,10285,10285,10285,10285, 10285,10285,10285,10285,10285,10285,10285,10285,10285,10285, 10285,10285,10285,10285,10285,10285,10285,10285,10285,10286, 0, 0, 0, 0, 0, 0, 0, 0,10286,10286, 10286,10286,10286,10286,10286,10286,10286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10286,10286,10286,10286,10286,10286,10286,10286,10286,10286, 10286,10286,10286,10286,10286,10286,10286,10286,10286,10286, 10286,10286,10286,10286,10286,10291,10291, 0,10291,10291, 10291,10291,10291,10291, 0,10291,10291, 0, 0, 0, 0, 0, 0, 0, 0, 0,10291,10291,10291,10291, 10291,10291,10291, 0, 0, 0, 0, 0,10291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10291,10291,10291,10293,10293, 0,10293,10293,10293,10293,10293,10293, 0,10293,10293, 0, 0, 0, 0, 0, 0, 0, 0, 0,10293, 10293,10293,10293,10293,10293,10293,10293, 0, 0, 0, 0,10293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10293,10293, 10293,10296,10296, 0,10296,10296,10296,10296,10296,10296, 0,10296,10296, 0, 0, 0, 0, 0, 0, 0, 0, 0,10296,10296,10296,10296,10296,10296,10296, 0, 0, 0, 0, 0,10296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10296,10296,10296,10297,10297, 0,10297,10297,10297, 10297,10297,10297, 0,10297,10297, 0, 0, 0, 0, 0, 0, 0, 0, 0,10297,10297,10297,10297,10297, 10297,10297,10297, 0, 0, 0, 0,10297, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10297,10297,10297,10299,10299, 0, 10299,10299,10299,10299,10299,10299, 0,10299,10299, 0, 0, 0, 0, 0, 0, 0, 0, 0,10299,10299, 10299,10299,10299,10299,10299, 0, 0, 0, 0, 0, 10299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10299,10299,10299, 10300,10300, 0,10300,10300,10300,10300,10300,10300, 0, 10300,10300, 0, 0, 0, 0, 0, 0, 0, 0, 0,10300,10300,10300,10300,10300,10300,10300,10300, 0, 0, 0, 0,10300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10300,10300,10300,10301,10301, 0,10301,10301,10301,10301, 10301,10301, 0,10301,10301, 0, 0, 0, 0, 0, 0, 0, 0, 0,10301,10301,10301,10301,10301,10301, 10301, 0, 0, 0, 0, 0,10301,10301, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10301,10301,10301, 0, 0, 0, 0, 0, 0, 0,10301,10302,10302, 0,10302,10302,10302, 10302,10302,10302, 0,10302,10302, 0, 0, 0, 0, 0, 0, 0, 0, 0,10302,10302,10302,10302,10302, 10302,10302, 0, 0, 0, 0, 0,10302,10302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10302,10302,10302, 0, 0, 0, 0, 0, 0, 0,10302,10303,10303, 0,10303,10303, 10303,10303,10303,10303, 0,10303,10303, 0, 0, 0, 0, 0, 0, 0, 0, 0,10303,10303,10303,10303, 10303,10303,10303, 0, 0, 0, 0, 0,10303, 0, 0,10303, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10303,10303,10303,10303,10304, 10304, 0,10304,10304,10304,10304,10304,10304,10304,10304, 10304,10304,10304,10304,10304,10304,10304,10304,10304,10304, 10304,10304,10304,10304,10304,10304,10304,10304,10304,10304, 10304,10304,10304,10304,10304,10304,10304,10304,10304,10304, 10304,10304,10304,10304,10304,10304,10304,10304,10304,10304, 10304,10304,10304,10304,10304,10304,10304,10304,10304,10304, 10304,10304,10304,10304,10304,10304,10304,10304,10304,10304, 10304,10304,10304,10304,10304,10304,10304,10304,10305,10305, 0,10305,10305,10305,10305,10305,10305,10305,10305,10305, 10305,10305,10305,10305,10305,10305,10305,10305,10305,10305, 10305,10305,10305,10305,10305,10305,10305,10305,10305,10305, 10305,10305,10305,10305,10305,10305,10305,10305,10305,10305, 10305,10305,10305,10305,10305,10305,10305,10305,10305,10305, 10305,10305,10305,10305,10305,10305,10305,10305,10305,10305, 10305,10305,10305,10305,10305,10305,10305,10305,10305,10305, 10305,10305,10305,10305,10305,10305,10305,10307, 0, 0, 0, 0, 0, 0, 0, 0,10307,10307,10307,10307, 10307,10307,10307,10307,10307,10307, 0, 0, 0, 0, 0, 0,10307,10307,10307,10307,10307,10307, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10307,10307, 10307,10307,10307,10307,10311,10311, 0,10311,10311,10311, 10311,10311,10311, 0,10311,10311, 0, 0, 0, 0, 0, 0, 0, 0, 0,10311,10311,10311,10311,10311, 10311,10311, 0, 0, 0, 0, 0,10311, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10311,10311,10311,10312,10312, 0, 10312,10312,10312,10312,10312,10312, 0,10312,10312, 0, 0, 0, 0, 0, 0, 0, 0, 0,10312,10312, 10312,10312,10312,10312,10312, 0, 0, 0, 0, 0, 10312, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10312,10312,10312, 10312,10313,10313, 0,10313,10313,10313,10313,10313,10313, 0,10313,10313, 0, 0, 0, 0, 0, 0, 0, 0, 0,10313,10313,10313,10313,10313,10313,10313, 0, 0, 0, 0, 0,10313, 0, 0, 0, 0, 0, 0, 0, 0,10313, 0, 0, 0, 0, 0, 0, 0,10313,10313,10313,10314,10314, 0,10314,10314,10314, 10314,10314,10314, 0,10314,10314, 0, 0, 0, 0, 0, 0, 0, 0, 0,10314,10314,10314,10314,10314, 10314,10314, 0, 0, 0, 0, 0,10314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10314,10314,10314,10314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10314,10315,10315, 0,10315,10315,10315,10315, 10315,10315, 0,10315,10315, 0, 0, 0, 0, 0, 0, 0, 0, 0,10315,10315,10315,10315,10315,10315, 10315, 0, 0, 0, 0, 0,10315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10315,10315,10315,10316,10316, 0,10316, 10316,10316,10316,10316,10316, 0,10316,10316, 0, 0, 0, 0, 0, 0, 0, 0, 0,10316,10316,10316, 10316,10316,10316,10316, 0, 0, 0, 0, 0,10316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10316,10316,10316,10316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10316,10320,10320,10320,10320,10320, 10320,10320,10320,10320, 0, 0, 0, 0, 0, 0, 0,10320,10320,10320,10320,10320,10320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10320,10320,10320, 10320,10320,10320,10323,10323, 0,10323,10323,10323,10323, 10323,10323, 0,10323,10323, 0, 0, 0, 0, 0, 0, 0, 0, 0,10323,10323,10323,10323,10323,10323, 10323, 0, 0, 0, 0, 0,10323, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10323,10323,10323,10324,10324, 0,10324, 10324,10324,10324,10324,10324, 0,10324,10324, 0, 0, 0, 0, 0, 0, 0, 0, 0,10324,10324,10324, 10324,10324,10324,10324,10324, 0, 0, 0, 0,10324, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10324,10324,10324,10328, 10328, 0,10328,10328,10328,10328,10328,10328, 0,10328, 10328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10328,10328,10328,10328,10328,10328,10328, 0, 0, 0, 0, 0,10328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10328, 10328,10328,10329,10329, 0,10329,10329,10329,10329,10329, 10329, 0,10329,10329, 0, 0, 0, 0, 0, 0, 0, 0, 0,10329,10329,10329,10329,10329,10329,10329, 10329, 0, 0, 0, 0,10329, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10329,10329,10329,10332,10332, 0,10332,10332, 10332,10332,10332,10332, 0,10332,10332, 0, 0, 0, 0, 0, 0, 0, 0, 0,10332,10332,10332,10332, 10332,10332,10332, 0, 0, 0, 0, 0,10332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10332,10332,10332,10333,10333, 0,10333,10333,10333,10333,10333,10333, 0,10333,10333, 0, 0, 0, 0, 0, 0, 0, 0, 0,10333, 10333,10333,10333,10333,10333,10333,10333, 0, 0, 0, 0,10333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10333,10333, 10333,10335,10335, 0,10335,10335,10335,10335,10335,10335, 0,10335,10335, 0, 0, 0, 0, 0, 0, 0, 0, 0,10335,10335,10335,10335,10335,10335,10335, 0, 0, 0, 0, 0,10335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10335,10335,10335,10336,10336, 0,10336,10336,10336, 10336,10336,10336, 0,10336,10336, 0, 0, 0, 0, 0, 0, 0, 0, 0,10336,10336,10336,10336,10336, 10336,10336,10336, 0, 0, 0, 0,10336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10336,10336,10336,10337,10337, 0, 10337,10337,10337,10337,10337,10337,10337,10337,10337, 0, 0, 0, 0, 0, 0, 0, 0, 0,10337,10337, 10337,10337,10337,10337,10337,10337, 0, 0, 0, 0, 10337, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10337,10337,10337, 10337,10337,10338,10338, 0,10338,10338,10338,10338,10338, 10338, 0,10338,10338,10338,10338,10338,10338,10338,10338, 10338,10338,10338,10338,10338,10338,10338,10338,10338,10338, 0, 0, 0, 0, 0,10338, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10338,10338,10338,10339,10339, 0,10339,10339, 10339,10339,10339,10339, 0,10339,10339, 0, 0, 0, 0, 0, 0, 0, 0, 0,10339,10339,10339,10339, 10339,10339,10339, 0, 0, 0, 0, 0,10339, 0, 0,10339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10339,10339,10339,10340,10340, 0,10340,10340,10340,10340,10340,10340, 0,10340,10340, 0, 0, 0, 0, 0, 0, 0, 0, 0,10340, 10340,10340,10340,10340,10340,10340, 0, 0, 0, 0, 0,10340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10340,10340, 10340,10341,10341, 0,10341,10341,10341,10341,10341,10341, 0,10341,10341, 0, 0, 0, 0, 0, 0, 0, 0, 0,10341,10341,10341,10341,10341,10341,10341,10341, 0, 0, 0, 0,10341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10341,10341,10341,10343,10343, 0,10343,10343,10343, 10343,10343,10343, 0,10343,10343, 0, 0, 0, 0, 0, 0, 0, 0, 0,10343,10343,10343,10343,10343, 10343,10343, 0, 0, 0, 0, 0,10343, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10343,10343,10343,10344,10344, 0, 10344,10344,10344,10344,10344,10344, 0,10344,10344, 0, 0, 0, 0, 0, 0, 0, 0, 0,10344,10344, 10344,10344,10344,10344,10344,10344, 0, 0, 0, 0, 10344, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10344,10344,10344, 10345,10345, 0,10345,10345,10345,10345,10345,10345,10345, 10345,10345, 0, 0, 0, 0, 0, 0, 0, 0, 0,10345,10345,10345,10345,10345,10345,10345,10345, 0, 0, 0, 0,10345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10345,10345,10345,10345,10345,10346,10346, 0,10346,10346, 10346,10346,10346,10346, 0,10346,10346, 0, 0, 0, 0, 0, 0, 0, 0, 0,10346,10346,10346,10346, 10346,10346,10346, 0, 0, 0, 0, 0,10346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10346,10346,10346,10346,10347, 10347, 0,10347,10347,10347,10347,10347,10347, 0,10347, 10347,10347,10347,10347,10347,10347,10347,10347,10347,10347, 10347,10347,10347,10347,10347,10347,10347, 0, 0, 0, 0, 0,10347, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10347, 10347,10347,10347,10350,10350,10350,10350,10350,10350,10350, 10350,10350,10350, 0, 0, 0, 0, 0, 0,10350, 10350,10350,10350,10350,10350, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10350,10350,10350,10350,10350, 10350,10353,10353,10353,10353,10353,10353,10353,10353,10353, 10353, 0, 0, 0, 0, 0, 0,10353,10353,10353, 10353,10353,10353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10353,10353,10353,10353,10353,10353,10355, 0, 0, 0, 0, 0, 0, 0, 0,10355,10355, 10355,10355,10355,10355,10355,10355,10355, 0, 0, 0, 0, 0, 0, 0,10355,10355,10355,10355,10355,10355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10355,10355,10355,10355,10355,10355,10359,10359,10359,10359, 10359,10359,10359,10359,10359,10359, 0, 0, 0, 0, 0, 0,10359,10359,10359,10359,10359,10359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10359,10359, 10359,10359,10359,10359,10361,10361,10361,10361,10361,10361, 10361,10361,10361, 0, 0, 0, 0, 0, 0, 0, 10361,10361,10361,10361,10361,10361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10361,10361,10361,10361, 10361,10361,10371,10371,10371,10371,10371,10371,10371,10371, 10371,10371, 0, 0, 0, 0, 0, 0,10371,10371, 10371,10371,10371,10371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10371,10371,10371,10371,10371,10371, 10373,10373,10373,10373,10373,10373,10373,10373,10373, 0, 0, 0, 0, 0, 0, 0,10373,10373,10373,10373, 10373,10373, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10373,10373,10373,10373,10373,10373,10381,10381, 10381,10381,10381,10381,10381,10381,10381,10381, 0, 0, 0, 0, 0, 0,10381,10381,10381,10381,10381,10381, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10381,10381,10381,10381,10381,10381,10384,10384,10384,10384, 10384,10384,10384,10384,10384,10384, 0, 0, 0, 0, 0, 0,10384,10384,10384,10384,10384,10384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10384,10384, 10384,10384,10384,10384,10392,10392,10392,10392,10392,10392, 10392,10392,10392, 0, 0, 0, 0, 0, 0, 0, 10392,10392,10392,10392,10392,10392, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10392,10392,10392,10392, 10392,10392,10393,10393, 0,10393,10393,10393,10393,10393, 10393, 0,10393,10393, 0, 0, 0, 0, 0, 0, 0, 0, 0,10393,10393,10393,10393,10393,10393,10393, 0, 0, 0, 0, 0,10393,10393, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10393,10393,10393,10394,10394, 0,10394,10394, 10394,10394,10394,10394, 0,10394,10394, 0, 0, 0, 0, 0, 0, 0, 0, 0,10394,10394,10394,10394, 10394,10394,10394, 0, 0, 0, 0, 0,10394, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10394,10394,10394,10394, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10394,10395,10395, 0,10395,10395,10395,10395,10395,10395, 0,10395,10395, 0, 0, 0, 0, 0, 0, 0, 0, 0,10395, 10395,10395,10395,10395,10395,10395, 0, 0, 0, 0, 0,10395, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10395,10395, 10395,10396,10396, 0,10396,10396,10396,10396,10396,10396, 0,10396,10396, 0, 0, 0, 0, 0, 0, 0, 0, 0,10396,10396,10396,10396,10396,10396,10396,10396, 0, 0, 0, 0,10396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10396,10396,10396,10399,10399, 0,10399,10399,10399, 10399,10399,10399, 0,10399,10399, 0, 0, 0, 0, 0, 0, 0, 0, 0,10399,10399,10399,10399,10399, 10399,10399, 0, 0, 0, 0, 0,10399, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10399,10399,10399,10400,10400, 0, 10400,10400,10400,10400,10400,10400, 0,10400,10400, 0, 0, 0, 0, 0, 0, 0, 0, 0,10400,10400, 10400,10400,10400,10400,10400, 0, 0, 0, 0, 0, 10400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10400, 0, 0, 0, 0,10400,10400,10400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10400, 10401,10401, 0,10401,10401,10401,10401,10401,10401, 0, 10401,10401, 0, 0, 0, 0, 0, 0, 0, 0, 0,10401,10401,10401,10401,10401,10401,10401,10401, 0, 0, 0, 0,10401, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10401,10401,10401,10404,10404, 0,10404,10404,10404,10404, 10404,10404, 0,10404,10404, 0, 0, 0, 0, 0, 0, 0, 0, 0,10404,10404,10404,10404,10404,10404, 10404, 0, 0, 0, 0, 0,10404, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10404,10404,10404,10405,10405, 0,10405, 10405,10405,10405,10405,10405, 0,10405,10405, 0, 0, 0, 0, 0, 0, 0, 0, 0,10405,10405,10405, 10405,10405,10405,10405,10405, 0, 0, 0, 0,10405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10405,10405,10405,10407, 10407, 0,10407,10407,10407,10407,10407,10407, 0,10407, 10407, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10407,10407,10407,10407,10407,10407,10407, 0, 0, 0, 0, 0,10407, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10407, 10407,10407,10408,10408, 0,10408,10408,10408,10408,10408, 10408, 0,10408,10408, 0, 0, 0, 0, 0, 0, 0, 0, 0,10408,10408,10408,10408,10408,10408,10408, 10408, 0, 0, 0, 0,10408, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10408,10408,10408,10409,10409, 0,10409,10409, 10409,10409,10409,10409, 0,10409,10409, 0, 0, 0, 0, 0, 0, 0, 0, 0,10409,10409,10409,10409, 10409,10409,10409, 0, 0, 0, 0, 0,10409,10409, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10409,10409,10409, 0, 0, 0, 0, 0, 0, 0,10409,10410,10410, 0,10410, 10410,10410,10410,10410,10410, 0,10410,10410, 0,10410, 10410,10410,10410,10410,10410,10410,10410,10410,10410,10410, 10410,10410,10410,10410, 0, 0, 0, 0, 0,10410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10410,10410,10410,10411, 10411, 0,10411,10411,10411,10411,10411,10411, 0,10411, 10411, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10411,10411,10411,10411,10411,10411,10411, 0, 0, 0, 0, 0,10411, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10411, 10411,10411,10412,10412, 0,10412,10412,10412,10412,10412, 10412, 0,10412,10412, 0, 0, 0, 0, 0, 0, 0, 0, 0,10412,10412,10412,10412,10412,10412,10412, 0, 0, 0, 0, 0,10412,10412, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10412,10412,10412, 0, 0, 0, 0, 0, 0, 0,10412,10415,10415, 0,10415,10415,10415,10415, 10415,10415, 0,10415,10415, 0, 0, 0, 0, 0, 0, 0, 0, 0,10415,10415,10415,10415,10415,10415, 10415, 0, 0, 0, 0, 0,10415, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10415, 0, 0, 0, 0,10415,10415,10415, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10415,10416,10416, 0,10416, 10416,10416,10416,10416,10416, 0,10416,10416, 0, 0, 0, 0, 0, 0, 0, 0, 0,10416,10416,10416, 10416,10416,10416,10416, 0, 0, 0, 0, 0,10416, 0, 0, 0, 0, 0,10416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10416,10416,10416,10417, 10417, 0,10417,10417,10417,10417,10417,10417,10417,10417, 10417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10417,10417,10417,10417,10417,10417,10417, 0, 0, 0, 0, 0,10417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10417, 10417,10417,10417,10418,10418, 0,10418,10418,10418,10418, 10418,10418, 0,10418,10418, 0, 0, 0, 0, 0, 0, 0, 0, 0,10418,10418,10418,10418,10418,10418, 10418, 0, 0, 0, 0, 0,10418, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10418,10418,10418,10419,10419, 0,10419, 10419,10419,10419,10419,10419, 0,10419,10419, 0, 0, 0, 0, 0, 0, 0, 0, 0,10419,10419,10419, 10419,10419,10419,10419,10419, 0, 0, 0, 0,10419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10419,10419,10419,10423, 10423, 0,10423,10423,10423,10423,10423,10423,10423,10423, 10423, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10423,10423,10423,10423,10423,10423,10423, 0, 0, 0, 0, 0,10423, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10423, 0, 0, 0, 0,10423, 10423,10423,10423, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10423,10425,10425, 0,10425,10425,10425,10425,10425, 10425, 0,10425,10425, 0, 0, 0, 0, 0, 0, 0, 0, 0,10425,10425,10425,10425,10425,10425,10425, 0, 0, 0, 0, 0,10425, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10425,10425,10425,10426,10426, 0,10426,10426, 10426,10426,10426,10426, 0,10426,10426, 0, 0, 0, 0, 0, 0, 0, 0, 0,10426,10426,10426,10426, 10426,10426,10426,10426, 0, 0, 0, 0,10426, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10426,10426,10426,10429,10429, 0,10429,10429,10429,10429,10429,10429, 0,10429,10429, 0, 0, 0, 0, 0, 0, 0, 0, 0,10429, 10429,10429,10429,10429,10429,10429, 0, 0, 0, 0, 0,10429, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10429,10429, 10429,10430,10430, 0,10430,10430,10430,10430,10430,10430, 0,10430,10430, 0, 0, 0, 0, 0, 0, 0, 0, 0,10430,10430,10430,10430,10430,10430,10430,10430, 0, 0, 0, 0,10430, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10430,10430,10430,10432,10432, 0,10432,10432,10432, 10432,10432,10432, 0,10432,10432, 0, 0, 0, 0, 0, 0, 0, 0, 0,10432,10432,10432,10432,10432, 10432,10432, 0, 0, 0, 0, 0,10432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10432,10432,10432,10433,10433, 0, 10433,10433,10433,10433,10433,10433, 0,10433,10433, 0, 0, 0, 0, 0, 0, 0, 0, 0,10433,10433, 10433,10433,10433,10433,10433,10433, 0, 0, 0, 0, 10433, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10433,10433,10433, 10434,10434, 0,10434,10434,10434,10434,10434,10434, 0, 10434,10434, 0, 0, 0, 0, 0, 0, 0, 0, 0,10434,10434,10434,10434,10434,10434,10434, 0, 0, 0, 0, 0,10434,10434, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10434,10434,10434, 0, 0, 0, 0, 0, 0, 0, 10434,10435,10435, 0,10435,10435,10435,10435,10435,10435, 0,10435,10435, 0, 0, 0, 0, 0, 0, 0, 0, 0,10435,10435,10435,10435,10435,10435,10435, 0, 0, 0, 0, 0,10435,10435, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10435,10435,10435, 0, 0, 0, 0, 0, 0, 0,10435,10437,10437, 0,10437,10437,10437,10437,10437, 10437,10437,10437,10437, 0, 0, 0, 0, 0, 0, 0, 0, 0,10437,10437,10437,10437,10437,10437,10437, 0, 0, 0, 0, 0,10437, 0, 0, 0, 0, 0,10437, 0, 0, 0, 0, 0,10437, 0, 0, 0, 0,10437,10437,10437,10437, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10437,10438,10438, 0,10438,10438, 10438,10438,10438,10438, 0,10438,10438, 0, 0, 0, 0, 0, 0, 0, 0, 0,10438,10438,10438,10438, 10438,10438,10438, 0, 0, 0, 0, 0,10438, 0, 0, 0, 0, 0, 0, 0, 0,10438, 0, 0, 0, 0, 0, 0, 0,10438,10438,10438,10439,10439, 0,10439,10439,10439,10439,10439,10439,10439,10439,10439, 0, 0, 0, 0, 0, 0, 0, 0, 0,10439, 10439,10439,10439,10439,10439,10439, 0, 0, 0, 0, 0,10439, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10439,10439, 10439,10439,10440,10440, 0,10440,10440,10440,10440,10440, 10440, 0,10440,10440, 0, 0, 0, 0, 0, 0, 0, 0, 0,10440,10440,10440,10440,10440,10440,10440, 0, 0, 0, 0, 0,10440, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10440,10440,10440,10441,10441, 0,10441,10441, 10441,10441,10441,10441, 0,10441,10441, 0, 0, 0, 0, 0, 0, 0, 0, 0,10441,10441,10441,10441, 10441,10441,10441,10441, 0, 0, 0, 0,10441, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10441,10441,10441,10447,10447, 0,10447,10447,10447,10447,10447,10447,10447,10447,10447, 0, 0, 0, 0, 0, 0, 0, 0, 0,10447, 10447,10447,10447,10447,10447,10447, 0, 0, 0, 0, 0,10447, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10447,10447, 10447,10447,10448,10448, 0,10448,10448,10448,10448,10448, 10448, 0,10448,10448, 0, 0, 0, 0, 0, 0, 0, 0, 0,10448,10448,10448,10448,10448,10448,10448, 0, 0, 0, 0, 0,10448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10448,10448,10448,10449,10449, 0,10449,10449, 10449,10449,10449,10449, 0,10449,10449, 0, 0, 0, 0, 0, 0, 0, 0, 0,10449,10449,10449,10449, 10449,10449,10449,10449, 0, 0, 0, 0,10449, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10449,10449,10449,10455,10455, 0,10455,10455,10455,10455,10455,10455,10455,10455,10455, 0, 0, 0, 0, 0, 0, 0, 0, 0,10455, 10455,10455,10455,10455,10455,10455, 0, 0, 0, 0, 0,10455, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10455,10455, 10455,10455,10456,10456, 0,10456,10456,10456,10456,10456, 10456, 0,10456,10456, 0, 0, 0, 0, 0, 0, 0, 0, 0,10456,10456,10456,10456,10456,10456,10456, 0, 0, 0, 0, 0,10456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10456,10456,10456,10457,10457, 0,10457,10457, 10457,10457,10457,10457, 0,10457,10457, 0, 0, 0, 0, 0, 0, 0, 0, 0,10457,10457,10457,10457, 10457,10457,10457,10457, 0, 0, 0, 0,10457, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10457,10457,10457,10462,10462, 0,10462,10462,10462,10462,10462,10462, 0,10462,10462, 0, 0, 0, 0, 0, 0, 0, 0, 0,10462, 10462,10462,10462,10462,10462,10462, 0, 0, 0, 0, 0,10462, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10462,10462, 10462,10463,10463, 0,10463,10463,10463,10463,10463,10463, 0,10463,10463, 0, 0, 0, 0, 0, 0, 0, 0, 0,10463,10463,10463,10463,10463,10463,10463,10463, 0, 0, 0, 0,10463, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10463,10463,10463,10465,10465, 0,10465,10465,10465, 10465,10465,10465, 0,10465,10465, 0, 0, 0, 0, 0, 0, 0, 0, 0,10465,10465,10465,10465,10465, 10465,10465, 0, 0, 0, 0, 0,10465, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10465, 0, 0, 0, 0, 0,10465,10465,10465, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10465,10466,10466, 0,10466, 10466,10466,10466,10466,10466, 0,10466,10466, 0, 0, 0, 0, 0, 0, 0, 0, 0,10466,10466,10466, 10466,10466,10466,10466, 0, 0, 0, 0, 0,10466, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10466,10466,10466,10467, 10467, 0,10467,10467,10467,10467,10467,10467, 0,10467, 10467, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10467,10467,10467,10467,10467,10467,10467,10467, 0, 0, 0, 0,10467, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10467, 10467,10467,10468,10468, 0,10468,10468,10468,10468,10468, 10468, 0,10468,10468, 0, 0, 0, 0, 0, 0, 0, 0, 0,10468,10468,10468,10468,10468,10468,10468, 0, 0, 0, 0, 0,10468, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10468,10468,10468,10469,10469, 0,10469,10469, 10469,10469,10469,10469, 0,10469,10469, 0, 0, 0, 0, 0, 0, 0, 0, 0,10469,10469,10469,10469, 10469,10469,10469,10469, 0, 0, 0, 0,10469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10469,10469,10469,10471,10471, 0,10471,10471,10471,10471,10471,10471, 0,10471,10471, 0, 0, 0, 0, 0, 0, 0, 0, 0,10471, 10471,10471,10471,10471,10471,10471, 0, 0, 0, 0, 0,10471, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10471,10471, 10471,10472,10472, 0,10472,10472,10472,10472,10472,10472, 0,10472,10472, 0, 0, 0, 0, 0, 0, 0, 0, 0,10472,10472,10472,10472,10472,10472,10472,10472, 0, 0, 0, 0,10472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10472,10472,10472,10476,10476, 0,10476,10476,10476, 10476,10476,10476,10476,10476,10476, 0, 0, 0, 0, 0, 0, 0, 0, 0,10476,10476,10476,10476,10476, 10476,10476, 0, 0, 0, 0, 0,10476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10476,10476,10476,10476,10477,10477, 0,10477,10477,10477,10477,10477,10477, 0,10477,10477, 0, 0, 0, 0, 0, 0, 0, 0, 0,10477, 10477,10477,10477,10477,10477,10477, 0, 0, 0, 0, 0,10477, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10477,10477, 10477,10478,10478, 0,10478,10478,10478,10478,10478,10478, 0,10478,10478, 0, 0, 0, 0, 0, 0, 0, 0, 0,10478,10478,10478,10478,10478,10478,10478,10478, 0, 0, 0, 0,10478, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10478,10478,10478,10483,10483, 0,10483,10483,10483, 10483,10483,10483, 0,10483,10483, 0, 0, 0, 0, 0, 0, 0, 0, 0,10483,10483,10483,10483,10483, 10483,10483, 0, 0, 0, 0, 0,10483, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10483,10483,10483,10484,10484, 0, 10484,10484,10484,10484,10484,10484, 0,10484,10484, 0, 0, 0, 0, 0, 0, 0, 0, 0,10484,10484, 10484,10484,10484,10484,10484,10484, 0, 0, 0, 0, 10484, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10484,10484,10484, 10486,10486, 0,10486,10486,10486,10486,10486,10486, 0, 10486,10486, 0, 0, 0, 0, 0, 0, 0, 0, 0,10486,10486,10486,10486,10486,10486,10486, 0, 0, 0, 0, 0,10486, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10486, 0, 0, 0, 0, 0, 10486,10486,10486, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10486,10487,10487, 0,10487,10487,10487,10487,10487, 10487, 0,10487,10487, 0, 0, 0, 0, 0, 0, 0, 0, 0,10487,10487,10487,10487,10487,10487,10487, 0, 0, 0, 0, 0,10487, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10487,10487,10487,10488,10488, 0,10488,10488, 10488,10488,10488,10488, 0,10488,10488, 0, 0, 0, 0, 0, 0, 0, 0, 0,10488,10488,10488,10488, 10488,10488,10488,10488, 0, 0, 0, 0,10488, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10488,10488,10488,10489,10489, 0,10489,10489,10489,10489,10489,10489, 0,10489,10489, 10489,10489,10489,10489,10489,10489,10489,10489,10489,10489, 10489,10489,10489,10489,10489,10489, 0, 0, 0, 0, 0,10489, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10489,10489, 10489,10489,10490,10490, 0,10490,10490,10490,10490,10490, 10490, 0,10490,10490,10490,10490,10490,10490,10490,10490, 10490,10490,10490,10490,10490,10490,10490,10490,10490,10490, 0, 0, 0, 0, 0,10490, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10490,10490,10490,10490,10497,10497,10497,10497, 10497,10497,10497,10497,10497,10497, 0, 0, 0, 0, 0, 0,10497,10497,10497,10497,10497,10497, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10497,10497, 10497,10497,10497,10497,10499,10499,10499,10499,10499,10499, 10499,10499,10499,10499, 0, 0, 0, 0, 0, 0, 10499,10499,10499,10499,10499,10499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10499,10499,10499,10499, 10499,10499,10502, 0, 0, 0, 0, 0, 0, 0, 0,10502,10502,10502,10502,10502,10502,10502,10502,10502, 10502, 0, 0, 0, 0, 0, 0,10502,10502,10502, 10502,10502,10502, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10502,10502,10502,10502,10502,10502,10508, 10508,10508,10508,10508,10508,10508,10508,10508,10508, 0, 0, 0, 0, 0, 0,10508,10508,10508,10508,10508, 10508, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10508,10508,10508,10508,10508,10508,10511,10511,10511, 10511,10511,10511,10511,10511,10511,10511, 0, 0, 0, 0, 0, 0,10511,10511,10511,10511,10511,10511, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10511, 10511,10511,10511,10511,10511,10519,10519,10519,10519,10519, 10519,10519,10519,10519,10519, 0, 0, 0, 0, 0, 0,10519,10519,10519,10519,10519,10519, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10519,10519,10519, 10519,10519,10519,10522,10522,10522,10522,10522,10522,10522, 10522,10522,10522, 0, 0, 0, 0, 0, 0,10522, 10522,10522,10522,10522,10522, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10522,10522,10522,10522,10522, 10522,10530,10530,10530,10530,10530,10530,10530,10530,10530, 0, 0, 0, 0, 0, 0, 0,10530,10530,10530, 10530,10530,10530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10530,10530,10530,10530,10530,10530,10535, 10535,10535,10535,10535,10535,10535,10535,10535,10535, 0, 0, 0, 0, 0, 0,10535,10535,10535,10535,10535, 10535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10535,10535,10535,10535,10535,10535,10537,10537,10537, 10537,10537,10537,10537,10537,10537, 0, 0, 0, 0, 0, 0, 0,10537,10537,10537,10537,10537,10537, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10537, 10537,10537,10537,10537,10537,10545, 0,10545,10545,10545, 10545,10545,10545,10545,10545,10545,10545, 0, 0, 0, 0, 0, 0,10545,10545,10545,10545,10545,10545, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10545, 10545,10545,10545,10545,10545,10549,10549, 0,10549,10549, 10549,10549,10549,10549,10549,10549,10549, 0, 0, 0, 0, 0, 0, 0, 0, 0,10549,10549,10549,10549, 10549,10549,10549, 0, 0, 0, 0, 0,10549, 0, 0,10549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10549,10549,10549,10549,10550, 10550, 0,10550,10550,10550,10550,10550,10550, 0,10550, 10550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10550,10550,10550,10550,10550,10550,10550, 0, 0, 0, 0, 0,10550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10550, 10550,10550,10551,10551, 0,10551,10551,10551,10551,10551, 10551, 0,10551,10551, 0, 0, 0, 0, 0, 0, 0, 0, 0,10551,10551,10551,10551,10551,10551,10551, 10551, 0, 0, 0, 0,10551, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10551,10551,10551,10555,10555, 0,10555,10555, 10555,10555,10555,10555, 0,10555,10555, 0, 0, 0, 0, 0, 0, 0, 0, 0,10555,10555,10555,10555, 10555,10555,10555, 0, 0, 0, 0, 0,10555, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10555,10555,10555,10556,10556, 0,10556,10556,10556,10556,10556,10556, 0,10556,10556, 0, 0, 0, 0, 0, 0, 0, 0, 0,10556, 10556,10556,10556,10556,10556,10556,10556, 0, 0, 0, 0,10556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10556,10556, 10556,10557,10557, 0,10557,10557,10557,10557,10557,10557, 0,10557,10557, 0, 0, 0, 0, 0, 0, 0, 0, 0,10557,10557,10557,10557,10557,10557,10557, 0, 0, 0, 0, 0,10557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10557,10557,10557,10558,10558, 0,10558,10558,10558, 10558,10558,10558, 0,10558,10558, 0, 0, 0, 0, 0, 0, 0, 0, 0,10558,10558,10558,10558,10558, 10558,10558,10558, 0, 0, 0, 0,10558, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10558,10558,10558,10559,10559, 0, 10559,10559,10559,10559,10559,10559, 0,10559,10559, 0, 0, 0, 0, 0, 0, 0, 0, 0,10559,10559, 10559,10559,10559,10559,10559, 0, 0, 0, 0, 0, 10559, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10559, 0, 0, 0, 0,10559,10559,10559, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10559, 10563,10563, 0,10563,10563,10563,10563,10563,10563, 0, 10563,10563, 0, 0, 0, 0, 0, 0, 0, 0, 0,10563,10563,10563,10563,10563,10563,10563, 0, 0, 0, 0, 0,10563, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10563,10563,10563,10564,10564, 0,10564,10564,10564,10564, 10564,10564, 0,10564,10564, 0, 0, 0, 0, 0, 0, 0, 0, 0,10564,10564,10564,10564,10564,10564, 10564,10564, 0, 0, 0, 0,10564, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10564,10564,10564,10567,10567, 0,10567, 10567,10567,10567,10567,10567, 0,10567,10567, 0, 0, 0, 0, 0, 0, 0, 0, 0,10567,10567,10567, 10567,10567,10567,10567, 0, 0, 0, 0, 0,10567, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10567,10567,10567,10568, 10568, 0,10568,10568,10568,10568,10568,10568, 0,10568, 10568, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10568,10568,10568,10568,10568,10568,10568,10568, 0, 0, 0, 0,10568, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10568, 10568,10568,10570,10570, 0,10570,10570,10570,10570,10570, 10570, 0,10570,10570, 0, 0, 0, 0, 0, 0, 0, 0, 0,10570,10570,10570,10570,10570,10570,10570, 0, 0, 0, 0, 0,10570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10570,10570,10570,10571,10571, 0,10571,10571, 10571,10571,10571,10571, 0,10571,10571, 0, 0, 0, 0, 0, 0, 0, 0, 0,10571,10571,10571,10571, 10571,10571,10571,10571, 0, 0, 0, 0,10571, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10571,10571,10571,10572,10572, 0,10572,10572,10572,10572,10572,10572, 0,10572,10572, 0, 0, 0, 0, 0, 0, 0, 0, 0,10572, 10572,10572,10572,10572,10572,10572, 0, 0, 0, 0, 0,10572, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10572, 0, 0,10572,10572, 10572, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10572,10573,10573, 0,10573,10573,10573,10573, 10573,10573, 0,10573,10573, 0, 0, 0, 0, 0, 0, 0, 0, 0,10573,10573,10573,10573,10573,10573, 10573, 0, 0, 0, 0, 0,10573, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10573,10573,10573,10574,10574, 0,10574, 10574,10574,10574,10574,10574, 0,10574,10574, 0, 0, 0, 0, 0, 0, 0, 0, 0,10574,10574,10574, 10574,10574,10574,10574,10574, 0, 0, 0, 0,10574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10574,10574,10574,10575, 10575, 0,10575,10575,10575,10575,10575,10575, 0,10575, 10575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10575,10575,10575,10575,10575,10575,10575, 0, 0, 0, 0, 0,10575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10575, 10575,10575,10576,10576, 0,10576,10576,10576,10576,10576, 10576, 0,10576,10576, 0, 0, 0, 0, 0, 0, 0, 0, 0,10576,10576,10576,10576,10576,10576,10576, 10576, 0, 0, 0, 0,10576, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10576,10576,10576,10577,10577, 0,10577,10577, 10577,10577,10577,10577, 0,10577,10577, 0, 0, 0, 0, 0, 0, 0, 0, 0,10577,10577,10577,10577, 10577,10577,10577, 0, 0, 0, 0, 0,10577, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10577, 0, 0,10577,10577,10577, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10577, 10588,10588, 0,10588,10588,10588,10588,10588,10588, 0, 10588,10588, 0, 0, 0, 0, 0, 0, 0, 0, 0,10588,10588,10588,10588,10588,10588,10588, 0, 0, 0, 0, 0,10588, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10588,10588,10588,10589,10589, 0,10589,10589,10589,10589, 10589,10589, 0,10589,10589, 0, 0, 0, 0, 0, 0, 0, 0, 0,10589,10589,10589,10589,10589,10589, 10589,10589, 0, 0, 0, 0,10589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10589,10589,10589,10603,10603, 0,10603, 10603,10603,10603,10603,10603, 0,10603,10603, 0, 0, 0, 0, 0, 0, 0, 0, 0,10603,10603,10603, 10603,10603,10603,10603, 0, 0, 0, 0, 0,10603, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10603,10603,10603,10604, 10604, 0,10604,10604,10604,10604,10604,10604, 0,10604, 10604, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10604,10604,10604,10604,10604,10604,10604,10604, 0, 0, 0, 0,10604, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10604, 10604,10604,10623,10623, 0,10623,10623,10623,10623,10623, 10623, 0,10623,10623, 0, 0, 0, 0, 0, 0, 0, 0, 0,10623,10623,10623,10623,10623,10623,10623, 0, 0, 0, 0, 0,10623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10623,10623,10623,10623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10623,10632, 0, 0, 0, 0, 0, 0, 0, 0,10632,10632,10632,10632,10632, 10632,10632,10632,10632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10632, 10653,10653, 0,10653,10653,10653,10653,10653,10653, 0, 10653,10653, 0, 0, 0, 0, 0, 0, 0, 0, 0,10653,10653,10653,10653,10653,10653,10653, 0, 0, 0, 0, 0,10653, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10653,10653,10653,10654,10654, 0,10654,10654,10654,10654, 10654,10654, 0,10654,10654, 0, 0, 0, 0, 0, 0, 0, 0, 0,10654,10654,10654,10654,10654,10654, 10654,10654, 0, 0, 0, 0,10654, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10654,10654,10654,10668, 0, 0, 0, 0, 0, 0, 0, 0,10668,10668,10668,10668,10668, 10668,10668,10668,10668,10668, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10668, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10668, 0,10668,10670,10670, 0,10670, 10670,10670,10670,10670,10670, 0,10670,10670, 0, 0, 0, 0, 0, 0, 0, 0, 0,10670,10670,10670, 10670,10670,10670,10670, 0, 0, 0, 0, 0,10670, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10670,10670,10670,10671, 10671, 0,10671,10671,10671,10671,10671,10671, 0,10671, 10671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10671,10671,10671,10671,10671,10671,10671,10671, 0, 0, 0, 0,10671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10671, 10671,10671,10677,10677, 0,10677,10677,10677,10677,10677, 10677, 0,10677,10677, 0, 0, 0, 0, 0, 0, 0, 0, 0,10677,10677,10677,10677,10677,10677,10677, 0, 0, 0, 0, 0,10677, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10677,10677,10677, 0, 0, 0,10677,10678, 10678, 0,10678,10678,10678,10678,10678,10678, 0,10678, 10678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10678,10678,10678,10678,10678,10678,10678,10678, 0, 0, 0, 0,10678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10678, 10678,10678, 0, 0, 0,10678,10684,10684, 0,10684, 10684,10684,10684,10684,10684, 0,10684,10684, 0, 0, 0, 0, 0, 0, 0, 0, 0,10684,10684,10684, 10684,10684,10684,10684, 0, 0, 0, 0, 0,10684, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10684,10684,10684, 0, 0, 0,10684,10685,10685, 0,10685,10685,10685,10685, 10685,10685, 0,10685,10685, 0, 0, 0, 0, 0, 0, 0, 0, 0,10685,10685,10685,10685,10685,10685, 10685, 0, 0, 0, 0, 0,10685, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10685, 0, 0, 0, 0,10685,10685,10685, 0, 0, 0,10685, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10685,10686,10686, 0,10686, 10686,10686,10686,10686,10686, 0,10686,10686, 0, 0, 0, 0, 0, 0, 0, 0, 0,10686,10686,10686, 10686,10686,10686,10686,10686, 0, 0, 0, 0,10686, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10686,10686,10686, 0, 0, 0,10686,10691,10691, 0,10691,10691,10691,10691, 10691,10691, 0,10691,10691, 0, 0, 0, 0, 0, 0, 0, 0, 0,10691,10691,10691,10691,10691,10691, 10691, 0, 0, 0, 0, 0,10691, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10691,10691,10691, 0, 0, 0,10691, 10692,10692, 0,10692,10692,10692,10692,10692,10692, 0, 10692,10692, 0, 0, 0, 0, 0, 0, 0, 0, 0,10692,10692,10692,10692,10692,10692,10692,10692, 0, 0, 0, 0,10692, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10692,10692,10692, 0, 0, 0,10692,10695,10695, 0, 10695,10695,10695,10695,10695,10695, 0,10695,10695, 0, 0, 0, 0, 0, 0, 0, 0, 0,10695,10695, 10695,10695,10695,10695,10695, 0, 0, 0, 0, 0, 10695, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10695,10695,10695, 0, 0, 0,10695,10696,10696, 0,10696,10696,10696, 10696,10696,10696, 0,10696,10696, 0, 0, 0, 0, 0, 0, 0, 0, 0,10696,10696,10696,10696,10696, 10696,10696,10696, 0, 0, 0, 0,10696, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10696,10696,10696, 0, 0, 0, 10696,10697,10697, 0,10697,10697,10697,10697,10697,10697, 0,10697,10697, 0, 0, 0, 0, 0, 0, 0, 0, 0,10697,10697,10697,10697,10697,10697,10697, 0, 0, 0, 0, 0,10697,10697, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10697,10697,10697, 0, 0, 0,10697, 0, 0, 0,10697,10698,10698, 0,10698,10698,10698,10698,10698, 10698, 0,10698,10698, 0,10698,10698,10698,10698,10698, 10698,10698,10698,10698,10698,10698,10698,10698,10698,10698, 0, 0, 0, 0, 0,10698, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10698,10698,10698, 0, 0, 0,10698,10699, 10699, 0,10699,10699,10699,10699,10699,10699, 0,10699, 10699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10699,10699,10699,10699,10699,10699,10699, 0, 0, 0, 0, 0,10699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10699, 10699,10699, 0, 0, 0,10699,10701,10701, 0,10701, 10701,10701,10701,10701,10701, 0,10701,10701, 0, 0, 0, 0, 0, 0, 0, 0, 0,10701,10701,10701, 10701,10701,10701,10701, 0, 0, 0, 0, 0,10701, 10701, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10701,10701,10701, 0, 0, 0,10701, 0, 0, 0,10701,10710,10710, 0, 10710,10710,10710,10710,10710,10710, 0,10710,10710, 0, 0, 0, 0, 0, 0, 0, 0, 0,10710,10710, 10710,10710,10710,10710,10710, 0, 0, 0, 0, 0, 10710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10710,10710,10710, 0, 0, 0,10710,10711,10711, 0,10711,10711,10711, 10711,10711,10711, 0,10711,10711, 0, 0, 0, 0, 0, 0, 0, 0, 0,10711,10711,10711,10711,10711, 10711,10711,10711, 0, 0, 0, 0,10711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10711,10711,10711, 0, 0, 0, 10711,10719,10719, 0,10719,10719,10719,10719,10719,10719, 0,10719,10719, 0, 0, 0, 0, 0, 0, 0, 0, 0,10719,10719,10719,10719,10719,10719,10719, 0, 0, 0, 0, 0,10719, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10719,10719,10719, 0, 0, 0,10719,10720,10720, 0,10720,10720,10720,10720,10720,10720, 0,10720,10720, 0, 0, 0, 0, 0, 0, 0, 0, 0,10720, 10720,10720,10720,10720,10720,10720,10720, 0, 0, 0, 0,10720, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10720,10720, 10720, 0, 0, 0,10720,10727,10727, 0,10727,10727, 10727,10727,10727,10727, 0,10727,10727, 0, 0, 0, 0, 0, 0, 0, 0, 0,10727,10727,10727,10727, 10727,10727,10727, 0, 0, 0, 0, 0,10727, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10727,10727,10727, 0, 0, 0,10727,10728,10728, 0,10728,10728,10728,10728,10728, 10728, 0,10728,10728, 0, 0, 0, 0, 0, 0, 0, 0, 0,10728,10728,10728,10728,10728,10728,10728, 10728, 0, 0, 0, 0,10728, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10728,10728,10728, 0, 0, 0,10728,10733, 10733, 0,10733,10733,10733,10733,10733,10733, 0,10733, 10733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10733,10733,10733,10733,10733,10733,10733, 0, 0, 0, 0, 0,10733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10733, 10733,10733, 0, 0, 0,10733,10734,10734, 0,10734, 10734,10734,10734,10734,10734, 0,10734,10734, 0, 0, 0, 0, 0, 0, 0, 0, 0,10734,10734,10734, 10734,10734,10734,10734,10734, 0, 0, 0, 0,10734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10734,10734,10734, 0, 0, 0,10734,10737,10737, 0,10737,10737,10737,10737, 10737,10737, 0,10737,10737, 0, 0, 0, 0, 0, 0, 0, 0, 0,10737,10737,10737,10737,10737,10737, 10737, 0, 0, 0, 0, 0,10737, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10737, 0, 0, 0, 0, 0,10737,10737,10737, 0, 0, 0,10737, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10737,10738,10738, 0,10738,10738, 10738,10738,10738,10738, 0,10738,10738, 0, 0, 0, 0, 0, 0, 0, 0, 0,10738,10738,10738,10738, 10738,10738,10738, 0, 0, 0, 0, 0,10738, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10738,10738,10738, 0, 0, 0,10738,10739,10739, 0,10739,10739,10739,10739,10739, 10739, 0,10739,10739, 0, 0, 0, 0, 0, 0, 0, 0, 0,10739,10739,10739,10739,10739,10739,10739, 10739, 0, 0, 0, 0,10739, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10739,10739,10739, 0, 0, 0,10739,10743, 10743, 0,10743,10743,10743,10743,10743,10743, 0,10743, 10743, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10743,10743,10743,10743,10743,10743,10743, 0, 0, 0, 0, 0,10743, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10743, 10743,10743, 0, 0, 0,10743,10744,10744, 0,10744, 10744,10744,10744,10744,10744, 0,10744,10744, 0, 0, 0, 0, 0, 0, 0, 0, 0,10744,10744,10744, 10744,10744,10744,10744,10744, 0, 0, 0, 0,10744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10744,10744,10744, 0, 0, 0,10744,10752,10752, 0,10752,10752,10752,10752, 10752,10752, 0,10752,10752, 0, 0, 0, 0, 0, 0, 0, 0, 0,10752,10752,10752,10752,10752,10752, 10752, 0, 0, 0, 0, 0,10752, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10752,10752,10752, 0, 0, 0,10752, 10753,10753, 0,10753,10753,10753,10753,10753,10753, 0, 10753,10753, 0, 0, 0, 0, 0, 0, 0, 0, 0,10753,10753,10753,10753,10753,10753,10753,10753, 0, 0, 0, 0,10753, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10753,10753,10753, 0, 0, 0,10753,10758,10758, 0, 10758,10758,10758,10758,10758,10758, 0,10758,10758, 0, 0, 0, 0, 0, 0, 0, 0, 0,10758,10758, 10758,10758,10758,10758,10758, 0, 0, 0, 0, 0, 10758, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10758,10758,10758, 0, 0, 0,10758,10759,10759, 0,10759,10759,10759, 10759,10759,10759, 0,10759,10759, 0, 0, 0, 0, 0, 0, 0, 0, 0,10759,10759,10759,10759,10759, 10759,10759,10759, 0, 0, 0, 0,10759, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10759,10759,10759, 0, 0, 0, 10759,10762,10762, 0,10762,10762,10762,10762,10762,10762, 0,10762,10762, 0, 0, 0, 0, 0, 0, 0, 0, 0,10762,10762,10762,10762,10762,10762,10762, 0, 0, 0, 0, 0,10762, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10762, 0, 0, 0, 0, 0,10762,10762,10762, 0, 0, 0,10762, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10762,10763,10763, 0,10763,10763,10763,10763, 10763,10763, 0,10763,10763, 0, 0, 0, 0, 0, 0, 0, 0, 0,10763,10763,10763,10763,10763,10763, 10763, 0, 0, 0, 0, 0,10763, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10763,10763,10763, 0, 0, 0,10763, 10764,10764, 0,10764,10764,10764,10764,10764,10764, 0, 10764,10764, 0, 0, 0, 0, 0, 0, 0, 0, 0,10764,10764,10764,10764,10764,10764,10764,10764, 0, 0, 0, 0,10764, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10764,10764,10764, 0, 0, 0,10764,10771,10771, 0, 10771,10771,10771,10771,10771,10771, 0,10771,10771, 0, 0, 0, 0, 0, 0, 0, 0, 0,10771,10771, 10771,10771,10771,10771,10771, 0, 0, 0, 0, 0, 10771, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10771,10771,10771, 0, 0, 0,10771,10771,10772, 0, 0, 0, 0, 0, 0, 0, 0, 0,10772,10772,10772,10772,10772, 10772,10772,10772,10772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10772,10775,10775,10775,10775,10775,10775, 10775,10775,10775, 0,10775,10775, 0, 0, 0, 0, 0, 0, 0, 0, 0,10775,10775,10775,10775,10775, 10775,10775, 0, 0, 0, 0, 0,10775, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10775,10775,10775,10776,10776,10776, 10776,10776,10776,10776,10776,10776, 0,10776,10776, 0, 0, 0, 0, 0, 0, 0, 0, 0,10776,10776, 10776,10776,10776,10776,10776,10776, 0, 0, 0, 0, 10776, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10776,10776,10776, 10780,10780,10780,10780,10780,10780,10780,10780,10780, 0, 10780,10780, 0, 0, 0, 0, 0, 0, 0, 0, 0,10780,10780,10780,10780,10780,10780,10780, 0, 0, 0, 0, 0,10780, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10780,10780,10780,10781,10781,10781,10781,10781,10781,10781, 10781,10781, 0,10781,10781, 0, 0, 0, 0, 0, 0, 0, 0, 0,10781,10781,10781,10781,10781,10781, 10781,10781, 0, 0, 0, 0,10781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10781,10781,10781,10795,10795,10795,10795, 10795,10795,10795,10795,10795, 0,10795,10795, 0, 0, 0, 0, 0, 0, 0, 0, 0,10795,10795,10795, 10795,10795,10795,10795, 0, 0, 0, 0, 0,10795, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10795,10795,10795,10796, 10796,10796,10796,10796,10796,10796,10796,10796, 0,10796, 10796, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10796,10796,10796,10796,10796,10796,10796,10796, 0, 0, 0, 0,10796, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10796, 10796,10796,10810,10810,10810,10810,10810,10810,10810,10810, 10810, 0,10810,10810, 0, 0, 0, 0, 0, 0, 0, 0, 0,10810,10810,10810,10810,10810,10810,10810, 0, 0, 0, 0, 0,10810, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10810,10810,10810,10811,10811,10811,10811,10811, 10811,10811,10811,10811, 0,10811,10811, 0, 0, 0, 0, 0, 0, 0, 0, 0,10811,10811,10811,10811, 10811,10811,10811,10811, 0, 0, 0, 0,10811, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10811,10811,10811,10831, 0, 0, 0, 0, 0, 0, 0, 0, 0,10831,10831, 10831,10831,10831,10831,10831,10831,10831, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10831, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10831,10838,10838, 0, 10838,10838,10838,10838,10838,10838, 0,10838,10838, 0, 0, 0, 0, 0, 0, 0, 0, 0,10838,10838, 10838,10838,10838,10838,10838, 0, 0, 0, 0, 0, 10838, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10838,10838,10838, 0, 0, 0, 0,10838,10842,10842, 0,10842,10842, 10842,10842, 0,10842,10842,10842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10842,10842,10842,10842, 10842,10842,10842, 0, 0, 0, 0, 0,10842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10842,10842,10842,10842,10843, 10843, 0,10843,10843,10843,10843, 0,10843,10843,10843, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10843,10843,10843,10843,10843,10843,10843,10843, 0, 0, 0, 0,10843, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10843, 10843,10843,10843,10847,10847,10847,10847,10847,10847,10847, 10847,10847, 0, 0, 0, 0, 0, 0, 0,10847, 10847,10847,10847,10847,10847, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10847,10847,10847,10847,10847, 10847,10857,10857, 0,10857,10857,10857,10857,10857,10857, 0,10857,10857, 0, 0, 0, 0, 0, 0, 0, 0, 0,10857,10857,10857,10857,10857,10857,10857, 0, 0, 0, 0, 0,10857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10857,10857,10857,10858,10858, 0,10858,10858,10858, 10858,10858,10858, 0,10858,10858, 0, 0, 0, 0, 0, 0, 0, 0, 0,10858,10858,10858,10858,10858, 10858,10858,10858, 0, 0, 0, 0,10858, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10858,10858,10858,10862,10862, 0, 10862,10862,10862,10862,10862,10862, 0,10862,10862, 0, 0, 0, 0, 0, 0, 0, 0, 0,10862,10862, 10862,10862,10862,10862,10862, 0, 0, 0, 0, 0, 10862, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10862,10862,10862, 10863,10863, 0,10863,10863,10863,10863,10863,10863, 0, 10863,10863, 0, 0, 0, 0, 0, 0, 0, 0, 0,10863,10863,10863,10863,10863,10863,10863,10863, 0, 0, 0, 0,10863, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10863,10863,10863,10865,10865, 0,10865,10865,10865,10865, 10865,10865, 0,10865,10865, 0, 0, 0, 0, 0, 0, 0, 0, 0,10865,10865,10865,10865,10865,10865, 10865, 0, 0, 0, 0, 0,10865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10865, 0, 0, 0, 0,10865,10865,10865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10865,10871,10871,10871,10871, 10871,10871,10871,10871,10871,10871, 0, 0, 0, 0, 0, 0,10871,10871,10871,10871,10871,10871, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10871,10871, 10871,10871,10871,10871,10872,10872,10872,10872,10872,10872, 10872,10872,10872,10872, 0, 0, 0, 0, 0, 0, 10872,10872,10872,10872,10872,10872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10872,10872,10872,10872, 10872,10872,10874,10874,10874,10874,10874,10874,10874,10874, 10874, 0, 0, 0, 0, 0, 0, 0,10874,10874, 10874,10874,10874,10874, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10874, 0, 0, 0,10874,10874,10874,10874,10874,10874, 10877,10877,10877,10877,10877,10877,10877,10877,10877,10877, 0, 0, 0, 0, 0, 0,10877,10877,10877,10877, 10877,10877, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10877,10877,10877,10877,10877,10877,10879,10879, 10879,10879,10879,10879,10879,10879,10879, 0, 0, 0, 0, 0, 0, 0,10879,10879,10879,10879,10879,10879, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10879,10879,10879,10879,10879,10879,10884,10884,10884,10884, 10884,10884,10884,10884,10884,10884, 0, 0, 0, 0, 0, 0,10884,10884,10884,10884,10884,10884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10884,10884, 10884,10884,10884,10884,10886,10886,10886,10886,10886,10886, 10886,10886,10886, 0, 0, 0, 0, 0, 0, 0, 10886,10886,10886,10886,10886,10886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10886,10886,10886,10886, 10886,10886,10889,10889,10889,10889,10889,10889,10889,10889, 10889, 0, 0, 0, 0, 0, 0, 0,10889,10889, 10889,10889,10889,10889, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10889,10889,10889,10889,10889,10889, 10890,10890,10890,10890,10890,10890,10890,10890,10890,10890, 0, 0, 0, 0, 0, 0,10890,10890,10890,10890, 10890,10890, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10890,10890,10890,10890,10890,10890,10892,10892, 10892,10892,10892,10892,10892,10892,10892, 0, 0, 0, 0, 0, 0, 0,10892,10892,10892,10892,10892,10892, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10892,10892,10892,10892,10892,10892,10895,10895,10895,10895, 10895,10895,10895,10895,10895, 0, 0, 0, 0, 0, 0, 0,10895,10895,10895,10895,10895,10895, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10895,10895, 10895,10895,10895,10895,10896, 0,10896,10896,10896,10896, 10896,10896,10896,10896,10896,10896, 0, 0, 0, 0, 0, 0,10896,10896,10896,10896,10896,10896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10896,10896, 10896,10896,10896,10896,10899,10899,10899,10899,10899,10899, 10899,10899,10899,10899, 0, 0, 0, 0, 0, 0, 10899,10899,10899,10899,10899,10899, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10899,10899,10899,10899, 10899,10899,10901,10901,10901,10901,10901,10901,10901,10901, 10901, 0, 0, 0, 0, 0, 0, 0,10901,10901, 10901,10901,10901,10901, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10901,10901,10901,10901,10901,10901, 10904,10904,10904,10904,10904,10904,10904,10904,10904, 0, 0, 0, 0, 0, 0, 0,10904,10904,10904,10904, 10904,10904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10904,10904,10904,10904,10904,10904,10905,10905, 10905,10905,10905,10905,10905,10905,10905,10905, 0, 0, 0, 0, 0, 0,10905,10905,10905,10905,10905,10905, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10905,10905,10905,10905,10905,10905,10908,10908,10908,10908, 10908,10908,10908,10908,10908,10908, 0, 0, 0, 0, 0, 0,10908,10908,10908,10908,10908,10908, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10908,10908, 10908,10908,10908,10908,10910,10910,10910,10910,10910,10910, 10910,10910,10910, 0, 0, 0, 0, 0, 0, 0, 10910,10910,10910,10910,10910,10910, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10910,10910,10910,10910, 10910,10910,10913,10913,10913,10913,10913,10913,10913,10913, 10913, 0, 0, 0, 0, 0, 0, 0,10913,10913, 10913,10913,10913,10913, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10913,10913,10913,10913,10913,10913, 10914,10914,10914,10914,10914,10914,10914,10914,10914,10914, 0, 0, 0, 0, 0, 0,10914,10914,10914,10914, 10914,10914, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10914,10914,10914,10914,10914,10914,10920,10920, 10920,10920,10920,10920,10920,10920,10920,10920, 0, 0, 0, 0, 0, 0,10920,10920,10920,10920,10920,10920, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10920,10920,10920,10920,10920,10920,10921,10921,10921,10921, 10921,10921,10921,10921,10921, 0, 0, 0, 0, 0, 0, 0,10921,10921,10921,10921,10921,10921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10921,10921, 10921,10921,10921,10921,10926,10926,10926,10926,10926,10926, 10926,10926,10926,10926, 0, 0, 0, 0, 0, 0, 10926,10926,10926,10926,10926,10926, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10926,10926,10926,10926, 10926,10926,10930,10930,10930,10930,10930,10930,10930,10930, 10930,10930, 0, 0, 0, 0, 0, 0,10930,10930, 10930,10930,10930,10930, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10930,10930,10930,10930,10930,10930, 10982, 0, 0, 0, 0, 0, 0,10982, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10982, 0,10982, 0,10982, 0, 0,10982, 0, 0, 0, 0,10982, 0, 0,10982, 0,10982, 0, 10982, 0,10982,10982,10982,10986,10986, 0, 0, 0, 0,10986, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10986, 0, 0, 0, 0, 0, 0,10986, 0, 0, 0, 0, 0,10986, 0, 0, 0, 0, 0, 0, 0,10986, 0,10986, 0,10986, 0, 0,10986, 0, 0, 0, 0,10986, 0, 0,10986, 0,10986, 0,10986, 0,10986,10986, 10986,10987, 0, 0, 0, 0,10987, 0, 0, 0, 0, 0, 0,10987, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10987, 0,10987, 0,10987, 0, 0,10987, 0, 0, 0, 0,10987, 0, 0,10987, 0,10987, 0,10987, 0,10987,10987, 10987,10988, 0, 0, 0, 0, 0, 0,10988, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10988, 0,10988, 0,10988, 0, 0,10988, 0, 0, 0, 0,10988, 0, 0,10988, 0,10988, 0,10988, 0,10988,10988,10988,10988,10989, 0, 0, 0, 0, 0, 0,10989, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10989, 0, 10989,10989,10989, 0, 0,10989, 0, 0, 0, 0, 10989, 0, 0,10989, 0,10989, 0,10989, 0,10989, 10989,10989,10990, 0, 0, 0, 0, 0, 0,10990, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10990, 0,10990, 0,10990, 0,10990, 10990, 0, 0, 0, 0,10990, 0, 0,10990, 0, 10990, 0,10990, 0,10990,10990,10990,10991, 0, 0, 0, 0, 0, 0,10991, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10991, 0, 10991, 0,10991, 0, 0,10991, 0, 0, 0, 0, 10991, 0, 0,10991, 0,10991, 0,10991, 0,10991, 10991,10991,10992, 0, 0, 0, 0, 0, 0,10992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10992, 0,10992, 0,10992, 0, 0, 10992, 0, 0, 0, 0,10992, 0,10992,10992, 0, 10992, 0,10992, 0,10992,10992,10992,10993, 0, 0, 0, 0, 0, 0,10993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10993, 0, 10993, 0,10993, 0, 0,10993, 0, 0, 0, 0, 10993, 0, 0,10993, 0,10993, 0,10993, 0,10993, 10993,10993,10993,10994, 0, 0, 0, 0, 0, 0, 10994, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10994, 0,10994, 0,10994, 0, 0,10994, 0, 0, 0, 0,10994, 0, 0,10994, 0,10994, 0,10994, 0,10994,10994,10994,10995, 0, 0, 0, 0, 0, 0,10995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10995, 0,10995, 0,10995, 0, 0,10995, 0, 0, 0, 0,10995, 0,10995,10995, 0,10995, 0,10995, 0, 10995,10995,10995,10996, 0, 0, 0, 0, 0, 0, 10996, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10996, 0,10996, 0,10996, 0, 0,10996, 0, 0, 0, 0,10996, 0, 0,10996, 0,10996, 0,10996, 0,10996,10996,10996,10996,10997, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10997, 0, 0, 0, 0, 0, 0, 10997, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10997, 0,10997, 0,10997, 0, 0,10997, 0, 0, 0, 0,10997, 0, 0,10997, 0,10997, 0,10997, 0,10997,10997,10997,10998, 0, 0, 0, 0, 0, 0,10998, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10998, 0,10998, 0,10998, 0, 0,10998, 0, 0, 0, 0,10998, 0, 0,10998, 0,10998, 0,10998, 0, 10998,10998,10998,10999, 0, 0, 0, 0, 0, 0, 10999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10999, 0,10999, 0,10999, 0, 0,10999, 0, 0, 0, 0,10999, 0, 0,10999, 0,10999, 0,10999, 0,10999,10999,10999,11000,11000, 0, 0, 0, 0,11000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11000, 0, 0,11000, 0, 0, 0,11000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11000, 0,11000, 0,11000, 0, 0,11000, 0, 0, 0, 0,11000, 0, 0,11000, 0,11000, 0,11000, 0,11000,11000,11000,11016,11016, 0, 0, 0, 0, 11016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11016, 0, 0, 0, 0, 0, 0,11016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11016, 0,11016, 0, 11016, 0, 0,11016,11016, 0, 0, 0,11016, 0, 0,11016, 0,11016, 0,11016, 0,11016,11016,11016, 11017, 0, 0, 0, 0, 0,11017,11017, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11017, 0, 0, 0, 0, 0, 0,11017, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11017, 0,11017, 0,11017, 0, 0,11017, 0, 0, 0, 0,11017, 0, 0,11017, 0,11017, 0,11017, 0,11017,11017,11017,11018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11018, 0, 0, 0, 0, 0, 0,11018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11018, 0,11018, 0,11018, 0, 0,11018, 0, 0, 0, 0,11018, 11018, 0,11018, 0,11018, 0,11018, 0,11018,11018, 11018,11019,11019, 0, 0, 0, 0,11019, 0, 0, 11019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11019, 0, 0, 0, 0, 0, 0,11019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11019, 0,11019, 0,11019, 0, 0, 11019, 0, 0, 0, 0,11019, 0, 0,11019, 0, 11019, 0,11019, 0,11019,11019,11019,11020,11020, 0, 0, 0, 0,11020, 0, 0,11020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11020, 0, 11020, 0, 0, 0, 0,11020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11020, 0,11020, 0,11020, 0, 0,11020, 0, 0, 0, 0,11020, 0, 0,11020, 0,11020, 0,11020, 0, 11020,11020,11020,11021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11021, 0, 0, 0, 0, 0, 0,11021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11021, 0,11021, 0, 11021, 0, 0,11021, 0, 0, 0, 0,11021, 0, 0,11021, 0,11021, 0,11021, 0,11021,11021,11021, 11036,11036, 0, 0, 0, 0,11036, 0, 0,11036, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11036, 0, 0, 0, 0, 0, 0,11036, 0, 0,11036, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11036, 0,11036, 0,11036, 0, 0,11036, 0, 0, 0, 0,11036, 0, 0,11036, 0,11036, 0,11036, 0,11036,11036,11036,11037,11037, 0, 0, 0, 0,11037, 0, 0,11037, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11037, 0, 0, 0, 0, 0, 0,11037, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11037, 0, 11037, 0,11037, 0, 0,11037, 0, 0, 0, 0, 11037, 0, 0,11037, 0,11037, 0,11037, 0,11037, 11037,11037,11049, 0,11049, 0, 0,11049,11049,11049, 11049,11049,11049,11049,11049,11049, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11049, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11049, 0, 0,11049,11051,11051, 0,11051,11051,11051,11051,11051,11051, 0,11051,11051, 0, 0, 0, 0, 0, 0, 0, 0, 0,11051, 11051,11051,11051,11051,11051,11051, 0, 0, 0, 0, 0,11051, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11051,11051, 11051,11052,11052, 0,11052,11052,11052,11052,11052,11052, 0,11052,11052, 0, 0, 0, 0, 0, 0, 0, 0, 0,11052,11052,11052,11052,11052,11052,11052,11052, 0, 0, 0, 0,11052, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11052,11052,11052,11053,11053, 0,11053,11053,11053, 11053,11053,11053, 0,11053,11053, 0, 0, 0, 0, 0, 0, 0, 0, 0,11053,11053,11053,11053,11053, 11053,11053, 0, 0, 0, 0, 0,11053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11053,11053,11053,11054,11054, 0, 11054,11054,11054,11054,11054,11054,11054,11054,11054,11054, 11054,11054,11054,11054,11054,11054,11054,11054,11054,11054, 11054,11054,11054,11054,11054,11054,11054,11054,11054,11054, 11054,11054,11054,11054,11054,11054,11054,11054,11054,11054, 11054,11054,11054,11054,11054,11054,11054,11054,11054,11054, 11054,11054,11054,11054,11054,11054,11054,11054,11054,11054, 11054,11054,11054,11054,11054,11054,11054,11054,11054,11054, 11054,11054,11054,11054,11054,11054,11055, 0, 0, 0, 0, 0, 0, 0, 0,11055,11055,11055,11055,11055, 11055,11055,11055,11055, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11055,11055,11055, 11055,11055,11055,11055,11055,11055,11055,11055,11055,11055, 11055,11055,11055,11055,11055,11055,11055,11055,11055,11055, 11055,11055,11060,11060, 0,11060,11060,11060,11060,11060, 11060, 0,11060,11060, 0, 0, 0, 0, 0, 0, 0, 0, 0,11060,11060,11060,11060,11060,11060,11060, 0, 0, 0, 0, 0,11060, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11060,11060,11060,11061,11061, 0,11061,11061, 11061,11061,11061,11061, 0,11061,11061, 0, 0, 0, 0, 0, 0, 0, 0, 0,11061,11061,11061,11061, 11061,11061,11061,11061, 0, 0, 0, 0,11061, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11061,11061,11061,11065,11065, 0,11065,11065,11065,11065,11065,11065, 0,11065,11065, 0, 0, 0, 0, 0, 0, 0, 0, 0,11065, 11065,11065,11065,11065,11065,11065, 0, 0, 0, 0, 0,11065, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11065,11065, 11065,11066,11066, 0,11066,11066,11066,11066,11066,11066, 0,11066,11066, 0, 0, 0, 0, 0, 0, 0, 0, 0,11066,11066,11066,11066,11066,11066,11066,11066, 0, 0, 0, 0,11066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11066,11066,11066,11069,11069, 0,11069,11069,11069, 11069,11069,11069, 0,11069,11069, 0, 0, 0, 0, 0, 0, 0, 0, 0,11069,11069,11069,11069,11069, 11069,11069, 0, 0, 0, 0, 0,11069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11069,11069,11069,11070,11070, 0, 11070,11070,11070,11070,11070,11070, 0,11070,11070, 0, 0, 0, 0, 0, 0, 0, 0, 0,11070,11070, 11070,11070,11070,11070,11070,11070, 0, 0, 0, 0, 11070, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11070,11070,11070, 11072,11072, 0,11072,11072,11072,11072,11072,11072, 0, 11072,11072, 0, 0, 0, 0, 0, 0, 0, 0, 0,11072,11072,11072,11072,11072,11072,11072, 0, 0, 0, 0, 0,11072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11072,11072,11072,11073,11073, 0,11073,11073,11073,11073, 11073,11073, 0,11073,11073, 0, 0, 0, 0, 0, 0, 0, 0, 0,11073,11073,11073,11073,11073,11073, 11073,11073, 0, 0, 0, 0,11073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11073,11073,11073,11074,11074, 0,11074, 11074,11074,11074,11074,11074, 0,11074,11074, 0, 0, 0, 0, 0, 0, 0, 0, 0,11074,11074,11074, 11074,11074,11074,11074, 0, 0, 0, 0, 0,11074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11074, 0, 0,11074,11074,11074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11074,11075,11075, 0,11075,11075,11075,11075,11075,11075, 0,11075,11075, 0, 0, 0, 0, 0, 0, 0, 0, 0,11075,11075,11075,11075,11075,11075,11075, 0, 0, 0, 0, 0,11075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11075,11075,11075,11076,11076, 0,11076,11076,11076, 11076,11076,11076, 0,11076,11076, 0, 0, 0, 0, 0, 0, 0, 0, 0,11076,11076,11076,11076,11076, 11076,11076,11076, 0, 0, 0, 0,11076, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11076,11076,11076,11077,11077, 0, 11077,11077,11077,11077,11077,11077, 0,11077,11077, 0, 0, 0, 0, 0, 0, 0, 0, 0,11077,11077, 11077,11077,11077,11077,11077, 0, 0, 0, 0, 0, 11077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11077, 0, 0,11077,11077,11077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11077,11078,11078, 0,11078,11078,11078,11078,11078, 11078, 0,11078,11078, 0, 0, 0, 0, 0, 0, 0, 0, 0,11078,11078,11078,11078,11078,11078,11078, 0, 0, 0, 0, 0,11078, 0, 0, 0, 0, 0,11078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11078,11078,11078,11078,11079,11079, 0,11079, 11079,11079,11079,11079,11079,11079,11079,11079,11079,11079, 11079,11079,11079,11079,11079,11079,11079,11079,11079,11079, 11079,11079,11079,11079,11079,11079,11079,11079,11079,11079, 11079,11079,11079,11079,11079,11079,11079,11079,11079,11079, 11079,11079,11079,11079,11079,11079,11079,11079,11079,11079, 11079,11079,11079,11079,11079,11079,11079,11079,11079,11079, 11079,11079,11079,11079,11079,11079,11079,11079,11079,11079, 11079,11079,11079,11079,11079,11080,11080, 0,11080,11080, 11080,11080,11080,11080, 0,11080,11080, 0, 0, 0, 0, 0, 0, 0, 0, 0,11080,11080,11080,11080, 11080,11080,11080, 0, 0, 0, 0, 0,11080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11080,11080,11080,11081,11081, 0,11081,11081,11081,11081,11081,11081, 0,11081,11081, 0, 0, 0, 0, 0, 0, 0, 0, 0,11081, 11081,11081,11081,11081,11081,11081, 0, 0, 0, 0, 0,11081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11081,11081, 11081,11084,11084, 0,11084,11084,11084,11084,11084,11084, 0,11084,11084, 0, 0, 0, 0, 0, 0, 0, 0, 0,11084,11084,11084,11084,11084,11084,11084, 0, 0, 0, 0, 0,11084,11084, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11084,11084,11084,11085,11085, 0,11085,11085,11085, 11085,11085,11085, 0,11085,11085, 0, 0, 0, 0, 0, 0, 0, 0, 0,11085,11085,11085,11085,11085, 11085,11085, 0, 0, 0, 0, 0,11085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11085,11085,11085,11085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11085,11086,11086, 0, 11086,11086,11086,11086,11086,11086, 0,11086,11086, 0, 0, 0, 0, 0, 0, 0, 0, 0,11086,11086, 11086,11086,11086,11086,11086, 0, 0, 0, 0, 0, 11086, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11086,11086,11086, 11086, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11086, 11090,11090,11090,11090,11090,11090,11090,11090,11090, 0, 0, 0, 0, 0, 0, 0,11090,11090,11090,11090, 11090,11090, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11090,11090,11090,11090,11090,11090,11093,11093, 0,11093,11093,11093,11093,11093,11093, 0,11093,11093, 0, 0, 0, 0, 0, 0, 0, 0, 0,11093, 11093,11093,11093,11093,11093,11093, 0, 0, 0, 0, 0,11093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11093,11093, 11093,11094,11094, 0,11094,11094,11094,11094,11094,11094, 0,11094,11094, 0, 0, 0, 0, 0, 0, 0, 0, 0,11094,11094,11094,11094,11094,11094,11094,11094, 0, 0, 0, 0,11094, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11094,11094,11094,11098,11098, 0,11098,11098,11098, 11098,11098,11098, 0,11098,11098, 0, 0, 0, 0, 0, 0, 0, 0, 0,11098,11098,11098,11098,11098, 11098,11098, 0, 0, 0, 0, 0,11098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11098,11098,11098,11099,11099, 0, 11099,11099,11099,11099,11099,11099, 0,11099,11099, 0, 0, 0, 0, 0, 0, 0, 0, 0,11099,11099, 11099,11099,11099,11099,11099,11099, 0, 0, 0, 0, 11099, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11099,11099,11099, 11103,11103, 0,11103,11103,11103,11103,11103,11103, 0, 11103,11103, 0, 0, 0, 0, 0, 0, 0, 0, 0,11103,11103,11103,11103,11103,11103,11103, 0, 0, 0, 0, 0,11103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11103,11103,11103,11104,11104, 0,11104,11104,11104,11104, 11104,11104, 0,11104,11104, 0, 0, 0, 0, 0, 0, 0, 0, 0,11104,11104,11104,11104,11104,11104, 11104,11104, 0, 0, 0, 0,11104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11104,11104,11104,11107,11107, 0,11107, 11107,11107,11107,11107,11107, 0,11107,11107, 0, 0, 0, 0, 0, 0, 0, 0, 0,11107,11107,11107, 11107,11107,11107,11107, 0, 0, 0, 0, 0,11107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11107,11107,11107,11108, 11108, 0,11108,11108,11108,11108,11108,11108, 0,11108, 11108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11108,11108,11108,11108,11108,11108,11108,11108, 0, 0, 0, 0,11108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11108, 11108,11108,11110,11110, 0,11110,11110,11110,11110,11110, 11110, 0,11110,11110, 0, 0, 0, 0, 0, 0, 0, 0, 0,11110,11110,11110,11110,11110,11110,11110, 0, 0, 0, 0, 0,11110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11110, 0, 0, 0, 0, 0,11110,11110,11110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11110,11111,11111, 0,11111,11111,11111, 11111,11111,11111, 0,11111,11111, 0, 0, 0, 0, 0, 0, 0, 0, 0,11111,11111,11111,11111,11111, 11111,11111, 0, 0, 0, 0, 0,11111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11111,11111,11111,11112,11112, 0, 11112,11112,11112,11112,11112,11112, 0,11112,11112, 0, 0, 0, 0, 0, 0, 0, 0, 0,11112,11112, 11112,11112,11112,11112,11112,11112, 0, 0, 0, 0, 11112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11112,11112,11112, 11113,11113, 0,11113,11113,11113,11113,11113,11113, 0, 11113,11113,11113,11113,11113,11113,11113,11113,11113,11113, 11113,11113,11113,11113,11113,11113,11113,11113, 0, 0, 0, 0, 0,11113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11113,11113,11113,11114,11114, 0,11114,11114,11114,11114, 11114,11114, 0,11114,11114, 0, 0, 0, 0, 0, 0, 0, 0, 0,11114,11114,11114,11114,11114,11114, 11114, 0, 0, 0, 0, 0,11114, 0, 0, 0, 0, 0,11114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11114,11114,11114,11115,11115, 0,11115, 11115,11115,11115,11115,11115, 0,11115,11115, 0, 0, 0, 0, 0, 0, 0, 0, 0,11115,11115,11115, 11115,11115,11115,11115, 0, 0, 0, 0, 0,11115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11115,11115,11115,11116, 11116, 0,11116,11116,11116,11116,11116,11116, 0,11116, 11116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11116,11116,11116,11116,11116,11116,11116,11116, 0, 0, 0, 0,11116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11116, 11116,11116,11119,11119, 0,11119,11119,11119,11119,11119, 11119, 0,11119,11119, 0, 0, 0, 0, 0, 0, 0, 0, 0,11119,11119,11119,11119,11119,11119,11119, 0, 0, 0, 0, 0,11119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11119,11119,11119,11120,11120, 0,11120,11120, 11120,11120,11120,11120, 0,11120,11120, 0, 0, 0, 0, 0, 0, 0, 0, 0,11120,11120,11120,11120, 11120,11120,11120,11120, 0, 0, 0, 0,11120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11120,11120,11120,11122,11122, 0,11122,11122,11122,11122,11122,11122, 0,11122,11122, 0, 0, 0, 0, 0, 0, 0, 0, 0,11122, 11122,11122,11122,11122,11122,11122, 0, 0, 0, 0, 0,11122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11122, 0, 0, 0, 0, 0,11122,11122, 11122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11122, 11123,11123, 0,11123,11123,11123,11123,11123,11123, 0, 11123,11123, 0, 0, 0, 0, 0, 0, 0, 0, 0,11123,11123,11123,11123,11123,11123,11123, 0, 0, 0, 0, 0,11123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11123,11123,11123,11124,11124, 0,11124,11124,11124,11124, 11124,11124, 0,11124,11124, 0, 0, 0, 0, 0, 0, 0, 0, 0,11124,11124,11124,11124,11124,11124, 11124,11124, 0, 0, 0, 0,11124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11124,11124,11124,11125,11125, 0,11125, 11125,11125,11125,11125,11125, 0,11125,11125,11125,11125, 11125,11125,11125,11125,11125,11125,11125,11125,11125,11125, 11125,11125,11125,11125, 0, 0, 0, 0, 0,11125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11125,11125,11125,11125, 11126,11126, 0,11126,11126,11126,11126,11126,11126, 0, 11126,11126,11126,11126,11126,11126,11126,11126,11126,11126, 11126,11126,11126,11126,11126,11126,11126,11126, 0, 0, 0, 0, 0,11126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11126,11126,11126,11126,11133,11133,11133,11133,11133,11133, 11133,11133,11133,11133, 0, 0, 0, 0, 0, 0, 11133,11133,11133,11133,11133,11133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11133,11133,11133,11133, 11133,11133,11135,11135,11135,11135,11135,11135,11135,11135, 11135,11135, 0, 0, 0, 0, 0, 0,11135,11135, 11135,11135,11135,11135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11135,11135,11135,11135,11135,11135, 11138, 0, 0, 0, 0, 0, 0, 0, 0,11138, 11138,11138,11138,11138,11138,11138,11138,11138,11138, 0, 0, 0, 0, 0, 0,11138,11138,11138,11138,11138, 11138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11138,11138,11138,11138,11138,11138,11144,11144,11144, 11144,11144,11144,11144,11144,11144,11144, 0, 0, 0, 0, 0, 0,11144,11144,11144,11144,11144,11144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11144, 11144,11144,11144,11144,11144,11147,11147,11147,11147,11147, 11147,11147,11147,11147,11147, 0, 0, 0, 0, 0, 0,11147,11147,11147,11147,11147,11147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11147,11147,11147, 11147,11147,11147,11155,11155,11155,11155,11155,11155,11155, 11155,11155,11155, 0, 0, 0, 0, 0, 0,11155, 11155,11155,11155,11155,11155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11155,11155,11155,11155,11155, 11155,11158,11158,11158,11158,11158,11158,11158,11158,11158, 11158, 0, 0, 0, 0, 0, 0,11158,11158,11158, 11158,11158,11158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11158,11158,11158,11158,11158,11158,11166, 11166,11166,11166,11166,11166,11166,11166,11166, 0, 0, 0, 0, 0, 0, 0,11166,11166,11166,11166,11166, 11166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11166,11166,11166,11166,11166,11166,11171,11171,11171, 11171,11171,11171,11171,11171,11171,11171, 0, 0, 0, 0, 0, 0,11171,11171,11171,11171,11171,11171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11171, 11171,11171,11171,11171,11171,11173,11173,11173,11173,11173, 11173,11173,11173,11173, 0, 0, 0, 0, 0, 0, 0,11173,11173,11173,11173,11173,11173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11173,11173,11173, 11173,11173,11173,11181, 0,11181,11181,11181,11181,11181, 11181,11181,11181,11181,11181, 0, 0, 0, 0, 0, 0,11181,11181,11181,11181,11181,11181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11181,11181,11181, 11181,11181,11181,11185,11185, 0,11185,11185,11185,11185, 11185,11185, 0,11185,11185, 0, 0, 0, 0, 0, 0, 0, 0, 0,11185,11185,11185,11185,11185,11185, 11185, 0, 0, 0, 0, 0,11185, 0, 0,11185, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11185,11185,11185,11186,11186, 0,11186, 11186,11186,11186,11186,11186, 0,11186,11186, 0, 0, 0, 0, 0, 0, 0, 0, 0,11186,11186,11186, 11186,11186,11186,11186, 0, 0, 0, 0, 0,11186, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11186,11186,11186,11186, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11186, 11187,11187, 0,11187,11187,11187,11187,11187,11187, 0, 11187,11187, 0, 0, 0, 0, 0, 0, 0, 0, 0,11187,11187,11187,11187,11187,11187,11187, 0, 0, 0, 0, 0,11187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11187,11187,11187,11188,11188, 0,11188,11188,11188,11188, 11188,11188, 0,11188,11188, 0, 0, 0, 0, 0, 0, 0, 0, 0,11188,11188,11188,11188,11188,11188, 11188,11188, 0, 0, 0, 0,11188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11188,11188,11188,11192,11192, 0,11192, 11192,11192,11192,11192,11192, 0,11192,11192, 0, 0, 0, 0, 0, 0, 0, 0, 0,11192,11192,11192, 11192,11192,11192,11192, 0, 0, 0, 0, 0,11192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11192,11192,11192,11193, 11193, 0,11193,11193,11193,11193,11193,11193, 0,11193, 11193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11193,11193,11193,11193,11193,11193,11193,11193, 0, 0, 0, 0,11193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11193, 11193,11193,11194,11194, 0,11194,11194,11194,11194,11194, 11194, 0,11194,11194, 0, 0, 0, 0, 0, 0, 0, 0, 0,11194,11194,11194,11194,11194,11194,11194, 0, 0, 0, 0, 0,11194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11194,11194,11194,11195,11195, 0,11195,11195, 11195,11195,11195,11195, 0,11195,11195, 0, 0, 0, 0, 0, 0, 0, 0, 0,11195,11195,11195,11195, 11195,11195,11195,11195, 0, 0, 0, 0,11195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11195,11195,11195,11196,11196, 0,11196,11196,11196,11196,11196,11196, 0,11196,11196, 0, 0, 0, 0, 0, 0, 0, 0, 0,11196, 11196,11196,11196,11196,11196,11196, 0, 0, 0, 0, 0,11196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11196, 0, 0, 0, 0,11196,11196, 11196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11196,11200,11200, 0,11200,11200,11200,11200,11200,11200, 0,11200,11200, 0, 0, 0, 0, 0, 0, 0, 0, 0,11200,11200,11200,11200,11200,11200,11200, 0, 0, 0, 0, 0,11200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11200,11200,11200,11201,11201, 0,11201,11201,11201, 11201,11201,11201, 0,11201,11201, 0, 0, 0, 0, 0, 0, 0, 0, 0,11201,11201,11201,11201,11201, 11201,11201,11201, 0, 0, 0, 0,11201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11201,11201,11201,11204,11204, 0, 11204,11204,11204,11204,11204,11204, 0,11204,11204, 0, 0, 0, 0, 0, 0, 0, 0, 0,11204,11204, 11204,11204,11204,11204,11204, 0, 0, 0, 0, 0, 11204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11204,11204,11204, 11205,11205, 0,11205,11205,11205,11205,11205,11205, 0, 11205,11205, 0, 0, 0, 0, 0, 0, 0, 0, 0,11205,11205,11205,11205,11205,11205,11205,11205, 0, 0, 0, 0,11205, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11205,11205,11205,11207,11207, 0,11207,11207,11207,11207, 11207,11207, 0,11207,11207, 0, 0, 0, 0, 0, 0, 0, 0, 0,11207,11207,11207,11207,11207,11207, 11207, 0, 0, 0, 0, 0,11207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11207,11207,11207,11208,11208, 0,11208, 11208,11208,11208,11208,11208, 0,11208,11208, 0, 0, 0, 0, 0, 0, 0, 0, 0,11208,11208,11208, 11208,11208,11208,11208,11208, 0, 0, 0, 0,11208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11208,11208,11208,11209, 11209, 0,11209,11209,11209,11209,11209,11209, 0,11209, 11209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11209,11209,11209,11209,11209,11209,11209, 0, 0, 0, 0, 0,11209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11209, 0, 0,11209, 11209,11209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11209,11210,11210, 0,11210,11210,11210, 11210,11210,11210, 0,11210,11210, 0, 0, 0, 0, 0, 0, 0, 0, 0,11210,11210,11210,11210,11210, 11210,11210, 0, 0, 0, 0, 0,11210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11210,11210,11210,11211,11211, 0, 11211,11211,11211,11211,11211,11211, 0,11211,11211,11211, 11211,11211,11211,11211,11211,11211,11211,11211,11211,11211, 11211,11211,11211,11211,11211, 0, 0, 0, 0, 0, 11211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11211,11211,11211, 11213,11213, 0,11213,11213,11213,11213,11213,11213, 0, 11213,11213, 0, 0, 0, 0, 0, 0, 0, 0, 0,11213,11213,11213,11213,11213,11213,11213, 0, 0, 0, 0, 0,11213, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11213,11213,11213,11214,11214, 0,11214,11214,11214,11214, 11214,11214, 0,11214,11214, 0, 0, 0, 0, 0, 0, 0, 0, 0,11214,11214,11214,11214,11214,11214, 11214,11214, 0, 0, 0, 0,11214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11214,11214,11214,11215,11215, 0,11215, 11215,11215,11215,11215,11215, 0,11215,11215, 0, 0, 0, 0, 0, 0, 0, 0, 0,11215,11215,11215, 11215,11215,11215,11215, 0, 0, 0, 0, 0,11215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11215, 0, 0,11215,11215,11215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11215,11217,11217, 0,11217,11217,11217,11217,11217,11217, 0,11217,11217, 0, 0, 0, 0, 0, 0, 0, 0, 0,11217,11217,11217,11217,11217,11217,11217, 0, 0, 0, 0, 0,11217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11217,11217,11217,11218,11218, 0,11218,11218,11218, 11218,11218,11218, 0,11218,11218, 0, 0, 0, 0, 0, 0, 0, 0, 0,11218,11218,11218,11218,11218, 11218,11218,11218, 0, 0, 0, 0,11218, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11218,11218,11218,11219,11219, 0, 11219,11219,11219,11219,11219,11219, 0,11219,11219, 0, 0, 0, 0, 0, 0, 0, 0, 0,11219,11219, 11219,11219,11219,11219,11219, 0, 0, 0, 0, 0, 11219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11219, 0, 0, 0, 0,11219,11219,11219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11219, 11220,11220, 0,11220,11220,11220,11220,11220,11220, 0, 11220,11220, 0, 0, 0, 0, 0, 0, 0, 0, 0,11220,11220,11220,11220,11220,11220,11220, 0, 0, 0, 0, 0,11220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11220,11220,11220,11221,11221, 0,11221,11221,11221,11221, 11221,11221,11221,11221,11221, 0, 0, 0, 0, 0, 0, 0, 0, 0,11221,11221,11221,11221,11221,11221, 11221, 0, 0, 0, 0, 0,11221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11221,11221,11221,11221,11222,11222, 0, 11222,11222,11222,11222,11222,11222, 0,11222,11222, 0, 0, 0, 0, 0, 0, 0, 0, 0,11222,11222, 11222,11222,11222,11222,11222, 0, 0, 0, 0, 0, 11222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11222,11222,11222, 11223,11223, 0,11223,11223,11223,11223,11223,11223, 0, 11223,11223, 0, 0, 0, 0, 0, 0, 0, 0, 0,11223,11223,11223,11223,11223,11223,11223,11223, 0, 0, 0, 0,11223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11223,11223,11223,11228,11228, 0,11228,11228,11228,11228, 11228,11228, 0,11228,11228, 0, 0, 0, 0, 0, 0, 0, 0, 0,11228,11228,11228,11228,11228,11228, 11228, 0, 0, 0, 0, 0,11228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11228,11228,11228,11229,11229, 0,11229, 11229,11229,11229,11229,11229, 0,11229,11229, 0, 0, 0, 0, 0, 0, 0, 0, 0,11229,11229,11229, 11229,11229,11229,11229,11229, 0, 0, 0, 0,11229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11229,11229,11229,11230, 11230, 0,11230,11230,11230,11230,11230,11230, 0,11230, 11230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11230,11230,11230,11230,11230,11230,11230, 0, 0, 0, 0, 0,11230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11230, 0, 0, 0, 0,11230, 11230,11230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11230,11232,11232, 0,11232,11232,11232,11232,11232, 11232, 0,11232,11232, 0, 0, 0, 0, 0, 0, 0, 0, 0,11232,11232,11232,11232,11232,11232,11232, 0, 0, 0, 0, 0,11232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11232,11232,11232,11233,11233, 0,11233,11233, 11233,11233,11233,11233, 0,11233,11233, 0, 0, 0, 0, 0, 0, 0, 0, 0,11233,11233,11233,11233, 11233,11233,11233,11233, 0, 0, 0, 0,11233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11233,11233,11233,11237,11237, 0,11237,11237,11237,11237,11237,11237, 0,11237,11237, 0, 0, 0, 0, 0, 0, 0, 0, 0,11237, 11237,11237,11237,11237,11237,11237, 0, 0, 0, 0, 0,11237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11237,11237, 11237,11238,11238, 0,11238,11238,11238,11238,11238,11238, 0,11238,11238, 0, 0, 0, 0, 0, 0, 0, 0, 0,11238,11238,11238,11238,11238,11238,11238,11238, 0, 0, 0, 0,11238, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11238,11238,11238,11241,11241, 0,11241,11241,11241, 11241,11241,11241, 0,11241,11241, 0, 0, 0, 0, 0, 0, 0, 0, 0,11241,11241,11241,11241,11241, 11241,11241, 0, 0, 0, 0, 0,11241, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11241,11241,11241,11242,11242, 0, 11242,11242,11242,11242,11242,11242, 0,11242,11242, 0, 0, 0, 0, 0, 0, 0, 0, 0,11242,11242, 11242,11242,11242,11242,11242,11242, 0, 0, 0, 0, 11242, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11242,11242,11242, 11244,11244, 0,11244,11244,11244,11244,11244,11244, 0, 11244,11244, 0, 0, 0, 0, 0, 0, 0, 0, 0,11244,11244,11244,11244,11244,11244,11244, 0, 0, 0, 0, 0,11244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11244,11244,11244,11245,11245, 0,11245,11245,11245,11245, 11245,11245, 0,11245,11245, 0, 0, 0, 0, 0, 0, 0, 0, 0,11245,11245,11245,11245,11245,11245, 11245,11245, 0, 0, 0, 0,11245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11245,11245,11245,11246,11246, 0,11246, 11246,11246,11246,11246,11246, 0,11246,11246, 0, 0, 0, 0, 0, 0, 0, 0, 0,11246,11246,11246, 11246,11246,11246,11246, 0, 0, 0, 0, 0,11246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11246, 0, 0,11246,11246,11246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11246,11247,11247, 0,11247,11247,11247,11247,11247,11247, 0,11247,11247, 0, 0, 0, 0, 0, 0, 0, 0, 0,11247,11247,11247,11247,11247,11247,11247, 0, 0, 0, 0, 0,11247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11247,11247,11247,11248,11248, 0,11248,11248,11248, 11248,11248,11248, 0,11248,11248, 0, 0, 0, 0, 0, 0, 0, 0, 0,11248,11248,11248,11248,11248, 11248,11248,11248, 0, 0, 0, 0,11248, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11248,11248,11248,11249,11249, 0, 11249,11249,11249,11249,11249,11249, 0,11249,11249, 0, 0, 0, 0, 0, 0, 0, 0, 0,11249,11249, 11249,11249,11249,11249,11249, 0, 0, 0, 0, 0, 11249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11249, 0, 0,11249,11249,11249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11249,11251,11251, 0,11251,11251,11251,11251,11251, 11251, 0,11251,11251, 0, 0, 0, 0, 0, 0, 0, 0, 0,11251,11251,11251,11251,11251,11251,11251, 0, 0, 0, 0, 0,11251,11251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11251,11251,11251,11252,11252, 0,11252,11252, 11252,11252,11252,11252,11252,11252,11252, 0, 0, 0, 0, 0, 0, 0, 0, 0,11252,11252,11252,11252, 11252,11252,11252, 0, 0, 0, 0, 0,11252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11252,11252,11252,11252,11268, 11268, 0,11268,11268,11268,11268,11268,11268,11268,11268, 11268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11268,11268,11268,11268,11268,11268,11268, 0, 0, 0, 0, 0,11268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11268, 11268,11268,11268,11269,11269, 0,11269,11269,11269,11269, 11269,11269, 0,11269,11269, 0, 0, 0, 0, 0, 0, 0, 0, 0,11269,11269,11269,11269,11269,11269, 11269, 0, 0, 0, 0, 0,11269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11269,11269,11269,11270,11270, 0,11270, 11270,11270,11270,11270,11270, 0,11270,11270, 0, 0, 0, 0, 0, 0, 0, 0, 0,11270,11270,11270, 11270,11270,11270,11270,11270, 0, 0, 0, 0,11270, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11270,11270,11270,11286, 11286, 0,11286,11286,11286,11286,11286,11286, 0,11286, 11286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11286,11286,11286,11286,11286,11286,11286, 0, 0, 0, 0, 0,11286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11286, 11286,11286,11287,11287, 0,11287,11287,11287,11287,11287, 11287, 0,11287,11287, 0, 0, 0, 0, 0, 0, 0, 0, 0,11287,11287,11287,11287,11287,11287,11287, 11287, 0, 0, 0, 0,11287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11287,11287,11287,11290,11290, 0,11290,11290, 11290,11290,11290,11290, 0,11290,11290, 0, 0, 0, 0, 0, 0, 0, 0, 0,11290,11290,11290,11290, 11290,11290,11290, 0, 0, 0, 0, 0,11290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11290,11290,11290,11291,11291, 0,11291,11291,11291,11291,11291,11291, 0,11291,11291, 0, 0, 0, 0, 0, 0, 0, 0, 0,11291, 11291,11291,11291,11291,11291,11291,11291, 0, 0, 0, 0,11291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11291,11291, 11291,11314,11314,11314,11314,11314,11314,11314,11314,11314, 11314, 0, 0, 0, 0, 0, 0,11314,11314,11314, 11314,11314,11314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11314,11314,11314,11314,11314,11314,11315, 11315,11315,11315,11315,11315,11315,11315,11315,11315, 0, 0, 0, 0, 0, 0,11315,11315,11315,11315,11315, 11315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11315,11315,11315,11315,11315,11315,11317,11317,11317, 11317,11317,11317,11317,11317,11317,11317, 0, 0, 0, 0, 0, 0,11317,11317,11317,11317,11317,11317, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11317, 11317,11317,11317,11317,11317,11319, 0, 0, 0, 0, 0, 0, 0, 0,11319,11319,11319,11319,11319,11319, 11319,11319,11319, 0, 0, 0, 0, 0, 0, 0, 11319,11319,11319,11319,11319,11319, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11319,11319,11319,11319, 11319,11319,11323,11323,11323,11323,11323,11323,11323,11323, 11323,11323, 0, 0, 0, 0, 0, 0,11323,11323, 11323,11323,11323,11323, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11323,11323,11323,11323,11323,11323, 11325,11325,11325,11325,11325,11325,11325,11325,11325, 0, 0, 0, 0, 0, 0, 0,11325,11325,11325,11325, 11325,11325, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11325,11325,11325,11325,11325,11325,11335,11335, 11335,11335,11335,11335,11335,11335,11335,11335, 0, 0, 0, 0, 0, 0,11335,11335,11335,11335,11335,11335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11335,11335,11335,11335,11335,11335,11337,11337,11337,11337, 11337,11337,11337,11337,11337, 0, 0, 0, 0, 0, 0, 0,11337,11337,11337,11337,11337,11337, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11337,11337, 11337,11337,11337,11337,11349,11349,11349,11349,11349,11349, 11349,11349,11349,11349, 0, 0, 0, 0, 0, 0, 11349,11349,11349,11349,11349,11349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11349,11349,11349,11349, 11349,11349,11351,11351,11351,11351,11351,11351,11351,11351, 11351, 0, 0, 0, 0, 0, 0, 0,11351,11351, 11351,11351,11351,11351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11351,11351,11351,11351,11351,11351, 11359, 0,11359,11359,11359,11359,11359,11359,11359,11359, 11359,11359, 0, 0, 0, 0, 0, 0,11359,11359, 11359,11359,11359,11359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11359,11359,11359,11359,11359,11359, 11363,11363,11363,11363,11363,11363,11363,11363,11363,11363, 0, 0, 0, 0, 0, 0,11363,11363,11363,11363, 11363,11363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11363,11363,11363,11363,11363,11363,11366,11366, 11366,11366,11366,11366,11366,11366,11366,11366, 0, 0, 0, 0, 0, 0,11366,11366,11366,11366,11366,11366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11366,11366,11366,11366,11366,11366,11374,11374,11374,11374, 11374,11374,11374,11374,11374, 0, 0, 0, 0, 0, 0, 0,11374,11374,11374,11374,11374,11374, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11374,11374, 11374,11374,11374,11374,11376,11376,11376,11376,11376,11376, 11376,11376,11376,11376, 0, 0, 0, 0, 0, 0, 11376,11376,11376,11376,11376,11376, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11376,11376,11376,11376, 11376,11376,11379,11379, 0,11379,11379,11379,11379,11379, 11379, 0,11379,11379, 0, 0, 0, 0, 0, 0, 0, 0, 0,11379,11379,11379,11379,11379,11379,11379, 0, 0, 0, 0, 0,11379, 0, 0, 0, 0, 0, 0, 0,11379, 0, 0, 0, 0, 0, 0, 0, 0,11379,11379,11379,11380,11380, 0,11380,11380, 11380,11380,11380,11380, 0,11380,11380, 0, 0, 0, 0, 0, 0, 0, 0, 0,11380,11380,11380,11380, 11380,11380,11380, 0, 0, 0, 0, 0,11380, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11380,11380,11380,11381,11381, 0,11381,11381,11381,11381,11381,11381, 0,11381,11381, 0, 0, 0, 0, 0, 0, 0, 0, 0,11381, 11381,11381,11381,11381,11381,11381,11381, 0, 0, 0, 0,11381, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11381,11381, 11381,11385,11385, 0,11385,11385,11385,11385,11385,11385, 0,11385,11385, 0, 0, 0, 0, 0, 0, 0, 0, 0,11385,11385,11385,11385,11385,11385,11385, 0, 0, 0, 0, 0,11385, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11385,11385,11385,11386,11386, 0,11386,11386,11386, 11386,11386,11386, 0,11386,11386, 0, 0, 0, 0, 0, 0, 0, 0, 0,11386,11386,11386,11386,11386, 11386,11386,11386, 0, 0, 0, 0,11386, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11386,11386,11386,11388,11388, 0, 11388,11388,11388,11388,11388,11388, 0,11388,11388, 0, 0, 0, 0, 0, 0, 0, 0, 0,11388,11388, 11388,11388,11388,11388,11388, 0, 0, 0, 0, 0, 11388, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11388,11388,11388, 11389,11389, 0,11389,11389,11389,11389,11389,11389, 0, 11389,11389, 0, 0, 0, 0, 0, 0, 0, 0, 0,11389,11389,11389,11389,11389,11389,11389,11389, 0, 0, 0, 0,11389, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11389,11389,11389,11391,11391, 0,11391,11391,11391,11391, 11391,11391, 0,11391,11391, 0, 0, 0, 0, 0, 0, 0, 0, 0,11391,11391,11391,11391,11391,11391, 11391, 0, 0, 0, 0, 0,11391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11391,11391,11391,11392,11392, 0,11392, 11392,11392,11392,11392,11392, 0,11392,11392, 0, 0, 0, 0, 0, 0, 0, 0, 0,11392,11392,11392, 11392,11392,11392,11392,11392, 0, 0, 0, 0,11392, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11392,11392,11392,11393, 11393, 0,11393,11393,11393,11393,11393,11393, 0,11393, 11393, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11393,11393,11393,11393,11393,11393,11393, 0, 0, 0, 0, 0,11393, 0,11393, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11393, 11393,11393, 0, 0, 0, 0, 0, 0, 0, 0, 11393,11396,11396, 0,11396,11396,11396,11396,11396,11396, 0,11396,11396, 0, 0, 0, 0, 0, 0, 0, 0, 0,11396,11396,11396,11396,11396,11396,11396, 0, 0, 0, 0, 0,11396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11396,11396,11396,11397,11397, 0,11397,11397,11397, 11397,11397,11397, 0,11397,11397, 0, 0, 0, 0, 0, 0, 0, 0, 0,11397,11397,11397,11397,11397, 11397,11397,11397, 0, 0, 0, 0,11397, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11397,11397,11397,11401,11401, 0, 11401,11401,11401,11401,11401,11401, 0,11401,11401, 0, 0, 0, 0, 0, 0, 0, 0, 0,11401,11401, 11401,11401,11401,11401,11401, 0, 0, 0, 0, 0, 11401, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11401,11401,11401, 11402,11402, 0,11402,11402,11402,11402,11402,11402, 0, 11402,11402, 0, 0, 0, 0, 0, 0, 0, 0, 0,11402,11402,11402,11402,11402,11402,11402,11402, 0, 0, 0, 0,11402, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11402,11402,11402,11405,11405, 0,11405,11405,11405,11405, 11405,11405, 0,11405,11405, 0, 0, 0, 0, 0, 0, 0, 0, 0,11405,11405,11405,11405,11405,11405, 11405, 0, 0, 0, 0, 0,11405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11405,11405,11405,11406,11406, 0,11406, 11406,11406,11406,11406,11406, 0,11406,11406, 0, 0, 0, 0, 0, 0, 0, 0, 0,11406,11406,11406, 11406,11406,11406,11406,11406, 0, 0, 0, 0,11406, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11406,11406,11406,11408, 11408, 0,11408,11408,11408,11408,11408,11408, 0,11408, 11408, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11408,11408,11408,11408,11408,11408,11408, 0, 0, 0, 0, 0,11408, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11408, 11408,11408,11409,11409, 0,11409,11409,11409,11409,11409, 11409, 0,11409,11409, 0, 0, 0, 0, 0, 0, 0, 0, 0,11409,11409,11409,11409,11409,11409,11409, 11409, 0, 0, 0, 0,11409, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11409,11409,11409,11410,11410, 0,11410,11410, 11410,11410,11410,11410,11410,11410,11410, 0, 0, 0, 0, 0, 0, 0, 0, 0,11410,11410,11410,11410, 11410,11410,11410,11410, 0, 0, 0, 0,11410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11410,11410,11410,11410,11410, 11411,11411, 0,11411,11411,11411,11411,11411,11411, 0, 11411,11411, 0, 0, 0, 0, 0, 0, 0, 0, 0,11411,11411,11411,11411,11411,11411,11411, 0, 0, 0, 0, 0,11411, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11411,11411,11411,11412,11412, 0,11412,11412,11412,11412, 11412,11412, 0,11412,11412, 0, 0, 0, 0, 0, 0, 0, 0, 0,11412,11412,11412,11412,11412,11412, 11412,11412, 0, 0, 0, 0,11412, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11412,11412,11412,11414,11414, 0,11414, 11414,11414,11414,11414,11414, 0,11414,11414, 0, 0, 0, 0, 0, 0, 0, 0, 0,11414,11414,11414, 11414,11414,11414,11414, 0, 0, 0, 0, 0,11414, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11414,11414,11414,11415, 11415, 0,11415,11415,11415,11415,11415,11415, 0,11415, 11415, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11415,11415,11415,11415,11415,11415,11415,11415, 0, 0, 0, 0,11415, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11415, 11415,11415,11417,11417, 0,11417,11417,11417,11417,11417, 11417, 0,11417,11417, 0, 0, 0, 0, 0, 0, 0, 0, 0,11417,11417,11417,11417,11417,11417,11417, 0, 0, 0, 0, 0,11417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11417,11417,11417,11418,11418, 0,11418,11418, 11418,11418,11418,11418, 0,11418,11418, 0, 0, 0, 0, 0, 0, 0, 0, 0,11418,11418,11418,11418, 11418,11418,11418,11418, 0, 0, 0, 0,11418, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11418,11418,11418,11419,11419, 0,11419,11419,11419,11419,11419,11419,11419,11419,11419, 0, 0, 0, 0, 0, 0, 0, 0, 0,11419, 11419,11419,11419,11419,11419,11419,11419, 0, 0, 0, 0,11419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11419,11419, 11419,11419,11419,11431,11431, 0,11431,11431,11431,11431, 11431,11431, 0,11431,11431, 0, 0, 0, 0, 0, 0, 0, 0, 0,11431,11431,11431,11431,11431,11431, 11431, 0, 0, 0, 0, 0,11431, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11431,11431,11431,11431,11461,11461, 0, 11461,11461,11461,11461,11461,11461, 0,11461,11461, 0, 0, 0, 0, 0, 0, 0, 0, 0,11461,11461, 11461,11461,11461,11461,11461, 0, 0, 0, 0, 0, 11461, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11461,11461,11461, 11462,11462, 0,11462,11462,11462,11462,11462,11462, 0, 11462,11462, 0, 0, 0, 0, 0, 0, 0, 0, 0,11462,11462,11462,11462,11462,11462,11462,11462, 0, 0, 0, 0,11462, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11462,11462,11462,11466,11466, 0,11466,11466,11466,11466, 11466,11466, 0,11466,11466, 0, 0, 0, 0, 0, 0, 0, 0, 0,11466,11466,11466,11466,11466,11466, 11466, 0, 0, 0, 0, 0,11466, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11466,11466,11466,11467,11467, 0,11467, 11467,11467,11467,11467,11467, 0,11467,11467, 0, 0, 0, 0, 0, 0, 0, 0, 0,11467,11467,11467, 11467,11467,11467,11467,11467, 0, 0, 0, 0,11467, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11467,11467,11467,11470, 11470, 0,11470,11470,11470,11470,11470,11470, 0,11470, 11470, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11470,11470,11470,11470,11470,11470,11470, 0, 0, 0, 0, 0,11470, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11470, 0, 0, 0, 0,11470, 11470,11470, 0, 0, 0, 0, 0, 0,11470, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11470,11474,11474, 0,11474,11474,11474,11474,11474, 11474, 0,11474,11474, 0, 0, 0, 0, 0, 0, 0, 0, 0,11474,11474,11474,11474,11474,11474,11474, 0, 0, 0, 0, 0,11474, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11474,11474,11474, 0, 0, 0,11474,11475, 11475, 0,11475,11475,11475,11475,11475,11475, 0,11475, 11475, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11475,11475,11475,11475,11475,11475,11475,11475, 0, 0, 0, 0,11475, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11475, 11475,11475, 0, 0, 0,11475,11483,11483, 0,11483, 11483,11483,11483,11483,11483, 0,11483,11483, 0, 0, 0, 0, 0, 0, 0, 0, 0,11483,11483,11483, 11483,11483,11483,11483, 0, 0, 0, 0, 0,11483, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11483,11483,11483, 0, 0, 0,11483,11484,11484, 0,11484,11484,11484,11484, 11484,11484, 0,11484,11484, 0, 0, 0, 0, 0, 0, 0, 0, 0,11484,11484,11484,11484,11484,11484, 11484,11484, 0, 0, 0, 0,11484, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11484,11484,11484, 0, 0, 0,11484, 11486,11486, 0,11486,11486,11486,11486,11486,11486, 0, 11486,11486, 0, 0, 0, 0, 0, 0, 0, 0, 0,11486,11486,11486,11486,11486,11486,11486, 0, 0, 0, 0, 0,11486, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11486,11486,11486, 0, 0, 0,11486,11487,11487, 0, 11487,11487,11487,11487,11487,11487, 0,11487,11487, 0, 0, 0, 0, 0, 0, 0, 0, 0,11487,11487, 11487,11487,11487,11487,11487,11487, 0, 0, 0, 0, 11487, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11487,11487,11487, 0, 0, 0,11487,11488,11488, 0,11488,11488,11488, 11488,11488,11488, 0,11488,11488, 0, 0, 0, 0, 0, 0, 0, 0, 0,11488,11488,11488,11488,11488, 11488,11488, 0, 0, 0, 0, 0,11488, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11488, 0, 0, 0, 0,11488,11488,11488, 0, 0, 0, 11488, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11488,11495,11495, 0, 11495,11495,11495,11495,11495,11495, 0,11495,11495, 0, 0, 0, 0, 0, 0, 0, 0, 0,11495,11495, 11495,11495,11495,11495,11495, 0, 0, 0, 0, 0, 11495, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11495,11495,11495, 0, 0, 0,11495,11496,11496, 0,11496,11496,11496, 11496,11496,11496, 0,11496,11496, 0, 0, 0, 0, 0, 0, 0, 0, 0,11496,11496,11496,11496,11496, 11496,11496,11496, 0, 0, 0, 0,11496, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11496,11496,11496, 0, 0, 0, 11496,11501,11501, 0,11501,11501,11501,11501,11501,11501, 0,11501,11501, 0, 0, 0, 0, 0, 0, 0, 0, 0,11501,11501,11501,11501,11501,11501,11501, 0, 0, 0, 0, 0,11501, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11501,11501,11501, 0, 0, 0,11501,11502,11502, 0,11502,11502,11502,11502,11502,11502, 0,11502,11502, 0, 0, 0, 0, 0, 0, 0, 0, 0,11502, 11502,11502,11502,11502,11502,11502,11502, 0, 0, 0, 0,11502, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11502,11502, 11502, 0, 0, 0,11502,11505,11505, 0,11505,11505, 11505,11505,11505,11505, 0,11505,11505, 0, 0, 0, 0, 0, 0, 0, 0, 0,11505,11505,11505,11505, 11505,11505,11505, 0, 0, 0, 0, 0,11505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11505,11505,11505, 0, 0, 0,11505,11506,11506, 0,11506,11506,11506,11506,11506, 11506, 0,11506,11506, 0, 0, 0, 0, 0, 0, 0, 0, 0,11506,11506,11506,11506,11506,11506,11506, 11506, 0, 0, 0, 0,11506, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11506,11506,11506, 0, 0, 0,11506,11507, 11507, 0,11507,11507,11507,11507,11507,11507, 0,11507, 11507, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11507,11507,11507,11507,11507,11507,11507, 0, 0, 0, 0, 0,11507, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11507, 0, 0,11507, 11507,11507, 0, 0, 0,11507, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11507,11509,11509, 0,11509,11509,11509, 11509,11509,11509, 0,11509,11509, 0, 0, 0, 0, 0, 0, 0, 0, 0,11509,11509,11509,11509,11509, 11509,11509, 0, 0, 0, 0, 0,11509, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11509,11509,11509, 0, 0, 0, 11509,11510,11510, 0,11510,11510,11510,11510,11510,11510, 0,11510,11510,11510,11510,11510,11510,11510,11510,11510, 11510,11510,11510,11510,11510,11510,11510,11510,11510, 0, 0, 0, 0, 0,11510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11510,11510,11510, 0, 0, 0,11510,11514,11514, 0,11514,11514,11514,11514,11514,11514, 0,11514,11514, 0, 0, 0, 0, 0, 0, 0, 0, 0,11514, 11514,11514,11514,11514,11514,11514, 0, 0, 0, 0, 0,11514, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11514,11514, 11514, 0, 0, 0,11514,11515,11515, 0,11515,11515, 11515,11515,11515,11515, 0,11515,11515, 0, 0, 0, 0, 0, 0, 0, 0, 0,11515,11515,11515,11515, 11515,11515,11515,11515, 0, 0, 0, 0,11515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11515,11515,11515, 0, 0, 0,11515,11516,11516, 0,11516,11516,11516,11516,11516, 11516, 0,11516,11516, 0, 0, 0, 0, 0, 0, 0, 0, 0,11516,11516,11516,11516,11516,11516,11516, 0, 0, 0, 0, 0,11516, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11516, 0, 0,11516,11516,11516, 0, 0, 0,11516, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11516,11544,11544, 0, 11544,11544,11544,11544,11544,11544, 0,11544,11544, 0, 0, 0, 0, 0, 0, 0, 0, 0,11544,11544, 11544,11544,11544,11544,11544, 0, 0, 0, 0, 0, 11544, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11544,11544,11544, 0, 0, 0,11544,11545,11545, 0,11545,11545,11545, 11545,11545,11545, 0,11545,11545, 0, 0, 0, 0, 0, 0, 0, 0, 0,11545,11545,11545,11545,11545, 11545,11545,11545, 0, 0, 0, 0,11545, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11545,11545,11545, 0, 0, 0, 11545,11569,11569, 0,11569,11569,11569,11569,11569,11569, 0,11569,11569, 0, 0, 0, 0, 0, 0, 0, 0, 0,11569,11569,11569,11569,11569,11569,11569, 0, 0, 0, 0, 0,11569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11569,11569,11569, 0, 0, 0,11569,11570,11570, 0,11570,11570,11570,11570,11570,11570, 0,11570,11570, 0, 0, 0, 0, 0, 0, 0, 0, 0,11570, 11570,11570,11570,11570,11570,11570,11570, 0, 0, 0, 0,11570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11570,11570, 11570, 0, 0, 0,11570,11608,11608, 0,11608,11608, 11608,11608,11608,11608, 0,11608,11608, 0, 0, 0, 0, 0, 0, 0, 0, 0,11608,11608,11608,11608, 11608,11608,11608, 0, 0, 0, 0, 0,11608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11608,11608,11608, 0, 0, 0,11608,11608,11611, 0, 0, 0, 0, 0, 0, 0, 0, 0,11611,11611,11611,11611,11611,11611,11611, 11611,11611, 0, 0, 0, 0, 0, 0, 0,11611, 0, 0, 0, 0,11611,11615,11615,11615,11615,11615, 11615,11615,11615,11615, 0,11615,11615, 0, 0, 0, 0, 0, 0, 0, 0, 0,11615,11615,11615,11615, 11615,11615,11615, 0, 0, 0, 0, 0,11615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11615,11615,11615,11616,11616, 11616,11616,11616,11616,11616,11616,11616, 0,11616,11616, 0, 0, 0, 0, 0, 0, 0, 0, 0,11616, 11616,11616,11616,11616,11616,11616,11616, 0, 0, 0, 0,11616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11616,11616, 11616,11631,11631,11631,11631,11631,11631,11631,11631,11631, 0,11631,11631, 0, 0, 0, 0, 0, 0, 0, 0, 0,11631,11631,11631,11631,11631,11631,11631, 0, 0, 0, 0, 0,11631, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11631,11631,11631,11631,11639,11639, 0,11639,11639, 11639,11639,11639,11639, 0,11639,11639, 0, 0, 0, 0, 0, 0, 0, 0, 0,11639,11639,11639,11639, 11639,11639,11639, 0, 0, 0, 0, 0,11639, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11639,11639,11639,11643,11643, 0,11643,11643,11643,11643, 0,11643,11643,11643, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11643, 11643,11643,11643,11643,11643,11643, 0, 0, 0, 0, 0,11643, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11643,11643, 11643,11643,11644,11644, 0,11644,11644,11644,11644, 0, 11644,11644,11644, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11644,11644,11644,11644,11644,11644,11644, 11644, 0, 0, 0, 0,11644, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11644,11644,11644,11644,11648,11648,11648,11648, 11648,11648,11648,11648,11648, 0, 0, 0, 0, 0, 0, 0,11648,11648,11648,11648,11648,11648, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11648,11648, 11648,11648,11648,11648,11660,11660, 0,11660,11660,11660, 11660,11660,11660, 0,11660,11660, 0, 0, 0, 0, 0, 0, 0, 0, 0,11660,11660,11660,11660,11660, 11660,11660, 0, 0, 0, 0, 0,11660, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11660,11660,11660,11661,11661, 0, 11661,11661,11661,11661,11661,11661, 0,11661,11661, 0, 0, 0, 0, 0, 0, 0, 0, 0,11661,11661, 11661,11661,11661,11661,11661,11661, 0, 0, 0, 0, 11661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11661,11661,11661, 11665,11665, 0,11665,11665,11665,11665,11665,11665,11665, 11665,11665, 0, 0, 0, 0, 0, 0, 0, 0, 0,11665,11665,11665,11665,11665,11665,11665, 0, 0, 0, 0, 0,11665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11665,11665,11665,11665,11666,11666, 0,11666,11666,11666, 11666,11666,11666, 0,11666,11666, 0, 0, 0, 0, 0, 0, 0, 0, 0,11666,11666,11666,11666,11666, 11666,11666, 0, 0, 0, 0, 0,11666, 0, 0, 0, 0, 0,11666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11666,11666,11666,11667,11667, 0, 11667,11667,11667,11667,11667,11667, 0,11667,11667, 0, 0, 0, 0, 0, 0, 0, 0, 0,11667,11667, 11667,11667,11667,11667,11667,11667, 0, 0, 0, 0, 11667, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11667,11667,11667, 11670,11670,11670,11670,11670,11670,11670,11670,11670,11670, 0, 0, 0, 0, 0, 0,11670,11670,11670,11670, 11670,11670, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11670,11670,11670,11670,11670,11670,11674,11674, 11674,11674,11674,11674,11674,11674,11674, 0, 0, 0, 0, 0, 0, 0,11674,11674,11674,11674,11674,11674, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11674, 0, 0, 0, 11674,11674,11674,11674,11674,11674,11680,11680,11680,11680, 11680,11680,11680,11680,11680, 0, 0, 0, 0, 0, 0, 0,11680,11680,11680,11680,11680,11680, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11680,11680, 11680,11680,11680,11680,11683,11683,11683,11683,11683,11683, 11683,11683,11683,11683, 0, 0, 0, 0, 0, 0, 11683,11683,11683,11683,11683,11683, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11683,11683,11683,11683, 11683,11683,11687,11687,11687,11687,11687,11687,11687,11687, 11687, 0, 0, 0, 0, 0, 0, 0,11687,11687, 11687,11687,11687,11687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11687,11687,11687,11687,11687,11687, 11690, 0,11690,11690,11690,11690,11690,11690,11690,11690, 11690,11690, 0, 0, 0, 0, 0, 0,11690,11690, 11690,11690,11690,11690, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11690,11690,11690,11690,11690,11690, 11697,11697,11697,11697,11697,11697,11697,11697,11697, 0, 0, 0, 0, 0, 0, 0,11697,11697,11697,11697, 11697,11697, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11697,11697,11697,11697,11697,11697,11700,11700, 11700,11700,11700,11700,11700,11700,11700,11700, 0, 0, 0, 0, 0, 0,11700,11700,11700,11700,11700,11700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11700,11700,11700,11700,11700,11700,11704,11704,11704,11704, 11704,11704,11704,11704,11704,11704, 0, 0, 0, 0, 0, 0,11704,11704,11704,11704,11704,11704, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11704,11704, 11704,11704,11704,11704,11708,11708,11708,11708,11708,11708, 11708,11708,11708, 0, 0, 0, 0, 0, 0, 0, 11708,11708,11708,11708,11708,11708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11708,11708,11708,11708, 11708,11708,11711,11711,11711,11711,11711,11711,11711,11711, 11711,11711, 0, 0, 0, 0, 0, 0,11711,11711, 11711,11711,11711,11711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11711,11711,11711,11711,11711,11711, 11715,11715,11715,11715,11715,11715,11715,11715,11715,11715, 0, 0, 0, 0, 0, 0,11715,11715,11715,11715, 11715,11715, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11715,11715,11715,11715,11715,11715,11719,11719, 11719,11719,11719,11719,11719,11719,11719, 0, 0, 0, 0, 0, 0, 0,11719,11719,11719,11719,11719,11719, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11719,11719,11719,11719,11719,11719,11722,11722,11722,11722, 11722,11722,11722,11722,11722,11722, 0, 0, 0, 0, 0, 0,11722,11722,11722,11722,11722,11722, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11722,11722, 11722,11722,11722,11722,11726,11726,11726,11726,11726,11726, 11726,11726,11726,11726, 0, 0, 0, 0, 0, 0, 11726,11726,11726,11726,11726,11726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11726,11726,11726,11726, 11726,11726,11727,11727,11727,11727,11727,11727,11727,11727, 11727,11727, 0, 0, 0, 0, 0, 0,11727,11727, 11727,11727,11727,11727, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11727,11727,11727,11727,11727,11727, 11729,11729,11729,11729,11729,11729,11729,11729,11729, 0, 0, 0, 0, 0, 0, 0,11729,11729,11729,11729, 11729,11729, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11729,11729,11729,11729,11729,11729,11732,11732, 11732,11732,11732,11732,11732,11732,11732, 0, 0, 0, 0, 0, 0, 0,11732,11732,11732,11732,11732,11732, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11732,11732,11732,11732,11732,11732,11733,11733,11733,11733, 11733,11733,11733,11733,11733,11733, 0, 0, 0, 0, 0, 0,11733,11733,11733,11733,11733,11733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11733,11733, 11733,11733,11733,11733,11782, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11782, 0, 0, 0, 0, 0, 0,11782, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11782, 0,11782, 0,11782, 0, 0,11782, 0, 0, 0, 0,11782, 0, 0, 11782, 0,11782, 0,11782, 0,11782,11782,11782,11782, 11784,11784, 0, 0, 0, 0,11784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11784, 0, 0, 0, 0, 0, 0,11784, 0, 0, 0, 0, 0,11784, 0, 0, 0, 0, 0, 0, 0,11784, 0,11784, 0,11784, 0, 0,11784, 0, 0, 0, 0,11784, 0, 0,11784, 0,11784, 0,11784, 0,11784,11784,11784,11785, 0, 0,11785, 0, 0, 0,11785, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11785, 0,11785, 0,11785, 0, 0,11785, 0, 0, 0, 0,11785, 0, 0,11785, 0,11785, 0,11785, 0,11785,11785, 11785,11786, 0, 0, 0, 0,11786, 0, 0, 0, 0, 0, 0,11786, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11786, 0,11786, 0,11786, 0, 0,11786, 0, 0, 0, 0,11786, 0, 0,11786, 0,11786, 0,11786, 0,11786,11786, 11786,11787, 0, 0, 0, 0, 0, 0,11787, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11787, 0,11787, 0,11787, 0, 0,11787, 0, 0, 0, 0,11787, 0, 0,11787, 0,11787, 0,11787, 0,11787,11787,11787,11788, 0, 0, 0, 0, 0, 0,11788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11788, 0,11788, 0,11788, 0, 0,11788,11788, 0, 0, 0,11788, 0, 0,11788, 0,11788, 0,11788, 0,11788,11788, 11788,11789, 0, 0, 0, 0, 0, 0,11789, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11789, 0,11789, 0,11789, 0, 0,11789, 0, 0, 0, 0,11789, 0, 0,11789, 0,11789, 0,11789, 0,11789,11789,11789,11790, 0, 0, 0, 0, 0, 0,11790, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11790, 0,11790, 0,11790, 0, 0,11790, 0, 0, 0, 0,11790, 0, 0,11790, 0,11790, 0,11790, 0,11790,11790, 11790,11791, 0, 0, 0, 0, 0, 0,11791, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11791, 0,11791,11791,11791, 0, 0,11791, 11791, 0, 0, 0,11791, 0, 0,11791, 0,11791, 0,11791, 0,11791,11791,11791,11792, 0, 0, 0, 0,11792, 0, 0, 0, 0, 0, 0,11792, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11792, 0,11792, 0,11792, 0, 0,11792, 0, 0, 0, 0,11792, 0, 0,11792, 0,11792, 11792,11792, 0,11792,11792,11792,11793, 0, 0, 0, 0, 0, 0,11793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11793, 0,11793, 0,11793, 0, 0,11793, 0, 0, 0, 0,11793, 0,11793,11793, 0,11793, 0,11793, 0,11793,11793, 11793,11794, 0, 0, 0, 0, 0, 0,11794, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11794, 0,11794, 0,11794, 0, 0,11794, 0, 0, 0, 0,11794, 0, 0,11794, 0,11794, 0,11794, 0,11794,11794,11794,11794,11795, 0, 0, 0, 0, 0, 0,11795, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11795, 0, 11795, 0,11795, 0, 0,11795, 0, 0, 0, 0, 11795, 0, 0,11795, 0,11795, 0,11795,11795,11795, 11795,11795,11796, 0, 0, 0, 0, 0, 0,11796, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11796, 0,11796, 0,11796, 0, 0, 11796, 0, 0, 0, 0,11796, 0, 0,11796, 0, 11796, 0,11796, 0,11796,11796,11796,11797, 0, 0, 0, 0, 0, 0,11797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11797, 0, 11797, 0,11797, 0, 0,11797, 0, 0, 0, 0, 11797, 0, 0,11797, 0,11797, 0,11797, 0,11797, 11797,11797,11798, 0, 0, 0, 0, 0, 0,11798, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11798,11798,11798, 0,11798, 0, 0, 11798, 0, 0, 0, 0,11798, 0, 0,11798, 0, 11798, 0,11798, 0,11798,11798,11798,11799, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11799, 0, 0, 0, 0, 0, 0,11799, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11799, 0,11799, 0,11799, 0, 0,11799, 0, 0, 0, 0,11799, 0, 0,11799, 0,11799, 0,11799, 0,11799,11799,11799,11800, 0, 0, 0, 0, 0, 0,11800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11800, 0,11800, 11800,11800, 0, 0,11800, 0, 0, 0, 0,11800, 0, 0,11800, 0,11800, 0,11800, 0,11800,11800, 11800,11801,11801, 0, 0, 0, 0,11801, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11801, 0, 0, 0, 0, 0,11801,11801, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11801, 0,11801, 0,11801, 0, 0, 11801, 0, 0, 0, 0,11801, 0, 0,11801, 0, 11801, 0,11801, 0,11801,11801,11801,11817,11817, 0, 0, 0, 0,11817, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11817, 0, 0, 0, 0, 0, 0,11817, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11817, 0,11817, 0,11817, 0, 0,11817, 0, 0, 0, 0,11817, 0, 0,11817, 0,11817, 0,11817, 0, 11817,11817,11817,11818, 0, 0, 0, 0, 0, 0, 0,11818, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11818, 0, 0, 0, 0, 0, 0, 11818, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11818, 0,11818, 0,11818, 0, 0,11818, 0, 0, 0, 0,11818, 0, 0,11818, 0,11818, 0,11818, 0,11818,11818,11818,11819,11819, 11819,11819,11819,11819,11819,11819,11819,11819, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11819, 0, 0, 0, 0, 0, 0,11819, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11819, 0,11819, 0,11819, 0, 0,11819, 0, 0, 0, 0,11819, 0, 0,11819, 0,11819, 0, 11819, 0,11819,11819,11819,11821,11821, 0, 0, 0, 0,11821, 0, 0,11821, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11821, 0, 0, 0, 0, 0, 0,11821, 0, 0, 0, 0, 0,11821, 0, 0, 0, 0, 0, 0, 0,11821, 0,11821, 0,11821, 0, 0,11821, 0, 0, 0, 0,11821, 0, 0,11821, 0,11821, 0,11821, 0,11821,11821, 11821,11822, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11822, 0, 0, 0, 0, 0, 0, 11822, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11822, 0,11822, 0,11822, 0, 0,11822, 0, 0, 0, 0,11822, 0, 0,11822, 0,11822, 0,11822, 0,11822,11822,11822,11823, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11823, 0, 0, 0, 0, 11823, 0, 0, 0, 0, 0, 0,11823, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11823, 0,11823, 0,11823, 0, 0,11823, 0, 0, 0, 0,11823, 0, 0,11823, 0,11823, 0, 11823, 0,11823,11823,11823,11824, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11824, 0, 0, 0, 0, 0, 0,11824, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11824, 0, 11824, 0,11824, 0, 0,11824, 0, 0, 0, 0, 11824, 0, 0,11824, 0,11824, 0,11824, 0,11824, 11824,11824,11824,11825, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11825, 0, 0, 0, 0, 0, 0,11825, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11825, 0,11825,11825, 11825, 0, 0,11825, 0, 0, 0, 0,11825, 0, 0,11825, 0,11825, 0,11825, 0,11825,11825,11825, 11826, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11826, 0, 0, 0, 0, 0, 0,11826, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11826, 0,11826, 0,11826, 0,11826, 11826, 0, 0, 0, 0,11826, 0, 0,11826, 0, 11826, 0,11826, 0,11826,11826,11826,11827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11827, 0, 0, 0, 0, 0, 0,11827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11827, 0,11827, 0,11827, 0, 0,11827, 0, 0, 0, 0,11827, 0, 0,11827, 0,11827, 0,11827, 0,11827,11827,11827,11828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11828, 0, 0, 0, 0, 0, 0,11828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11828, 0,11828, 0,11828, 0, 0,11828, 0, 0, 0, 0,11828, 0,11828,11828, 0,11828, 0,11828, 0,11828,11828, 11828,11829, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11829, 0, 0, 0, 0, 0, 0, 11829, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11829, 0,11829, 0,11829, 0, 0,11829, 0, 0, 0, 0,11829, 0, 0,11829, 0,11829, 0,11829, 0,11829,11829,11829,11829,11830, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11830, 0, 0, 0, 0, 0, 0,11830, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11830, 0,11830, 0,11830, 0, 0,11830, 0, 0, 0, 0,11830, 0, 0,11830, 0,11830, 0,11830, 0,11830,11830,11830,11831, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11831, 0, 0, 0, 0, 0, 0,11831, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11831, 0,11831, 0,11831, 0, 0,11831, 0, 0, 0, 0,11831, 0,11831,11831, 0,11831, 0,11831, 0, 11831,11831,11831,11832, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11832, 0, 0, 0, 0, 0, 0,11832, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11832, 0,11832, 0, 11832, 0, 0,11832, 0, 0, 0, 0,11832, 0, 0,11832, 0,11832, 0,11832, 0,11832,11832,11832, 11832,11833, 0,11833, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11833, 0, 0, 0, 0, 0, 0,11833, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11833, 0,11833, 0, 11833, 0, 0,11833, 0, 0, 0, 0,11833, 0, 0,11833, 0,11833, 0,11833, 0,11833,11833,11833, 11834, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11834, 0, 0, 0, 0, 0, 0,11834, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11834, 0,11834, 0,11834, 0, 0, 11834, 0, 0, 0, 0,11834, 0, 0,11834, 0, 11834, 0,11834, 0,11834,11834,11834,11835, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11835, 0, 0, 0, 0, 0, 0,11835, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11835, 0,11835, 0,11835, 0, 0,11835, 0, 0, 0, 0,11835, 0, 0,11835, 0,11835, 0,11835, 0,11835,11835,11835,11836,11836, 0, 0, 0, 0, 11836, 0, 0,11836, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11836, 0, 0, 0, 0, 0, 0,11836, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11836, 0,11836, 0, 11836, 0, 0,11836, 0, 0, 0, 0,11836, 0, 0,11836, 0,11836, 0,11836, 0,11836,11836,11836, 11853,11853, 0, 0, 0, 0,11853, 0, 0,11853, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11853, 0, 0, 0, 0, 0, 0,11853, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11853, 0,11853, 0,11853, 0, 0,11853, 0, 0, 0, 0,11853, 0, 0,11853, 0,11853, 0,11853, 0,11853,11853,11853,11854,11854, 0, 0, 0, 0,11854, 0, 0,11854, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11854, 0, 0, 0, 0, 0, 0,11854, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11854, 0, 11854, 0,11854, 0, 0,11854,11854, 0, 0, 0, 11854, 0, 0,11854, 0,11854, 0,11854, 0,11854, 11854,11854,11868,11868, 0,11868,11868,11868,11868,11868, 11868, 0,11868,11868, 0, 0, 0, 0, 0, 0, 0, 0, 0,11868,11868,11868,11868,11868,11868,11868, 0, 0, 0, 0, 0,11868, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11868,11868,11868,11869,11869, 0,11869,11869, 11869,11869,11869,11869, 0,11869,11869, 0, 0, 0, 0, 0, 0, 0, 0, 0,11869,11869,11869,11869, 11869,11869,11869,11869, 0, 0, 0, 0,11869, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11869,11869,11869,11873,11873, 0,11873,11873,11873,11873,11873,11873, 0,11873,11873, 0, 0, 0, 0, 0, 0, 0, 0, 0,11873, 11873,11873,11873,11873,11873,11873, 0, 0, 0, 0, 0,11873, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11873,11873, 11873,11874,11874, 0,11874,11874,11874,11874,11874,11874, 0,11874,11874, 0, 0, 0, 0, 0, 0, 0, 0, 0,11874,11874,11874,11874,11874,11874,11874,11874, 0, 0, 0, 0,11874, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11874,11874,11874,11878,11878, 0,11878,11878,11878, 11878,11878,11878, 0,11878,11878, 0, 0, 0, 0, 0, 0, 0, 0, 0,11878,11878,11878,11878,11878, 11878,11878, 0, 0, 0, 0, 0,11878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11878,11878,11878,11879,11879, 0, 11879,11879,11879,11879,11879,11879, 0,11879,11879, 0, 0, 0, 0, 0, 0, 0, 0, 0,11879,11879, 11879,11879,11879,11879,11879,11879, 0, 0, 0, 0, 11879, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11879,11879,11879, 11883,11883, 0,11883,11883,11883,11883,11883,11883, 0, 11883,11883, 0, 0, 0, 0, 0, 0, 0, 0, 0,11883,11883,11883,11883,11883,11883,11883, 0, 0, 0, 0, 0,11883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11883,11883,11883,11884,11884, 0,11884,11884,11884,11884, 11884,11884, 0,11884,11884, 0, 0, 0, 0, 0, 0, 0, 0, 0,11884,11884,11884,11884,11884,11884, 11884,11884, 0, 0, 0, 0,11884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11884,11884,11884,11887,11887, 0,11887, 11887,11887,11887,11887,11887, 0,11887,11887, 0, 0, 0, 0, 0, 0, 0, 0, 0,11887,11887,11887, 11887,11887,11887,11887, 0, 0, 0, 0, 0,11887, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11887,11887,11887,11888, 11888, 0,11888,11888,11888,11888,11888,11888, 0,11888, 11888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11888,11888,11888,11888,11888,11888,11888,11888, 0, 0, 0, 0,11888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11888, 11888,11888,11890,11890, 0,11890,11890,11890,11890,11890, 11890, 0,11890,11890, 0, 0, 0, 0, 0, 0, 0, 0, 0,11890,11890,11890,11890,11890,11890,11890, 0, 0, 0, 0, 0,11890, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11890,11890,11890,11891,11891, 0,11891,11891, 11891,11891,11891,11891, 0,11891,11891, 0, 0, 0, 0, 0, 0, 0, 0, 0,11891,11891,11891,11891, 11891,11891,11891,11891, 0, 0, 0, 0,11891, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11891,11891,11891,11892,11892, 0,11892,11892,11892,11892,11892,11892,11892,11892,11892, 0, 0, 0, 0, 0, 0, 0, 0, 0,11892, 11892,11892,11892,11892,11892,11892,11892, 0, 0, 0, 0,11892, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11892,11892, 11892,11892,11892,11893,11893, 0,11893,11893,11893,11893, 11893,11893, 0,11893,11893, 0, 0, 0, 0, 0, 0, 0, 0, 0,11893,11893,11893,11893,11893,11893, 11893, 0, 0, 0, 0, 0,11893, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11893,11893,11893,11894,11894, 0,11894, 11894,11894,11894,11894,11894, 0,11894,11894, 0, 0, 0, 0, 0, 0, 0, 0, 0,11894,11894,11894, 11894,11894,11894,11894,11894, 0, 0, 0, 0,11894, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11894,11894,11894,11896, 11896, 0,11896,11896,11896,11896,11896,11896, 0,11896, 11896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11896,11896,11896,11896,11896,11896,11896, 0, 0, 0, 0, 0,11896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11896, 11896,11896,11897,11897, 0,11897,11897,11897,11897,11897, 11897, 0,11897,11897, 0, 0, 0, 0, 0, 0, 0, 0, 0,11897,11897,11897,11897,11897,11897,11897, 11897, 0, 0, 0, 0,11897, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11897,11897,11897,11898,11898, 0,11898,11898, 11898,11898,11898,11898,11898,11898,11898, 0, 0, 0, 0, 0, 0, 0, 0, 0,11898,11898,11898,11898, 11898,11898,11898,11898, 0, 0, 0, 0,11898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11898,11898,11898,11898,11898, 11899,11899, 0,11899,11899,11899,11899,11899,11899, 0, 11899,11899, 0, 0, 0, 0, 0, 0, 0, 0, 0,11899,11899,11899,11899,11899,11899,11899, 0, 0, 0, 0, 0,11899, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11899,11899,11899,11899,11900,11900, 0,11900,11900,11900, 11900,11900,11900, 0,11900,11900, 0, 0, 0, 0, 0, 0, 0, 0, 0,11900,11900,11900,11900,11900, 11900,11900, 0, 0, 0, 0, 0,11900, 0, 0, 11900, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11900,11900,11900,11901,11901, 0, 11901,11901,11901,11901,11901,11901, 0,11901,11901, 0, 0, 0, 0, 0, 0, 0, 0, 0,11901,11901, 11901,11901,11901,11901,11901, 0, 0, 0, 0, 0, 11901, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11901,11901,11901, 11901, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11901,11902,11902, 0,11902,11902,11902,11902,11902,11902, 0,11902,11902, 0, 0, 0, 0, 0, 0, 0, 0, 0,11902,11902,11902,11902,11902,11902,11902, 0, 0, 0, 0, 0,11902, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11902,11902,11902,11902, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11902,11903,11903, 0,11903,11903, 11903,11903,11903,11903,11903,11903,11903,11903,11903,11903, 11903,11903,11903,11903,11903,11903,11903,11903,11903,11903, 11903,11903,11903,11903,11903,11903,11903,11903,11903,11903, 11903,11903,11903,11903,11903,11903,11903,11903,11903,11903, 11903,11903,11903,11903,11903,11903,11903,11903,11903,11903, 11903,11903,11903,11903,11903,11903,11903,11903,11903,11903, 11903,11903,11903,11903,11903,11903,11903,11903,11903,11903, 11903,11903,11903,11903,11908,11908, 0,11908,11908,11908, 11908,11908,11908, 0,11908,11908, 0, 0, 0, 0, 0, 0, 0, 0, 0,11908,11908,11908,11908,11908, 11908,11908, 0, 0, 0, 0, 0,11908, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11908,11908,11908,11909,11909, 0, 11909,11909,11909,11909,11909,11909, 0,11909,11909, 0, 0, 0, 0, 0, 0, 0, 0, 0,11909,11909, 11909,11909,11909,11909,11909,11909, 0, 0, 0, 0, 11909, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11909,11909,11909, 11918,11918, 0,11918,11918,11918,11918,11918,11918, 0, 11918,11918, 0, 0, 0, 0, 0, 0, 0, 0, 0,11918,11918,11918,11918,11918,11918,11918, 0, 0, 0, 0, 0,11918, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11918,11918,11918,11919,11919, 0,11919,11919,11919,11919, 11919,11919, 0,11919,11919, 0, 0, 0, 0, 0, 0, 0, 0, 0,11919,11919,11919,11919,11919,11919, 11919,11919, 0, 0, 0, 0,11919, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11919,11919,11919,11933,11933, 0,11933, 11933,11933,11933,11933,11933, 0,11933,11933,11933,11933, 11933,11933,11933,11933,11933,11933,11933,11933,11933,11933, 11933,11933,11933,11933, 0, 0, 0, 0, 0,11933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11933,11933,11933,11934, 11934, 0,11934,11934,11934,11934,11934,11934, 0,11934, 11934, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11934,11934,11934,11934,11934,11934,11934, 0, 0, 0, 0, 0,11934, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11934, 11934,11934,11950,11950,11950,11950,11950,11950,11950,11950, 11950,11950, 0, 0, 0, 0, 0, 0,11950,11950, 11950,11950,11950,11950, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11950,11950,11950,11950,11950,11950, 11953,11953,11953,11953,11953,11953,11953,11953,11953,11953, 0, 0, 0, 0, 0, 0,11953,11953,11953,11953, 11953,11953, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11953,11953,11953,11953,11953,11953,11955, 0, 0, 0, 0, 0, 0, 0, 0,11955,11955,11955, 11955,11955,11955,11955,11955,11955, 0, 0, 0, 0, 0, 0, 0,11955,11955,11955,11955,11955,11955, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11955, 11955,11955,11955,11955,11955,11959,11959,11959,11959,11959, 11959,11959,11959,11959,11959, 0, 0, 0, 0, 0, 0,11959,11959,11959,11959,11959,11959, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11959,11959,11959, 11959,11959,11959,11961,11961,11961,11961,11961,11961,11961, 11961,11961, 0, 0, 0, 0, 0, 0, 0,11961, 11961,11961,11961,11961,11961, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11961,11961,11961,11961,11961, 11961,11971,11971,11971,11971,11971,11971,11971,11971,11971, 11971, 0, 0, 0, 0, 0, 0,11971,11971,11971, 11971,11971,11971, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11971,11971,11971,11971,11971,11971,11973, 11973,11973,11973,11973,11973,11973,11973,11973, 0, 0, 0, 0, 0, 0, 0,11973,11973,11973,11973,11973, 11973, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11973,11973,11973,11973,11973,11973,11985,11985,11985, 11985,11985,11985,11985,11985,11985,11985, 0, 0, 0, 0, 0, 0,11985,11985,11985,11985,11985,11985, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11985, 11985,11985,11985,11985,11985,11987,11987,11987,11987,11987, 11987,11987,11987,11987, 0, 0, 0, 0, 0, 0, 0,11987,11987,11987,11987,11987,11987, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11987,11987,11987, 11987,11987,11987,11995, 0,11995,11995,11995,11995,11995, 11995,11995,11995,11995,11995, 0, 0, 0, 0, 0, 0,11995,11995,11995,11995,11995,11995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11995,11995,11995, 11995,11995,11995,11999,11999,11999,11999,11999,11999,11999, 11999,11999,11999, 0, 0, 0, 0, 0, 0,11999, 11999,11999,11999,11999,11999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11999,11999,11999,11999,11999, 11999,12002,12002,12002,12002,12002,12002,12002,12002,12002, 12002, 0, 0, 0, 0, 0, 0,12002,12002,12002, 12002,12002,12002, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12002,12002,12002,12002,12002,12002,12010, 12010,12010,12010,12010,12010,12010,12010,12010, 0, 0, 0, 0, 0, 0, 0,12010,12010,12010,12010,12010, 12010, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12010,12010,12010,12010,12010,12010,12012,12012,12012, 12012,12012,12012,12012,12012,12012,12012, 0, 0, 0, 0, 0, 0,12012,12012,12012,12012,12012,12012, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12012, 12012,12012,12012,12012,12012,12015,12015, 0,12015,12015, 12015,12015,12015,12015, 0,12015,12015, 0, 0, 0, 0, 0, 0, 0, 0, 0,12015,12015,12015,12015, 12015,12015,12015, 0, 0, 0, 0, 0,12015, 0, 0, 0, 0, 0, 0, 0,12015, 0, 0, 0, 0, 0, 0, 0, 0,12015,12015,12015,12016,12016, 0,12016,12016,12016,12016,12016,12016, 0,12016,12016, 0, 0, 0, 0, 0, 0, 0, 0, 0,12016, 12016,12016,12016,12016,12016,12016, 0, 0, 0, 0, 0,12016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12016,12016, 12016,12016,12017,12017, 0,12017,12017,12017,12017,12017, 12017, 0,12017,12017, 0, 0, 0, 0, 0, 0, 0, 0, 0,12017,12017,12017,12017,12017,12017,12017, 0, 0, 0, 0, 0,12017, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12017,12017,12017,12018,12018, 0,12018,12018, 12018,12018,12018,12018, 0,12018,12018, 0, 0, 0, 0, 0, 0, 0, 0, 0,12018,12018,12018,12018, 12018,12018,12018,12018, 0, 0, 0, 0,12018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12018,12018,12018,12022,12022, 0,12022,12022,12022,12022,12022,12022, 0,12022,12022, 0, 0, 0, 0, 0, 0, 0, 0, 0,12022, 12022,12022,12022,12022,12022,12022, 0, 0, 0, 0, 0,12022, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12022,12022, 12022,12023,12023, 0,12023,12023,12023,12023,12023,12023, 0,12023,12023, 0, 0, 0, 0, 0, 0, 0, 0, 0,12023,12023,12023,12023,12023,12023,12023,12023, 0, 0, 0, 0,12023, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12023,12023,12023,12025,12025, 0,12025,12025,12025, 12025,12025,12025, 0,12025,12025, 0, 0, 0, 0, 0, 0, 0, 0, 0,12025,12025,12025,12025,12025, 12025,12025, 0, 0, 0, 0, 0,12025, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12025,12025,12025,12026,12026, 0, 12026,12026,12026,12026,12026,12026, 0,12026,12026, 0, 0, 0, 0, 0, 0, 0, 0, 0,12026,12026, 12026,12026,12026,12026,12026,12026, 0, 0, 0, 0, 12026, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12026,12026,12026, 12028,12028, 0,12028,12028,12028,12028,12028,12028, 0, 12028,12028, 0, 0, 0, 0, 0, 0, 0, 0, 0,12028,12028,12028,12028,12028,12028,12028, 0, 0, 0, 0, 0,12028, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12028,12028,12028,12029,12029, 0,12029,12029,12029,12029, 12029,12029, 0,12029,12029, 0, 0, 0, 0, 0, 0, 0, 0, 0,12029,12029,12029,12029,12029,12029, 12029,12029, 0, 0, 0, 0,12029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12029,12029,12029,12030,12030, 0,12030, 12030,12030,12030,12030,12030, 0,12030,12030, 0, 0, 0, 0, 0, 0, 0, 0, 0,12030,12030,12030, 12030,12030,12030,12030, 0, 0, 0, 0, 0,12030, 0,12030, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12030,12030,12030, 0, 0, 0, 0, 0, 0, 0, 0,12030,12033,12033, 0,12033,12033,12033,12033,12033,12033, 0,12033,12033, 0, 0, 0, 0, 0, 0, 0, 0, 0,12033, 12033,12033,12033,12033,12033,12033, 0, 0, 0, 0, 0,12033, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12033,12033, 12033,12034,12034, 0,12034,12034,12034,12034,12034,12034, 0,12034,12034, 0, 0, 0, 0, 0, 0, 0, 0, 0,12034,12034,12034,12034,12034,12034,12034,12034, 0, 0, 0, 0,12034, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12034,12034,12034,12038,12038, 0,12038,12038,12038, 12038,12038,12038, 0,12038,12038, 0, 0, 0, 0, 0, 0, 0, 0, 0,12038,12038,12038,12038,12038, 12038,12038, 0, 0, 0, 0, 0,12038, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12038,12038,12038,12039,12039, 0, 12039,12039,12039,12039,12039,12039, 0,12039,12039, 0, 0, 0, 0, 0, 0, 0, 0, 0,12039,12039, 12039,12039,12039,12039,12039,12039, 0, 0, 0, 0, 12039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12039,12039,12039, 12042,12042, 0,12042,12042,12042,12042,12042,12042, 0, 12042,12042, 0, 0, 0, 0, 0, 0, 0, 0, 0,12042,12042,12042,12042,12042,12042,12042, 0, 0, 0, 0, 0,12042, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12042,12042,12042,12043,12043, 0,12043,12043,12043,12043, 12043,12043, 0,12043,12043, 0, 0, 0, 0, 0, 0, 0, 0, 0,12043,12043,12043,12043,12043,12043, 12043,12043, 0, 0, 0, 0,12043, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12043,12043,12043,12045,12045, 0,12045, 12045,12045,12045,12045,12045, 0,12045,12045, 0, 0, 0, 0, 0, 0, 0, 0, 0,12045,12045,12045, 12045,12045,12045,12045, 0, 0, 0, 0, 0,12045, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12045,12045,12045,12046, 12046, 0,12046,12046,12046,12046,12046,12046, 0,12046, 12046, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12046,12046,12046,12046,12046,12046,12046,12046, 0, 0, 0, 0,12046, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12046, 12046,12046,12047,12047, 0,12047,12047,12047,12047,12047, 12047,12047,12047,12047, 0, 0, 0, 0, 0, 0, 0, 0, 0,12047,12047,12047,12047,12047,12047,12047, 12047, 0, 0, 0, 0,12047, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12047,12047,12047,12047,12047,12048,12048, 0, 12048,12048,12048,12048,12048,12048, 0,12048,12048, 0, 0, 0, 0, 0, 0, 0, 0, 0,12048,12048, 12048,12048,12048,12048,12048, 0, 0, 0, 0, 0, 12048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12048,12048,12048, 12049,12049, 0,12049,12049,12049,12049,12049,12049, 0, 12049,12049, 0, 0, 0, 0, 0, 0, 0, 0, 0,12049,12049,12049,12049,12049,12049,12049,12049, 0, 0, 0, 0,12049, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12049,12049,12049,12052,12052, 0,12052,12052,12052,12052, 12052,12052, 0,12052,12052, 0, 0, 0, 0, 0, 0, 0, 0, 0,12052,12052,12052,12052,12052,12052, 12052, 0, 0, 0, 0, 0,12052, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12052,12052,12052,12053,12053, 0,12053, 12053,12053,12053,12053,12053, 0,12053,12053, 0, 0, 0, 0, 0, 0, 0, 0, 0,12053,12053,12053, 12053,12053,12053,12053,12053, 0, 0, 0, 0,12053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12053,12053,12053,12055, 12055, 0,12055,12055,12055,12055,12055,12055, 0,12055, 12055, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12055,12055,12055,12055,12055,12055,12055, 0, 0, 0, 0, 0,12055, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12055, 12055,12055,12056,12056, 0,12056,12056,12056,12056,12056, 12056, 0,12056,12056, 0, 0, 0, 0, 0, 0, 0, 0, 0,12056,12056,12056,12056,12056,12056,12056, 12056, 0, 0, 0, 0,12056, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12056,12056,12056,12057,12057, 0,12057,12057, 12057,12057,12057,12057,12057,12057,12057, 0, 0, 0, 0, 0, 0, 0, 0, 0,12057,12057,12057,12057, 12057,12057,12057,12057, 0, 0, 0, 0,12057, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12057,12057,12057,12057,12057, 12059,12059, 0,12059,12059,12059,12059,12059,12059, 0, 12059,12059, 0, 0, 0, 0, 0, 0, 0, 0, 0,12059,12059,12059,12059,12059,12059,12059, 0, 0, 0, 0, 0,12059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12059,12059,12059,12060,12060, 0,12060,12060,12060,12060, 12060,12060, 0,12060,12060, 0, 0, 0, 0, 0, 0, 0, 0, 0,12060,12060,12060,12060,12060,12060, 12060,12060, 0, 0, 0, 0,12060, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12060,12060,12060,12062,12062, 0,12062, 12062,12062,12062,12062,12062, 0,12062,12062, 0, 0, 0, 0, 0, 0, 0, 0, 0,12062,12062,12062, 12062,12062,12062,12062, 0, 0, 0, 0, 0,12062, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12062,12062,12062,12063, 12063, 0,12063,12063,12063,12063,12063,12063, 0,12063, 12063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12063,12063,12063,12063,12063,12063,12063,12063, 0, 0, 0, 0,12063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12063, 12063,12063,12064,12064, 0,12064,12064,12064,12064,12064, 12064, 0,12064,12064, 0, 0, 0, 0, 0, 0, 0, 0, 0,12064,12064,12064,12064,12064,12064,12064, 0, 0, 0, 0, 0,12064, 0,12064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12064,12064,12064, 0, 0, 0, 0, 0, 0, 0, 0,12064,12065,12065, 0,12065,12065,12065, 12065,12065,12065, 0,12065,12065, 0, 0, 0, 0, 0, 0, 0, 0, 0,12065,12065,12065,12065,12065, 12065,12065, 0, 0, 0, 0, 0,12065, 0, 0, 0, 0, 0,12065, 0, 0, 0, 0, 0,12065, 0, 0, 0, 0,12065,12065,12065, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12065,12066,12066, 0, 12066,12066,12066,12066,12066,12066,12066,12066,12066, 0, 0, 0, 0, 0, 0, 0, 0, 0,12066,12066, 12066,12066,12066,12066,12066, 0, 0, 0, 0, 0, 12066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12066,12066,12066, 12066,12067,12067, 0,12067,12067,12067,12067,12067,12067, 0,12067,12067, 0, 0, 0, 0, 0, 0, 0, 0, 0,12067,12067,12067,12067,12067,12067,12067, 0, 0, 0, 0, 0,12067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12067,12067,12067,12068,12068, 0,12068,12068,12068, 12068,12068,12068, 0,12068,12068, 0, 0, 0, 0, 0, 0, 0, 0, 0,12068,12068,12068,12068,12068, 12068,12068,12068, 0, 0, 0, 0,12068, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12068,12068,12068,12074,12074, 0, 12074,12074,12074,12074,12074,12074, 0,12074,12074, 0, 0, 0, 0, 0, 0, 0, 0, 0,12074,12074, 12074,12074,12074,12074,12074, 0, 0, 0, 0, 0, 12074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12074,12074,12074, 12075,12075, 0,12075,12075,12075,12075,12075,12075, 0, 12075,12075, 0, 0, 0, 0, 0, 0, 0, 0, 0,12075,12075,12075,12075,12075,12075,12075,12075, 0, 0, 0, 0,12075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12075,12075,12075,12077,12077, 0,12077,12077,12077,12077, 12077,12077, 0,12077,12077, 0, 0, 0, 0, 0, 0, 0, 0, 0,12077,12077,12077,12077,12077,12077, 12077, 0, 0, 0, 0, 0,12077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12077,12077,12077,12078,12078, 0,12078, 12078,12078,12078,12078,12078, 0,12078,12078, 0, 0, 0, 0, 0, 0, 0, 0, 0,12078,12078,12078, 12078,12078,12078,12078,12078, 0, 0, 0, 0,12078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12078,12078,12078,12079, 12079, 0,12079,12079,12079,12079,12079,12079, 0,12079, 12079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12079,12079,12079,12079,12079,12079,12079, 0, 0, 0, 0, 0,12079, 0,12079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12079, 12079,12079, 0, 0, 0, 0, 0, 0, 0, 0, 12079,12080,12080, 0,12080,12080,12080,12080,12080,12080, 0,12080,12080, 0, 0, 0, 0, 0, 0, 0, 0, 0,12080,12080,12080,12080,12080,12080,12080, 0, 0, 0, 0, 0,12080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12080,12080,12080,12081,12081, 0,12081,12081,12081, 12081,12081,12081, 0,12081,12081, 0, 0, 0, 0, 0, 0, 0, 0, 0,12081,12081,12081,12081,12081, 12081,12081,12081, 0, 0, 0, 0,12081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12081,12081,12081,12085,12085, 0, 12085,12085,12085,12085,12085,12085, 0,12085,12085, 0, 0, 0, 0, 0, 0, 0, 0, 0,12085,12085, 12085,12085,12085,12085,12085, 0, 0, 0, 0, 0, 12085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12085,12085,12085, 12086,12086, 0,12086,12086,12086,12086,12086,12086, 0, 12086,12086, 0, 0, 0, 0, 0, 0, 0, 0, 0,12086,12086,12086,12086,12086,12086,12086,12086, 0, 0, 0, 0,12086, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12086,12086,12086,12090,12090, 0,12090,12090,12090,12090, 12090,12090, 0,12090,12090, 0, 0, 0, 0, 0, 0, 0, 0, 0,12090,12090,12090,12090,12090,12090, 12090, 0, 0, 0, 0, 0,12090, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12090,12090,12090,12091,12091, 0,12091, 12091,12091,12091,12091,12091, 0,12091,12091, 0, 0, 0, 0, 0, 0, 0, 0, 0,12091,12091,12091, 12091,12091,12091,12091,12091, 0, 0, 0, 0,12091, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12091,12091,12091,12094, 12094, 0,12094,12094,12094,12094,12094,12094, 0,12094, 12094, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12094,12094,12094,12094,12094,12094,12094, 0, 0, 0, 0, 0,12094, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12094, 12094,12094,12095,12095, 0,12095,12095,12095,12095,12095, 12095, 0,12095,12095, 0, 0, 0, 0, 0, 0, 0, 0, 0,12095,12095,12095,12095,12095,12095,12095, 12095, 0, 0, 0, 0,12095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12095,12095,12095,12097,12097, 0,12097,12097, 12097,12097,12097,12097, 0,12097,12097, 0, 0, 0, 0, 0, 0, 0, 0, 0,12097,12097,12097,12097, 12097,12097,12097, 0, 0, 0, 0, 0,12097, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12097,12097,12097,12098,12098, 0,12098,12098,12098,12098,12098,12098, 0,12098,12098, 0, 0, 0, 0, 0, 0, 0, 0, 0,12098, 12098,12098,12098,12098,12098,12098,12098, 0, 0, 0, 0,12098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12098,12098, 12098,12099,12099, 0,12099,12099,12099,12099,12099,12099, 12099,12099,12099, 0, 0, 0, 0, 0, 0, 0, 0, 0,12099,12099,12099,12099,12099,12099,12099,12099, 0, 0, 0, 0,12099, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12099,12099,12099,12099,12099,12100,12100, 0,12100, 12100,12100,12100,12100,12100, 0,12100,12100, 0, 0, 0, 0, 0, 0, 0, 0, 0,12100,12100,12100, 12100,12100,12100,12100, 0, 0, 0, 0, 0,12100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12100,12100,12100,12101, 12101, 0,12101,12101,12101,12101,12101,12101, 0,12101, 12101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12101,12101,12101,12101,12101,12101,12101,12101, 0, 0, 0, 0,12101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12101, 12101,12101,12103,12103, 0,12103,12103,12103,12103,12103, 12103, 0,12103,12103, 0, 0, 0, 0, 0, 0, 0, 0, 0,12103,12103,12103,12103,12103,12103,12103, 0, 0, 0, 0, 0,12103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12103,12103,12103,12104,12104, 0,12104,12104, 12104,12104,12104,12104, 0,12104,12104, 0, 0, 0, 0, 0, 0, 0, 0, 0,12104,12104,12104,12104, 12104,12104,12104,12104, 0, 0, 0, 0,12104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12104,12104,12104,12105,12105, 0,12105,12105,12105,12105,12105,12105,12105,12105,12105, 0, 0, 0, 0, 0, 0, 0, 0, 0,12105, 12105,12105,12105,12105,12105,12105,12105, 0, 0, 0, 0,12105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12105,12105, 12105,12105,12105,12107,12107, 0,12107,12107,12107,12107, 12107,12107, 0,12107,12107, 0, 0, 0, 0, 0, 0, 0, 0, 0,12107,12107,12107,12107,12107,12107, 12107, 0, 0, 0, 0, 0,12107, 0, 0,12107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12107,12107,12107,12108,12108, 0,12108, 12108,12108,12108,12108,12108,12108,12108,12108, 0, 0, 0, 0, 0, 0, 0, 0, 0,12108,12108,12108, 12108,12108,12108,12108, 0, 0, 0, 0, 0,12108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12108,12108,12108,12108, 12121,12121, 0,12121,12121,12121,12121,12121,12121, 0, 12121,12121, 0, 0, 0, 0, 0, 0, 0, 0, 0,12121,12121,12121,12121,12121,12121,12121, 0, 0, 0, 0, 0,12121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12121,12121,12121,12132,12132,12132,12132,12132,12132,12132, 12132,12132,12132, 0, 0, 0, 0, 0, 0,12132, 12132,12132,12132,12132,12132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12132,12132,12132,12132,12132, 12132,12134,12134,12134,12134,12134,12134,12134,12134,12134, 12134, 0, 0, 0, 0, 0, 0,12134,12134,12134, 12134,12134,12134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12134,12134,12134,12134,12134,12134,12137, 0, 0, 0, 0, 0, 0, 0, 0,12137,12137, 12137,12137,12137,12137,12137,12137,12137,12137, 0, 0, 0, 0, 0, 0,12137,12137,12137,12137,12137,12137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12137,12137,12137,12137,12137,12137,12142,12142,12142,12142, 12142,12142,12142,12142,12142,12142, 0, 0, 0, 0, 0, 0,12142,12142,12142,12142,12142,12142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12142,12142, 12142,12142,12142,12142,12145,12145,12145,12145,12145,12145, 12145,12145,12145,12145, 0, 0, 0, 0, 0, 0, 12145,12145,12145,12145,12145,12145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12145,12145,12145,12145, 12145,12145,12152,12152,12152,12152,12152,12152,12152,12152, 12152,12152, 0, 0, 0, 0, 0, 0,12152,12152, 12152,12152,12152,12152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12152,12152,12152,12152,12152,12152, 12155,12155,12155,12155,12155,12155,12155,12155,12155,12155, 0, 0, 0, 0, 0, 0,12155,12155,12155,12155, 12155,12155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12155,12155,12155,12155,12155,12155,12162,12162, 12162,12162,12162,12162,12162,12162,12162, 0, 0, 0, 0, 0, 0, 0,12162,12162,12162,12162,12162,12162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12162,12162,12162,12162,12162,12162,12163,12163,12163,12163, 12163,12163,12163,12163,12163,12163, 0, 0, 0, 0, 0, 0,12163,12163,12163,12163,12163,12163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12163,12163, 12163,12163,12163,12163,12166,12166,12166,12166,12166,12166, 12166,12166,12166,12166, 0, 0, 0, 0, 0, 0, 12166,12166,12166,12166,12166,12166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12166,12166,12166,12166, 12166,12166,12173,12173,12173,12173,12173,12173,12173,12173, 12173, 0, 0, 0, 0, 0, 0, 0,12173,12173, 12173,12173,12173,12173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12173,12173,12173,12173,12173,12173, 12174, 0,12174,12174,12174,12174,12174,12174,12174,12174, 12174,12174, 0, 0, 0, 0, 0, 0,12174,12174, 12174,12174,12174,12174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12174,12174,12174,12174,12174,12174, 12181,12181,12181,12181,12181,12181,12181,12181,12181,12181, 0, 0, 0, 0, 0, 0,12181,12181,12181,12181, 12181,12181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12181,12181,12181,12181,12181,12181,12183,12183, 12183,12183,12183,12183,12183,12183,12183, 0, 0, 0, 0, 0, 0, 0,12183,12183,12183,12183,12183,12183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12183,12183,12183,12183,12183,12183,12191,12191,12191,12191, 12191,12191,12191,12191,12191,12191, 0, 0, 0, 0, 0, 0,12191,12191,12191,12191,12191,12191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12191,12191, 12191,12191,12191,12191,12199,12199,12199,12199,12199,12199, 12199,12199,12199,12199, 0, 0, 0, 0, 0, 0, 12199,12199,12199,12199,12199,12199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12199,12199,12199,12199, 12199,12199,12200,12200, 0,12200,12200,12200,12200,12200, 12200, 0,12200,12200, 0, 0, 0, 0, 0, 0, 0, 0, 0,12200,12200,12200,12200,12200,12200,12200, 0, 0, 0, 0, 0,12200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12200,12200,12200,12201,12201, 0,12201,12201, 12201,12201,12201,12201, 0,12201,12201, 0, 0, 0, 0, 0, 0, 0, 0, 0,12201,12201,12201,12201, 12201,12201,12201, 0, 0, 0, 0, 0,12201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12201,12201,12201,12202,12202, 0,12202,12202,12202,12202,12202,12202, 0,12202,12202, 0, 0, 0, 0, 0, 0, 0, 0, 0,12202, 12202,12202,12202,12202,12202,12202,12202, 0, 0, 0, 0,12202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12202,12202, 12202,12206,12206, 0,12206,12206,12206,12206,12206,12206, 0,12206,12206, 0, 0, 0, 0, 0, 0, 0, 0, 0,12206,12206,12206,12206,12206,12206,12206, 0, 0, 0, 0, 0,12206, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12206,12206,12206,12207,12207, 0,12207,12207,12207, 12207,12207,12207, 0,12207,12207, 0, 0, 0, 0, 0, 0, 0, 0, 0,12207,12207,12207,12207,12207, 12207,12207,12207, 0, 0, 0, 0,12207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12207,12207,12207,12210,12210, 0, 12210,12210,12210,12210,12210,12210, 0,12210,12210, 0, 0, 0, 0, 0, 0, 0, 0, 0,12210,12210, 12210,12210,12210,12210,12210, 0, 0, 0, 0, 0, 12210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12210,12210,12210, 12211,12211, 0,12211,12211,12211,12211,12211,12211, 0, 12211,12211, 0, 0, 0, 0, 0, 0, 0, 0, 0,12211,12211,12211,12211,12211,12211,12211,12211, 0, 0, 0, 0,12211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12211,12211,12211,12214,12214, 0,12214,12214,12214,12214, 12214,12214, 0,12214,12214, 0, 0, 0, 0, 0, 0, 0, 0, 0,12214,12214,12214,12214,12214,12214, 12214, 0, 0, 0, 0, 0,12214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12214,12214,12214,12215,12215, 0,12215, 12215,12215,12215,12215,12215, 0,12215,12215, 0, 0, 0, 0, 0, 0, 0, 0, 0,12215,12215,12215, 12215,12215,12215,12215,12215, 0, 0, 0, 0,12215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12215,12215,12215,12217, 12217, 0,12217,12217,12217,12217,12217,12217, 0,12217, 12217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12217,12217,12217,12217,12217,12217,12217, 0, 0, 0, 0, 0,12217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12217, 12217,12217,12218,12218, 0,12218,12218,12218,12218,12218, 12218, 0,12218,12218, 0, 0, 0, 0, 0, 0, 0, 0, 0,12218,12218,12218,12218,12218,12218,12218, 12218, 0, 0, 0, 0,12218, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12218,12218,12218,12219,12219, 0,12219,12219, 12219,12219,12219,12219, 0,12219,12219, 0, 0, 0, 0, 0, 0, 0, 0, 0,12219,12219,12219,12219, 12219,12219,12219, 0, 0, 0, 0, 0,12219,12219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12219,12219,12219, 0, 0, 0, 0, 0, 0, 0,12219,12220,12220, 0,12220, 12220,12220,12220,12220,12220, 0,12220,12220, 0, 0, 0, 0, 0, 0, 0, 0, 0,12220,12220,12220, 12220,12220,12220,12220, 0, 0, 0, 0, 0,12220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12220,12220,12220,12221, 12221, 0,12221,12221,12221,12221,12221,12221, 0,12221, 12221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12221,12221,12221,12221,12221,12221,12221, 0, 0, 0, 0, 0,12221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12221, 12221,12221,12222,12222, 0,12222,12222,12222,12222,12222, 12222, 0,12222,12222, 0, 0, 0, 0, 0, 0, 0, 0, 0,12222,12222,12222,12222,12222,12222,12222, 0, 0, 0, 0, 0,12222,12222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12222,12222,12222, 0, 0, 0, 0, 0, 0, 0,12222,12224,12224, 0,12224,12224,12224,12224, 12224,12224, 0,12224,12224, 0, 0, 0, 0, 0, 0, 0, 0, 0,12224,12224,12224,12224,12224,12224, 12224, 0, 0, 0, 0, 0,12224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12224,12224,12224,12225,12225, 0,12225, 12225,12225,12225,12225,12225, 0,12225,12225, 0, 0, 0, 0, 0, 0, 0, 0, 0,12225,12225,12225, 12225,12225,12225,12225,12225, 0, 0, 0, 0,12225, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12225,12225,12225,12229, 12229, 0,12229,12229,12229,12229,12229,12229, 0,12229, 12229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12229,12229,12229,12229,12229,12229,12229, 0, 0, 0, 0, 0,12229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12229, 12229,12229,12230,12230, 0,12230,12230,12230,12230,12230, 12230, 0,12230,12230, 0, 0, 0, 0, 0, 0, 0, 0, 0,12230,12230,12230,12230,12230,12230,12230, 12230, 0, 0, 0, 0,12230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12230,12230,12230,12234,12234, 0,12234,12234, 12234,12234,12234,12234, 0,12234,12234, 0, 0, 0, 0, 0, 0, 0, 0, 0,12234,12234,12234,12234, 12234,12234,12234, 0, 0, 0, 0, 0,12234, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12234,12234,12234,12235,12235, 0,12235,12235,12235,12235,12235,12235, 0,12235,12235, 0, 0, 0, 0, 0, 0, 0, 0, 0,12235, 12235,12235,12235,12235,12235,12235,12235, 0, 0, 0, 0,12235, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12235,12235, 12235,12238,12238, 0,12238,12238,12238,12238,12238,12238, 0,12238,12238, 0, 0, 0, 0, 0, 0, 0, 0, 0,12238,12238,12238,12238,12238,12238,12238, 0, 0, 0, 0, 0,12238, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12238,12238,12238,12239,12239, 0,12239,12239,12239, 12239,12239,12239, 0,12239,12239, 0, 0, 0, 0, 0, 0, 0, 0, 0,12239,12239,12239,12239,12239, 12239,12239,12239, 0, 0, 0, 0,12239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12239,12239,12239,12241,12241, 0, 12241,12241,12241,12241,12241,12241, 0,12241,12241, 0, 0, 0, 0, 0, 0, 0, 0, 0,12241,12241, 12241,12241,12241,12241,12241, 0, 0, 0, 0, 0, 12241, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12241, 0, 0, 0, 0, 0,12241,12241,12241, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12241,12242, 12242, 0,12242,12242,12242,12242,12242,12242, 0,12242, 12242, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12242,12242,12242,12242,12242,12242,12242, 0, 0, 0, 0, 0,12242, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12242, 12242,12242,12243,12243, 0,12243,12243,12243,12243,12243, 12243, 0,12243,12243, 0, 0, 0, 0, 0, 0, 0, 0, 0,12243,12243,12243,12243,12243,12243,12243, 12243, 0, 0, 0, 0,12243, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12243,12243,12243,12244,12244, 0,12244,12244, 12244,12244,12244,12244, 0,12244,12244, 0, 0, 0, 0, 0, 0, 0, 0, 0,12244,12244,12244,12244, 12244,12244,12244, 0, 0, 0, 0, 0,12244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12244,12244,12244,12245,12245, 0,12245,12245,12245,12245,12245,12245, 0,12245,12245, 0, 0, 0, 0, 0, 0, 0, 0, 0,12245, 12245,12245,12245,12245,12245,12245,12245, 0, 0, 0, 0,12245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12245,12245, 12245,12248,12248, 0,12248,12248,12248,12248,12248,12248, 0,12248,12248, 0, 0, 0, 0, 0, 0, 0, 0, 0,12248,12248,12248,12248,12248,12248,12248, 0, 0, 0, 0, 0,12248, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12248,12248,12248,12249,12249, 0,12249,12249,12249, 12249,12249,12249, 0,12249,12249, 0, 0, 0, 0, 0, 0, 0, 0, 0,12249,12249,12249,12249,12249, 12249,12249,12249, 0, 0, 0, 0,12249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12249,12249,12249,12252,12252, 0, 12252,12252,12252,12252,12252,12252, 0,12252,12252, 0, 0, 0, 0, 0, 0, 0, 0, 0,12252,12252, 12252,12252,12252,12252,12252, 0, 0, 0, 0, 0, 12252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12252,12252,12252, 12253,12253, 0,12253,12253,12253,12253,12253,12253, 0, 12253,12253, 0, 0, 0, 0, 0, 0, 0, 0, 0,12253,12253,12253,12253,12253,12253,12253,12253, 0, 0, 0, 0,12253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12253,12253,12253,12255,12255, 0,12255,12255,12255,12255, 12255,12255, 0,12255,12255, 0, 0, 0, 0, 0, 0, 0, 0, 0,12255,12255,12255,12255,12255,12255, 12255, 0, 0, 0, 0, 0,12255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12255, 0, 0, 0, 0, 0,12255,12255,12255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12255,12256,12256, 0,12256,12256, 12256,12256,12256,12256, 0,12256,12256, 0, 0, 0, 0, 0, 0, 0, 0, 0,12256,12256,12256,12256, 12256,12256,12256, 0, 0, 0, 0, 0,12256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12256,12256,12256,12257,12257, 0,12257,12257,12257,12257,12257,12257, 0,12257,12257, 0, 0, 0, 0, 0, 0, 0, 0, 0,12257, 12257,12257,12257,12257,12257,12257,12257, 0, 0, 0, 0,12257, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12257,12257, 12257,12286,12286, 0,12286,12286,12286,12286,12286,12286, 0,12286,12286, 0, 0, 0, 0, 0, 0, 0, 0, 0,12286,12286,12286,12286,12286,12286,12286, 0, 0, 0, 0, 0,12286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12286,12286,12286,12287,12287, 0,12287,12287,12287, 12287,12287,12287, 0,12287,12287, 0, 0, 0, 0, 0, 0, 0, 0, 0,12287,12287,12287,12287,12287, 12287,12287,12287, 0, 0, 0, 0,12287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12287,12287,12287,12291,12291, 0, 12291,12291,12291,12291,12291,12291,12291,12291,12291, 0, 0, 0, 0, 0, 0, 0, 0, 0,12291,12291, 12291,12291,12291,12291,12291, 0, 0, 0, 0, 0, 12291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12291,12291,12291, 12291,12292,12292, 0,12292,12292,12292,12292,12292,12292, 0,12292,12292, 0, 0, 0, 0, 0, 0, 0, 0, 0,12292,12292,12292,12292,12292,12292,12292, 0, 0, 0, 0, 0,12292, 0, 0, 0, 0, 0, 12292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12292,12292,12292,12293,12293, 0,12293,12293,12293, 12293,12293,12293, 0,12293,12293, 0, 0, 0, 0, 0, 0, 0, 0, 0,12293,12293,12293,12293,12293, 12293,12293, 0, 0, 0, 0, 0,12293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12293,12293,12293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12293,12294,12294, 0,12294,12294,12294,12294,12294,12294, 0,12294,12294, 0, 0, 0, 0, 0, 0, 0, 0, 0,12294,12294,12294,12294,12294,12294,12294,12294, 0, 0, 0, 0,12294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12294,12294,12294,12298,12298, 0,12298,12298,12298, 12298,12298,12298, 0,12298,12298, 0, 0, 0, 0, 0, 0, 0, 0, 0,12298,12298,12298,12298,12298, 12298,12298, 0, 0, 0, 0, 0,12298, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12298,12298,12298, 0, 0, 0, 12298,12299,12299, 0,12299,12299,12299,12299,12299,12299, 0,12299,12299, 0, 0, 0, 0, 0, 0, 0, 0, 0,12299,12299,12299,12299,12299,12299,12299,12299, 0, 0, 0, 0,12299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12299,12299,12299, 0, 0, 0,12299,12308,12308, 0,12308,12308,12308,12308,12308,12308, 0,12308,12308, 0, 0, 0, 0, 0, 0, 0, 0, 0,12308, 12308,12308,12308,12308,12308,12308, 0, 0, 0, 0, 0,12308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12308,12308, 12308, 0, 0, 0,12308,12309,12309, 0,12309,12309, 12309,12309,12309,12309, 0,12309,12309, 0, 0, 0, 0, 0, 0, 0, 0, 0,12309,12309,12309,12309, 12309,12309,12309,12309, 0, 0, 0, 0,12309, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12309,12309,12309, 0, 0, 0,12309,12313,12313, 0,12313,12313,12313,12313,12313, 12313, 0,12313,12313, 0, 0, 0, 0, 0, 0, 0, 0, 0,12313,12313,12313,12313,12313,12313,12313, 0, 0, 0, 0, 0,12313, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12313,12313,12313, 0, 0, 0,12313,12314, 12314, 0,12314,12314,12314,12314,12314,12314, 0,12314, 12314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12314,12314,12314,12314,12314,12314,12314,12314, 0, 0, 0, 0,12314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12314, 12314,12314, 0, 0, 0,12314,12317,12317, 0,12317, 12317,12317,12317,12317,12317, 0,12317,12317, 0, 0, 0, 0, 0, 0, 0, 0, 0,12317,12317,12317, 12317,12317,12317,12317, 0, 0, 0, 0, 0,12317, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12317,12317,12317, 0, 0, 0,12317,12318,12318, 0,12318,12318,12318,12318, 12318,12318, 0,12318,12318, 0, 0, 0, 0, 0, 0, 0, 0, 0,12318,12318,12318,12318,12318,12318, 12318,12318, 0, 0, 0, 0,12318, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12318,12318,12318, 0, 0, 0,12318, 12319,12319, 0,12319,12319,12319,12319,12319,12319, 0, 12319,12319, 0, 0, 0, 0, 0, 0, 0, 0, 0,12319,12319,12319,12319,12319,12319,12319, 0, 0, 0, 0, 0,12319, 0,12319, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12319,12319,12319, 0, 0, 0,12319, 0, 0, 0, 0,12319,12326,12326, 0,12326,12326,12326,12326,12326, 12326, 0,12326,12326, 0, 0, 0, 0, 0, 0, 0, 0, 0,12326,12326,12326,12326,12326,12326,12326, 0, 0, 0, 0, 0,12326, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12326,12326,12326, 0, 0, 0,12326,12327, 12327, 0,12327,12327,12327,12327,12327,12327, 0,12327, 12327, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12327,12327,12327,12327,12327,12327,12327,12327, 0, 0, 0, 0,12327, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12327, 12327,12327, 0, 0, 0,12327,12334,12334, 0,12334, 12334,12334,12334,12334,12334, 0,12334,12334, 0, 0, 0, 0, 0, 0, 0, 0, 0,12334,12334,12334, 12334,12334,12334,12334, 0, 0, 0, 0, 0,12334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12334,12334,12334, 0, 0, 0,12334,12335,12335, 0,12335,12335,12335,12335, 12335,12335, 0,12335,12335, 0, 0, 0, 0, 0, 0, 0, 0, 0,12335,12335,12335,12335,12335,12335, 12335,12335, 0, 0, 0, 0,12335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12335,12335,12335, 0, 0, 0,12335, 12340,12340, 0,12340,12340,12340,12340,12340,12340, 0, 12340,12340, 0, 0, 0, 0, 0, 0, 0, 0, 0,12340,12340,12340,12340,12340,12340,12340, 0, 0, 0, 0, 0,12340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12340,12340,12340, 0, 0, 0,12340,12341,12341, 0, 12341,12341,12341,12341,12341,12341, 0,12341,12341, 0, 0, 0, 0, 0, 0, 0, 0, 0,12341,12341, 12341,12341,12341,12341,12341,12341, 0, 0, 0, 0, 12341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12341,12341,12341, 0, 0, 0,12341,12344,12344, 0,12344,12344,12344, 12344,12344,12344, 0,12344,12344, 0, 0, 0, 0, 0, 0, 0, 0, 0,12344,12344,12344,12344,12344, 12344,12344, 0, 0, 0, 0, 0,12344, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12344,12344,12344, 0, 0, 0, 12344,12345,12345, 0,12345,12345,12345,12345,12345,12345, 0,12345,12345, 0, 0, 0, 0, 0, 0, 0, 0, 0,12345,12345,12345,12345,12345,12345,12345,12345, 0, 0, 0, 0,12345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12345,12345,12345, 0, 0, 0,12345,12346,12346, 0,12346,12346,12346,12346,12346,12346,12346,12346,12346, 0, 0, 0, 0, 0, 0, 0, 0, 0,12346, 12346,12346,12346,12346,12346,12346,12346, 0, 0, 0, 0,12346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12346,12346, 12346,12346,12346, 0,12346,12349,12349, 0,12349,12349, 12349,12349,12349,12349, 0,12349,12349, 0, 0, 0, 0, 0, 0, 0, 0, 0,12349,12349,12349,12349, 12349,12349,12349, 0, 0, 0, 0, 0,12349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12349,12349,12349, 0, 0, 0,12349,12350,12350, 0,12350,12350,12350,12350,12350, 12350, 0,12350,12350, 0, 0, 0, 0, 0, 0, 0, 0, 0,12350,12350,12350,12350,12350,12350,12350, 12350, 0, 0, 0, 0,12350, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12350,12350,12350, 0, 0, 0,12350,12356, 12356, 0,12356,12356,12356,12356,12356,12356, 0,12356, 12356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12356,12356,12356,12356,12356,12356,12356, 0, 0, 0, 0, 0,12356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12356, 12356,12356, 0, 0, 0,12356,12357,12357, 0,12357, 12357,12357,12357,12357,12357, 0,12357,12357, 0, 0, 0, 0, 0, 0, 0, 0, 0,12357,12357,12357, 12357,12357,12357,12357,12357, 0, 0, 0, 0,12357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12357,12357,12357, 0, 0, 0,12357,12360,12360, 0,12360,12360,12360,12360, 12360,12360, 0,12360,12360, 0, 0, 0, 0, 0, 0, 0, 0, 0,12360,12360,12360,12360,12360,12360, 12360, 0, 0, 0, 0, 0,12360, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12360,12360,12360, 0, 0, 0,12360, 12361,12361, 0,12361,12361,12361,12361,12361,12361, 0, 12361,12361, 0, 0, 0, 0, 0, 0, 0, 0, 0,12361,12361,12361,12361,12361,12361,12361,12361, 0, 0, 0, 0,12361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12361,12361,12361, 0, 0, 0,12361,12362,12362, 0, 12362,12362,12362,12362,12362,12362,12362,12362,12362, 0, 0, 0, 0, 0, 0, 0, 0, 0,12362,12362, 12362,12362,12362,12362,12362,12362, 0, 0, 0, 0, 12362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12362,12362,12362, 12362,12362, 0,12362,12390,12390,12390,12390,12390,12390, 12390,12390,12390,12390,12390, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12390, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12390, 0,12390, 0, 0, 0,12390, 12395,12395, 0,12395,12395,12395,12395,12395,12395, 0, 12395,12395, 0, 0, 0, 0, 0, 0, 0, 0, 0,12395,12395,12395,12395,12395,12395,12395, 0, 0, 0, 0, 0,12395, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12395,12395,12395, 0, 0, 0,12395, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12395,12396, 0, 0, 0, 0, 0, 0, 0, 0, 0,12396,12396,12396,12396,12396,12396,12396,12396, 12396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12396, 0, 0,12396,12399,12399,12399, 12399,12399,12399,12399,12399,12399, 0,12399,12399, 0, 0, 0, 0, 0, 0, 0, 0, 0,12399,12399, 12399,12399,12399,12399,12399, 0, 0, 0, 0, 0, 12399, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12399,12399,12399, 12400,12400,12400,12400,12400,12400,12400,12400,12400, 0, 12400,12400, 0, 0, 0, 0, 0, 0, 0, 0, 0,12400,12400,12400,12400,12400,12400,12400,12400, 0, 0, 0, 0,12400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12400,12400,12400,12404,12404,12404,12404,12404,12404,12404, 12404,12404, 0,12404,12404, 0, 0, 0, 0, 0, 0, 0, 0, 0,12404,12404,12404,12404,12404,12404, 12404, 0, 0, 0, 0, 0,12404, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12404,12404,12404,12404,12405,12405,12405, 12405,12405,12405,12405,12405,12405, 0,12405,12405, 0, 0, 0, 0, 0, 0, 0, 0, 0,12405,12405, 12405,12405,12405,12405,12405,12405, 0, 0, 0, 0, 12405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12405,12405,12405, 12405,12406,12406,12406,12406,12406,12406,12406,12406,12406, 0,12406,12406, 0, 0, 0, 0, 0, 0, 0, 0, 0,12406,12406,12406,12406,12406,12406,12406, 0, 0, 0, 0, 0,12406, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12406, 0, 0, 0, 0,12406,12406,12406, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12406,12417,12417, 0,12417,12417,12417, 12417, 0,12417,12417,12417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12417,12417,12417,12417,12417, 12417,12417, 0, 0, 0, 0, 0,12417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12417,12417,12417,12417,12418,12418, 0,12418,12418,12418,12418, 0,12418,12418,12418, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12418, 12418,12418,12418,12418,12418,12418,12418, 0, 0, 0, 0,12418, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12418,12418, 12418,12418,12432, 0,12432, 0, 0,12432,12432,12432, 12432,12432,12432,12432,12432,12432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12432, 0, 0,12432,12438,12438, 0,12438,12438,12438,12438,12438,12438, 0,12438,12438, 0, 0, 0, 0, 0, 0, 0, 0, 0,12438, 12438,12438,12438,12438,12438,12438, 0, 0, 0, 0, 0,12438, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12438,12438, 12438,12439,12439, 0,12439,12439,12439,12439,12439,12439, 0,12439,12439, 0, 0, 0, 0, 0, 0, 0, 0, 0,12439,12439,12439,12439,12439,12439,12439,12439, 0, 0, 0, 0,12439, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12439,12439,12439,12440,12440, 0,12440,12440,12440, 12440,12440,12440, 0,12440,12440, 0, 0, 0, 0, 0, 0, 0, 0, 0,12440,12440,12440,12440,12440, 12440,12440, 0, 0, 0, 0, 0,12440, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12440,12440,12440,12445,12445,12445, 12445,12445,12445,12445,12445,12445, 0, 0, 0, 0, 0, 0, 0,12445,12445,12445,12445,12445,12445, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12445, 0, 0, 0,12445, 12445,12445,12445,12445,12445,12448,12448,12448,12448,12448, 12448,12448,12448,12448, 0, 0, 0, 0, 0, 0, 0,12448,12448,12448,12448,12448,12448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12448,12448,12448, 12448,12448,12448,12451, 0,12451,12451,12451,12451,12451, 12451,12451,12451,12451,12451, 0, 0, 0, 0, 0, 0,12451,12451,12451,12451,12451,12451, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12451,12451,12451, 12451,12451,12451,12455,12455,12455,12455,12455,12455,12455, 12455,12455, 0, 0, 0, 0, 0, 0, 0,12455, 12455,12455,12455,12455,12455, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12455,12455,12455,12455,12455, 12455,12458, 0,12458,12458,12458,12458,12458,12458,12458, 12458,12458,12458, 0, 0, 0, 0, 0, 0,12458, 12458,12458,12458,12458,12458, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12458,12458,12458,12458,12458, 12458,12461,12461,12461,12461,12461,12461,12461,12461,12461, 0, 0, 0, 0, 0, 0, 0,12461,12461,12461, 12461,12461,12461, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12461,12461,12461,12461,12461,12461,12464, 12464,12464,12464,12464,12464,12464,12464,12464,12464, 0, 0, 0, 0, 0, 0,12464,12464,12464,12464,12464, 12464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12464,12464,12464,12464,12464,12464,12467,12467,12467, 12467,12467,12467,12467,12467,12467, 0, 0, 0, 0, 0, 0, 0,12467,12467,12467,12467,12467,12467, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12467, 12467,12467,12467,12467,12467,12470,12470,12470,12470,12470, 12470,12470,12470,12470,12470, 0, 0, 0, 0, 0, 0,12470,12470,12470,12470,12470,12470, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12470,12470,12470, 12470,12470,12470,12473,12473,12473,12473,12473,12473,12473, 12473,12473, 0, 0, 0, 0, 0, 0, 0,12473, 12473,12473,12473,12473,12473, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12473,12473,12473,12473,12473, 12473,12476,12476,12476,12476,12476,12476,12476,12476,12476, 12476, 0, 0, 0, 0, 0, 0,12476,12476,12476, 12476,12476,12476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12476,12476,12476,12476,12476,12476,12482, 12482,12482,12482,12482,12482,12482,12482,12482, 0, 0, 0, 0, 0, 0, 0,12482,12482,12482,12482,12482, 12482, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12482,12482,12482,12482,12482,12482,12485,12485,12485, 12485,12485,12485,12485,12485,12485,12485, 0, 0, 0, 0, 0, 0,12485,12485,12485,12485,12485,12485, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12485, 12485,12485,12485,12485,12485,12489,12489,12489,12489,12489, 12489,12489,12489,12489,12489, 0, 0, 0, 0, 0, 0,12489,12489,12489,12489,12489,12489, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12489,12489,12489, 12489,12489,12489,12535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12535, 0, 0, 0, 0, 0, 0,12535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12535, 0,12535, 0,12535, 0, 0, 12535, 0, 0, 0, 0,12535, 0, 0,12535, 0, 12535, 0,12535, 0,12535,12535,12535,12537,12537, 0, 0, 0, 0,12537, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12537, 0, 0, 0, 0, 0, 0,12537, 0, 0,12537, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12537, 0,12537, 0,12537, 0, 0,12537, 0, 0, 0, 0,12537, 0, 0,12537, 0,12537, 0,12537, 0, 12537,12537,12537,12538, 0, 0, 0, 0, 0,12538, 12538, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12538, 0,12538, 0,12538, 0, 0,12538, 0, 0, 0, 0,12538, 0, 0,12538, 0,12538, 0,12538, 0,12538,12538,12538,12539, 0, 0, 0, 0, 0, 0,12539, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12539, 0,12539,12539,12539, 0, 0,12539, 0, 0, 0, 0,12539, 0, 0,12539, 0,12539, 0,12539, 0, 12539,12539,12539,12540, 0, 0, 0, 0, 0, 0, 12540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12540, 0,12540,12540,12540, 0, 0,12540, 0, 0, 0, 0,12540, 0, 0,12540, 0,12540, 0,12540, 0,12540,12540,12540,12541, 0, 0, 0, 0, 0, 0,12541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12541, 0,12541, 0,12541, 0, 0,12541,12541, 0, 0, 0,12541, 0, 0,12541, 0,12541, 0,12541, 0, 12541,12541,12541,12541,12542, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12542, 0, 0, 0, 0, 0, 0,12542, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12542, 0,12542, 0,12542, 0, 0,12542, 0, 0, 0, 0,12542, 0, 0,12542, 0,12542, 0,12542, 0, 12542,12542,12542,12543, 0, 0, 0, 0, 0, 0, 12543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12543, 0,12543, 0,12543, 0, 0,12543, 0, 0, 0, 0,12543, 0, 0,12543, 0,12543, 0,12543, 0,12543,12543,12543,12543,12544, 0, 0, 0, 0, 0, 0,12544, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12544, 0,12544,12544,12544, 0, 0,12544, 0, 0, 0, 0,12544, 0,12544,12544, 0,12544, 0,12544, 0,12544,12544,12544,12545, 0, 0, 0, 0, 0, 0,12545, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12545, 0,12545, 0,12545, 0, 0,12545, 0, 0, 0,12545,12545, 0, 0, 12545, 0,12545, 0,12545, 0,12545,12545,12545,12546, 0, 0, 0, 0, 0, 0,12546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12546, 0,12546, 0,12546, 0, 0,12546, 0, 0, 0, 0,12546, 0, 0,12546,12546,12546, 0,12546, 0,12546,12546,12546,12547, 0, 0, 0, 0, 0, 0,12547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12547, 0,12547, 0,12547, 0, 0,12547, 0, 0, 0, 0,12547, 0, 0, 12547, 0,12547, 0,12547, 0,12547,12547,12547,12548, 12548, 0, 0, 0, 0,12548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12548, 0, 0, 0, 0, 0, 0,12548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12548, 0,12548,12548,12548, 0, 0,12548,12548, 0, 0, 0,12548, 0, 0,12548, 0,12548, 0, 12548, 0,12548,12548,12548,12549, 0, 0, 0, 0, 0, 0,12549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12549, 0,12549, 0, 12549, 0, 0,12549, 0, 0, 0, 0,12549,12549, 0,12549, 0,12549, 0,12549, 0,12549,12549,12549, 12550, 0, 0, 0, 0, 0, 0,12550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12550, 0,12550, 0,12550, 0, 0,12550, 0, 0, 0, 0,12550, 0,12550,12550, 0,12550, 0, 12550, 0,12550,12550,12550,12551, 0, 0, 0, 0, 0, 0,12551, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12551, 0,12551, 0, 12551, 0, 0,12551, 0, 0, 0, 0,12551, 0, 0,12551, 0,12551, 0,12551, 0,12551,12551,12551, 12552, 0, 0, 0, 0, 0, 0,12552, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12552, 0,12552, 0,12552, 0, 0,12552, 0, 0, 0,12552,12552, 0, 0,12552, 0,12552,12552, 12552, 0,12552,12552,12552,12553, 0, 0, 0, 0, 0, 0,12553, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12553, 0,12553, 0, 12553, 0, 0,12553, 0, 0, 0, 0,12553, 0, 0,12553, 0,12553, 0,12553, 0,12553,12553,12553, 12553,12570,12570, 0, 0, 0, 0,12570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12570, 0, 0, 0, 0, 0, 0,12570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12570, 0,12570, 0,12570, 0, 0, 12570, 0, 0, 0, 0,12570,12570, 0,12570, 0, 12570, 0,12570, 0,12570,12570,12570,12571, 0, 0, 12571, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12571, 0, 0, 0, 0, 0, 0,12571, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12571, 0,12571, 0,12571, 0, 0,12571, 0, 0, 0, 0,12571, 0, 0,12571, 0,12571, 0,12571, 0,12571,12571,12571,12572, 0, 0, 0, 0, 0, 0,12572, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12572, 0, 0, 0, 0, 0, 0, 12572, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12572, 0,12572, 0,12572, 0, 0,12572, 0, 0, 0, 0,12572, 0, 0,12572, 0,12572, 0,12572, 0,12572,12572,12572,12573, 0, 0, 0, 0, 0, 0, 0,12573, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12573, 0, 0, 0, 0, 0, 0,12573, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12573, 0,12573, 0,12573, 0, 0,12573, 0, 0, 0, 0,12573, 0, 0,12573, 0,12573, 0,12573, 0, 12573,12573,12573,12573,12574,12574, 0, 0, 0, 0, 12574, 0, 0,12574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12574, 0, 0, 0, 0, 0, 0,12574, 0, 0, 0, 0, 0,12574, 0, 0, 0, 0, 0, 0, 0,12574, 0,12574, 0, 12574, 0, 0,12574, 0, 0, 0, 0,12574, 0, 0,12574, 0,12574, 0,12574, 0,12574,12574,12574, 12575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12575, 0, 0, 0, 0, 0, 0,12575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12575, 0,12575, 0,12575, 0, 0, 12575, 0, 0, 0, 0,12575, 0, 0,12575, 0, 12575, 0,12575, 0,12575,12575,12575,12576, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12576, 0, 0,12576, 0, 0, 0,12576, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12576, 0,12576, 0,12576, 0, 0,12576, 0, 0, 0, 0,12576, 0, 0,12576, 0,12576, 0,12576, 0,12576,12576,12576,12577, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12577, 0, 0, 0, 0,12577, 0, 0, 0, 0, 0, 0,12577, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12577, 0,12577, 0,12577, 0, 0,12577, 0, 0, 0, 0,12577, 0, 0,12577, 0,12577, 0,12577, 0,12577,12577, 12577,12578, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12578, 0, 0, 0, 0, 0, 0, 12578, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12578, 0,12578, 0,12578, 0, 0,12578, 0, 0, 0, 0,12578, 0, 0,12578, 0,12578, 0,12578, 0,12578,12578,12578,12579, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12579, 0, 0, 0, 0, 0, 0,12579, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12579, 0,12579, 0,12579, 0, 0,12579,12579, 0, 0, 0,12579, 0, 0,12579, 0,12579, 0, 12579, 0,12579,12579,12579,12580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12580, 0, 0, 0, 0, 0, 0,12580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12580, 0, 12580, 0,12580, 0, 0,12580, 0, 0, 0, 0, 12580, 0, 0,12580, 0,12580, 0,12580, 0,12580, 12580,12580,12581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12581, 0, 0, 0, 0, 0, 0,12581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12581, 0,12581, 0,12581, 0, 0,12581, 0, 0, 0, 0,12581, 0, 0, 12581, 0,12581, 0,12581, 0,12581,12581,12581,12582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12582, 0, 0, 0, 0, 0, 0,12582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12582, 0,12582,12582,12582, 0, 0,12582, 12582, 0, 0, 0,12582, 0, 0,12582, 0,12582, 0,12582, 0,12582,12582,12582,12592,12592, 0, 0, 0, 0,12592,12592, 0,12592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12592, 0, 0, 0, 0, 0, 0,12592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12592, 0, 12592, 0,12592, 0, 0,12592, 0, 0, 0, 0, 12592, 0, 0,12592, 0,12592, 0,12592, 0,12592, 12592,12592,12609,12609, 0, 0, 0, 0,12609, 0, 0,12609,12609,12609,12609,12609,12609,12609,12609,12609, 12609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12609, 0, 0, 0, 0, 0, 0, 12609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12609, 0,12609, 0,12609, 0, 0,12609, 0, 0, 0, 0,12609, 0, 0,12609, 0,12609, 0,12609, 0,12609,12609,12609,12610,12610, 0, 0, 0, 0,12610, 0, 0,12610, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12610, 0, 0, 0, 0, 0, 0,12610, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12610, 0,12610, 0,12610, 0, 0,12610, 0, 0, 0, 0,12610, 0, 0,12610, 0,12610, 0,12610, 0,12610,12610,12610,12616, 0,12616, 0, 0,12616, 12616,12616,12616,12616,12616,12616,12616,12616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12616, 0, 0,12616, 12624,12624, 0,12624,12624,12624,12624,12624,12624, 0, 12624,12624, 0, 0, 0, 0, 0, 0, 0, 0, 0,12624,12624,12624,12624,12624,12624,12624, 0, 0, 0, 0, 0,12624, 0, 0, 0, 0, 0,12624, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12624,12624,12624,12627,12627, 0,12627,12627,12627,12627, 12627,12627, 0,12627,12627, 0, 0, 0, 0, 0, 0, 0, 0, 0,12627,12627,12627,12627,12627,12627, 12627, 0, 0, 0, 0, 0,12627, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12627,12627,12627,12628,12628, 0,12628, 12628,12628,12628,12628,12628, 0,12628,12628, 0, 0, 0, 0, 0, 0, 0, 0, 0,12628,12628,12628, 12628,12628,12628,12628,12628, 0, 0, 0, 0,12628, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12628,12628,12628,12632, 12632, 0,12632,12632,12632,12632,12632,12632, 0,12632, 12632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12632,12632,12632,12632,12632,12632,12632, 0, 0, 0, 0, 0,12632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12632, 12632,12632,12633,12633, 0,12633,12633,12633,12633,12633, 12633, 0,12633,12633, 0, 0, 0, 0, 0, 0, 0, 0, 0,12633,12633,12633,12633,12633,12633,12633, 12633, 0, 0, 0, 0,12633, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12633,12633,12633,12637,12637, 0,12637,12637, 12637,12637,12637,12637, 0,12637,12637, 0, 0, 0, 0, 0, 0, 0, 0, 0,12637,12637,12637,12637, 12637,12637,12637, 0, 0, 0, 0, 0,12637, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12637,12637,12637,12638,12638, 0,12638,12638,12638,12638,12638,12638, 0,12638,12638, 0, 0, 0, 0, 0, 0, 0, 0, 0,12638, 12638,12638,12638,12638,12638,12638,12638, 0, 0, 0, 0,12638, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12638,12638, 12638,12642,12642, 0,12642,12642,12642,12642,12642,12642, 0,12642,12642, 0, 0, 0, 0, 0, 0, 0, 0, 0,12642,12642,12642,12642,12642,12642,12642, 0, 0, 0, 0, 0,12642, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12642,12642,12642,12643,12643, 0,12643,12643,12643, 12643,12643,12643, 0,12643,12643, 0, 0, 0, 0, 0, 0, 0, 0, 0,12643,12643,12643,12643,12643, 12643,12643,12643, 0, 0, 0, 0,12643, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12643,12643,12643,12646,12646, 0, 12646,12646,12646,12646,12646,12646, 0,12646,12646, 0, 0, 0, 0, 0, 0, 0, 0, 0,12646,12646, 12646,12646,12646,12646,12646, 0, 0, 0, 0, 0, 12646, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12646,12646,12646, 12647,12647, 0,12647,12647,12647,12647,12647,12647, 0, 12647,12647, 0, 0, 0, 0, 0, 0, 0, 0, 0,12647,12647,12647,12647,12647,12647,12647,12647, 0, 0, 0, 0,12647, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12647,12647,12647,12649,12649, 0,12649,12649,12649,12649, 12649,12649, 0,12649,12649, 0, 0, 0, 0, 0, 0, 0, 0, 0,12649,12649,12649,12649,12649,12649, 12649, 0, 0, 0, 0, 0,12649, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12649, 0, 0, 0, 0, 0,12649,12649,12649, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12649,12650,12650, 0,12650,12650, 12650,12650,12650,12650, 0,12650,12650, 0, 0, 0, 0, 0, 0, 0, 0, 0,12650,12650,12650,12650, 12650,12650,12650, 0, 0, 0, 0, 0,12650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12650,12650,12650,12651,12651, 0,12651,12651,12651,12651,12651,12651, 0,12651,12651, 0, 0, 0, 0, 0, 0, 0, 0, 0,12651, 12651,12651,12651,12651,12651,12651,12651, 0, 0, 0, 0,12651, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12651,12651, 12651,12652,12652, 0,12652,12652,12652,12652,12652,12652, 0,12652,12652, 0, 0, 0, 0, 0, 0, 0, 0, 0,12652,12652,12652,12652,12652,12652,12652, 0, 0, 0, 0, 0,12652, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12652,12652,12652,12653,12653, 0,12653,12653,12653, 12653,12653,12653, 0,12653,12653, 0, 0, 0, 0, 0, 0, 0, 0, 0,12653,12653,12653,12653,12653, 12653,12653,12653, 0, 0, 0, 0,12653, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12653,12653,12653,12656,12656, 0, 12656,12656,12656,12656,12656,12656, 0,12656,12656, 0, 0, 0, 0, 0, 0, 0, 0, 0,12656,12656, 12656,12656,12656,12656,12656, 0, 0, 0, 0, 0, 12656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12656,12656,12656, 12657,12657, 0,12657,12657,12657,12657,12657,12657, 0, 12657,12657, 0, 0, 0, 0, 0, 0, 0, 0, 0,12657,12657,12657,12657,12657,12657,12657,12657, 0, 0, 0, 0,12657, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12657,12657,12657,12659,12659, 0,12659,12659,12659,12659, 12659,12659, 0,12659,12659, 0, 0, 0, 0, 0, 0, 0, 0, 0,12659,12659,12659,12659,12659,12659, 12659, 0, 0, 0, 0, 0,12659, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12659, 0, 0, 0, 0, 0,12659,12659,12659, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12659,12660,12660, 0,12660,12660, 12660,12660,12660,12660, 0,12660,12660, 0, 0, 0, 0, 0, 0, 0, 0, 0,12660,12660,12660,12660, 12660,12660,12660, 0, 0, 0, 0, 0,12660, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12660,12660,12660,12661,12661, 0,12661,12661,12661,12661,12661,12661, 0,12661,12661, 0, 0, 0, 0, 0, 0, 0, 0, 0,12661, 12661,12661,12661,12661,12661,12661,12661, 0, 0, 0, 0,12661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12661,12661, 12661,12662,12662, 0,12662,12662,12662,12662,12662,12662, 0,12662,12662, 0, 0, 0, 0, 0, 0, 0, 0, 0,12662,12662,12662,12662,12662,12662,12662, 0, 0, 0, 0, 0,12662, 0, 0, 0, 0, 0, 0, 0,12662, 0, 0, 0, 0, 0, 0, 0, 0,12662,12662,12662,12663,12663, 0,12663,12663,12663, 12663,12663,12663, 0,12663,12663, 0, 0, 0, 0, 0, 0, 0, 0, 0,12663,12663,12663,12663,12663, 12663,12663, 0, 0, 0, 0, 0,12663, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12663,12663,12663,12663,12664,12664, 0,12664,12664,12664,12664,12664,12664, 0,12664,12664, 0, 0, 0, 0, 0, 0, 0, 0, 0,12664, 12664,12664,12664,12664,12664,12664, 0, 0, 0, 0, 0,12664, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12664,12664, 12664,12664,12666,12666, 0,12666,12666,12666,12666,12666, 12666, 0,12666,12666, 0, 0, 0, 0, 0, 0, 0, 0, 0,12666,12666,12666,12666,12666,12666,12666, 0, 0, 0, 0, 0,12666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12666,12666,12666,12667,12667, 0,12667,12667, 12667,12667,12667,12667, 0,12667,12667, 0, 0, 0, 0, 0, 0, 0, 0, 0,12667,12667,12667,12667, 12667,12667,12667,12667, 0, 0, 0, 0,12667, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12667,12667,12667,12671,12671, 12671,12671,12671,12671,12671,12671,12671,12671,12671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12671, 0,12671, 12677,12677,12677,12677,12677,12677,12677,12677,12677,12677, 0, 0, 0, 0, 0, 0,12677,12677,12677,12677, 12677,12677, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12677,12677,12677,12677,12677,12677,12679,12679, 12679,12679,12679,12679,12679,12679,12679,12679, 0, 0, 0, 0, 0, 0,12679,12679,12679,12679,12679,12679, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12679,12679,12679,12679,12679,12679,12682, 0, 0, 0, 0, 0, 0, 0, 0,12682,12682,12682,12682,12682, 12682,12682,12682,12682,12682, 0, 0, 0, 0, 0, 0,12682,12682,12682,12682,12682,12682, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12682,12682,12682, 12682,12682,12682,12687,12687,12687,12687,12687,12687,12687, 12687,12687,12687, 0, 0, 0, 0, 0, 0,12687, 12687,12687,12687,12687,12687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12687,12687,12687,12687,12687, 12687,12690,12690,12690,12690,12690,12690,12690,12690,12690, 12690, 0, 0, 0, 0, 0, 0,12690,12690,12690, 12690,12690,12690, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12690,12690,12690,12690,12690,12690,12697, 12697,12697,12697,12697,12697,12697,12697,12697,12697, 0, 0, 0, 0, 0, 0,12697,12697,12697,12697,12697, 12697, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12697,12697,12697,12697,12697,12697,12700,12700,12700, 12700,12700,12700,12700,12700,12700,12700, 0, 0, 0, 0, 0, 0,12700,12700,12700,12700,12700,12700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12700, 12700,12700,12700,12700,12700,12707,12707,12707,12707,12707, 12707,12707,12707,12707, 0, 0, 0, 0, 0, 0, 0,12707,12707,12707,12707,12707,12707, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12707,12707,12707, 12707,12707,12707,12708,12708,12708,12708,12708,12708,12708, 12708,12708,12708, 0, 0, 0, 0, 0, 0,12708, 12708,12708,12708,12708,12708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12708,12708,12708,12708,12708, 12708,12711,12711,12711,12711,12711,12711,12711,12711,12711, 12711, 0, 0, 0, 0, 0, 0,12711,12711,12711, 12711,12711,12711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12711,12711,12711,12711,12711,12711,12718, 12718,12718,12718,12718,12718,12718,12718,12718, 0, 0, 0, 0, 0, 0, 0,12718,12718,12718,12718,12718, 12718, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12718,12718,12718,12718,12718,12718,12719, 0,12719, 12719,12719,12719,12719,12719,12719,12719,12719,12719, 0, 0, 0, 0, 0, 0,12719,12719,12719,12719,12719, 12719, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12719,12719,12719,12719,12719,12719,12726,12726,12726, 12726,12726,12726,12726,12726,12726,12726, 0, 0, 0, 0, 0, 0,12726,12726,12726,12726,12726,12726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12726, 12726,12726,12726,12726,12726,12728,12728,12728,12728,12728, 12728,12728,12728,12728, 0, 0, 0, 0, 0, 0, 0,12728,12728,12728,12728,12728,12728, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12728,12728,12728, 12728,12728,12728,12736,12736,12736,12736,12736,12736,12736, 12736,12736,12736, 0, 0, 0, 0, 0, 0,12736, 12736,12736,12736,12736,12736, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12736,12736,12736,12736,12736, 12736,12744,12744,12744,12744,12744,12744,12744,12744,12744, 12744, 0, 0, 0, 0, 0, 0,12744,12744,12744, 12744,12744,12744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12744,12744,12744,12744,12744,12744,12745, 12745, 0,12745,12745,12745,12745,12745,12745, 0,12745, 12745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12745,12745,12745,12745,12745,12745,12745, 0, 0, 0, 0, 0,12745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12745, 12745,12745,12746,12746, 0,12746,12746,12746,12746,12746, 12746, 0,12746,12746, 0, 0, 0, 0, 0, 0, 0, 0, 0,12746,12746,12746,12746,12746,12746,12746, 0, 0, 0, 0, 0,12746, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12746,12746,12746,12747,12747, 0,12747,12747, 12747,12747,12747,12747, 0,12747,12747, 0, 0, 0, 0, 0, 0, 0, 0, 0,12747,12747,12747,12747, 12747,12747,12747,12747, 0, 0, 0, 0,12747, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12747,12747,12747,12751,12751, 0,12751,12751,12751,12751,12751,12751, 0,12751,12751, 0, 0, 0, 0, 0, 0, 0, 0, 0,12751, 12751,12751,12751,12751,12751,12751, 0, 0, 0, 0, 0,12751, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12751,12751, 12751,12752,12752, 0,12752,12752,12752,12752,12752,12752, 0,12752,12752, 0, 0, 0, 0, 0, 0, 0, 0, 0,12752,12752,12752,12752,12752,12752,12752,12752, 0, 0, 0, 0,12752, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12752,12752,12752,12755,12755, 0,12755,12755,12755, 12755,12755,12755, 0,12755,12755, 0, 0, 0, 0, 0, 0, 0, 0, 0,12755,12755,12755,12755,12755, 12755,12755, 0, 0, 0, 0, 0,12755, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12755,12755,12755,12756,12756, 0, 12756,12756,12756,12756,12756,12756, 0,12756,12756, 0, 0, 0, 0, 0, 0, 0, 0, 0,12756,12756, 12756,12756,12756,12756,12756,12756, 0, 0, 0, 0, 12756, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12756,12756,12756, 12759,12759, 0,12759,12759,12759,12759,12759,12759, 0, 12759,12759, 0, 0, 0, 0, 0, 0, 0, 0, 0,12759,12759,12759,12759,12759,12759,12759, 0, 0, 0, 0, 0,12759, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12759,12759,12759,12760,12760, 0,12760,12760,12760,12760, 12760,12760, 0,12760,12760, 0, 0, 0, 0, 0, 0, 0, 0, 0,12760,12760,12760,12760,12760,12760, 12760,12760, 0, 0, 0, 0,12760, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12760,12760,12760,12762,12762, 0,12762, 12762,12762,12762,12762,12762, 0,12762,12762, 0, 0, 0, 0, 0, 0, 0, 0, 0,12762,12762,12762, 12762,12762,12762,12762, 0, 0, 0, 0, 0,12762, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12762,12762,12762,12763, 12763, 0,12763,12763,12763,12763,12763,12763, 0,12763, 12763, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12763,12763,12763,12763,12763,12763,12763,12763, 0, 0, 0, 0,12763, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12763, 12763,12763,12764,12764, 0,12764,12764,12764,12764,12764, 12764, 0,12764,12764, 0, 0, 0, 0, 0, 0, 0, 0, 0,12764,12764,12764,12764,12764,12764,12764, 0, 0, 0, 0, 0,12764,12764, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12764,12764,12764, 0, 0, 0, 0, 0, 0, 0,12764,12765,12765, 0,12765,12765,12765,12765, 12765,12765, 0,12765,12765, 0,12765,12765,12765,12765, 12765,12765,12765,12765,12765,12765,12765,12765,12765,12765, 12765, 0, 0, 0, 0, 0,12765, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12765,12765,12765,12766,12766, 0,12766, 12766,12766,12766,12766,12766, 0,12766,12766, 0, 0, 0, 0, 0, 0, 0, 0, 0,12766,12766,12766, 12766,12766,12766,12766, 0, 0, 0, 0, 0,12766, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12766,12766,12766,12767, 12767, 0,12767,12767,12767,12767,12767,12767, 0,12767, 12767, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12767,12767,12767,12767,12767,12767,12767, 0, 0, 0, 0, 0,12767,12767, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12767, 12767,12767, 0, 0, 0, 0, 0, 0, 0,12767, 12769,12769, 0,12769,12769,12769,12769,12769,12769, 0, 12769,12769, 0, 0, 0, 0, 0, 0, 0, 0, 0,12769,12769,12769,12769,12769,12769,12769, 0, 0, 0, 0, 0,12769, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12769,12769,12769,12770,12770, 0,12770,12770,12770,12770, 12770,12770, 0,12770,12770, 0, 0, 0, 0, 0, 0, 0, 0, 0,12770,12770,12770,12770,12770,12770, 12770,12770, 0, 0, 0, 0,12770, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12770,12770,12770,12774,12774, 0,12774, 12774,12774,12774,12774,12774, 0,12774,12774, 0, 0, 0, 0, 0, 0, 0, 0, 0,12774,12774,12774, 12774,12774,12774,12774, 0, 0, 0, 0, 0,12774, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12774,12774,12774,12775, 12775, 0,12775,12775,12775,12775,12775,12775, 0,12775, 12775, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12775,12775,12775,12775,12775,12775,12775,12775, 0, 0, 0, 0,12775, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12775, 12775,12775,12779,12779, 0,12779,12779,12779,12779,12779, 12779, 0,12779,12779, 0, 0, 0, 0, 0, 0, 0, 0, 0,12779,12779,12779,12779,12779,12779,12779, 0, 0, 0, 0, 0,12779, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12779,12779,12779,12780,12780, 0,12780,12780, 12780,12780,12780,12780, 0,12780,12780, 0, 0, 0, 0, 0, 0, 0, 0, 0,12780,12780,12780,12780, 12780,12780,12780,12780, 0, 0, 0, 0,12780, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12780,12780,12780,12783,12783, 0,12783,12783,12783,12783,12783,12783, 0,12783,12783, 0, 0, 0, 0, 0, 0, 0, 0, 0,12783, 12783,12783,12783,12783,12783,12783, 0, 0, 0, 0, 0,12783, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12783,12783, 12783,12784,12784, 0,12784,12784,12784,12784,12784,12784, 0,12784,12784, 0, 0, 0, 0, 0, 0, 0, 0, 0,12784,12784,12784,12784,12784,12784,12784,12784, 0, 0, 0, 0,12784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12784,12784,12784,12786,12786, 0,12786,12786,12786, 12786,12786,12786, 0,12786,12786, 0, 0, 0, 0, 0, 0, 0, 0, 0,12786,12786,12786,12786,12786, 12786,12786, 0, 0, 0, 0, 0,12786, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12786, 0, 0, 0, 0, 0,12786,12786,12786, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12786,12787,12787, 0,12787, 12787,12787,12787,12787,12787, 0,12787,12787, 0, 0, 0, 0, 0, 0, 0, 0, 0,12787,12787,12787, 12787,12787,12787,12787, 0, 0, 0, 0, 0,12787, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12787,12787,12787,12788, 12788, 0,12788,12788,12788,12788,12788,12788, 0,12788, 12788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12788,12788,12788,12788,12788,12788,12788,12788, 0, 0, 0, 0,12788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12788, 12788,12788,12789,12789, 0,12789,12789,12789,12789,12789, 12789, 0,12789,12789, 0, 0, 0, 0, 0, 0, 0, 0, 0,12789,12789,12789,12789,12789,12789,12789, 0, 0, 0, 0, 0,12789, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12789,12789,12789,12790,12790, 0,12790,12790, 12790,12790,12790,12790, 0,12790,12790, 0, 0, 0, 0, 0, 0, 0, 0, 0,12790,12790,12790,12790, 12790,12790,12790,12790, 0, 0, 0, 0,12790, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12790,12790,12790,12794,12794, 0,12794,12794,12794,12794,12794,12794, 0,12794,12794, 0, 0, 0, 0, 0, 0, 0, 0, 0,12794, 12794,12794,12794,12794,12794,12794, 0, 0, 0, 0, 0,12794, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12794,12794, 12794,12795,12795, 0,12795,12795,12795,12795,12795,12795, 0,12795,12795, 0, 0, 0, 0, 0, 0, 0, 0, 0,12795,12795,12795,12795,12795,12795,12795,12795, 0, 0, 0, 0,12795, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12795,12795,12795,12798,12798, 0,12798,12798,12798, 12798,12798,12798, 0,12798,12798, 0, 0, 0, 0, 0, 0, 0, 0, 0,12798,12798,12798,12798,12798, 12798,12798, 0, 0, 0, 0, 0,12798, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12798,12798,12798,12799,12799, 0, 12799,12799,12799,12799,12799,12799, 0,12799,12799, 0, 0, 0, 0, 0, 0, 0, 0, 0,12799,12799, 12799,12799,12799,12799,12799,12799, 0, 0, 0, 0, 12799, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12799,12799,12799, 12801,12801, 0,12801,12801,12801,12801,12801,12801, 0, 12801,12801, 0, 0, 0, 0, 0, 0, 0, 0, 0,12801,12801,12801,12801,12801,12801,12801, 0, 0, 0, 0, 0,12801, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12801, 0, 0, 0, 0, 0, 12801,12801,12801, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12801,12802,12802, 0,12802,12802,12802,12802,12802, 12802, 0,12802,12802, 0, 0, 0, 0, 0, 0, 0, 0, 0,12802,12802,12802,12802,12802,12802,12802, 0, 0, 0, 0, 0,12802, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12802,12802,12802,12803,12803, 0,12803,12803, 12803,12803,12803,12803, 0,12803,12803, 0, 0, 0, 0, 0, 0, 0, 0, 0,12803,12803,12803,12803, 12803,12803,12803,12803, 0, 0, 0, 0,12803, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12803,12803,12803,12805,12805, 0,12805,12805,12805,12805,12805,12805, 0,12805,12805, 0, 0, 0, 0, 0, 0, 0, 0, 0,12805, 12805,12805,12805,12805,12805,12805, 0, 0, 0, 0, 0,12805, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12805,12805, 12805,12806,12806, 0,12806,12806,12806,12806,12806,12806, 0,12806,12806, 0, 0, 0, 0, 0, 0, 0, 0, 0,12806,12806,12806,12806,12806,12806,12806, 0, 0, 0, 0, 0,12806, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12806, 0, 0, 0, 0,12806,12806,12806, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12806,12807,12807, 0,12807,12807,12807, 12807,12807,12807, 0,12807,12807, 0, 0, 0, 0, 0, 0, 0, 0, 0,12807,12807,12807,12807,12807, 12807,12807,12807, 0, 0, 0, 0,12807, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12807,12807,12807,12811,12811, 0, 12811,12811,12811,12811,12811,12811, 0,12811,12811, 0, 0, 0, 0, 0, 0, 0, 0, 0,12811,12811, 12811,12811,12811,12811,12811, 0, 0, 0, 0, 0, 12811, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12811,12811,12811, 12812,12812, 0,12812,12812,12812,12812,12812,12812, 0, 12812,12812, 0, 0, 0, 0, 0, 0, 0, 0, 0,12812,12812,12812,12812,12812,12812,12812,12812, 0, 0, 0, 0,12812, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12812,12812,12812,12814,12814, 0,12814,12814,12814,12814, 12814,12814, 0,12814,12814, 0, 0, 0, 0, 0, 0, 0, 0, 0,12814,12814,12814,12814,12814,12814, 12814, 0, 0, 0, 0, 0,12814, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12814,12814,12814,12815,12815, 0,12815, 12815,12815,12815,12815,12815, 0,12815,12815, 0, 0, 0, 0, 0, 0, 0, 0, 0,12815,12815,12815, 12815,12815,12815,12815,12815, 0, 0, 0, 0,12815, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12815,12815,12815,12816, 12816, 0,12816,12816,12816,12816,12816,12816, 0,12816, 12816, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12816,12816,12816,12816,12816,12816,12816, 0, 0, 0, 0, 0,12816,12816, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12816, 12816,12816, 0, 0, 0, 0, 0, 0, 0,12816, 12817,12817, 0,12817,12817,12817,12817,12817,12817, 0, 12817,12817, 0,12817,12817,12817,12817,12817,12817,12817, 12817,12817,12817,12817,12817,12817,12817,12817, 0, 0, 0, 0, 0,12817, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12817,12817,12817,12818,12818, 0,12818,12818,12818,12818, 12818,12818, 0,12818,12818, 0, 0, 0, 0, 0, 0, 0, 0, 0,12818,12818,12818,12818,12818,12818, 12818, 0, 0, 0, 0, 0,12818, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12818,12818,12818,12819,12819, 0,12819, 12819,12819,12819,12819,12819, 0,12819,12819, 0, 0, 0, 0, 0, 0, 0, 0, 0,12819,12819,12819, 12819,12819,12819,12819, 0, 0, 0, 0, 0,12819, 12819, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12819,12819,12819, 0, 0, 0, 0, 0, 0, 0,12819,12820,12820, 0, 12820,12820,12820,12820,12820,12820, 0,12820,12820, 0, 0, 0, 0, 0, 0, 0, 0, 0,12820,12820, 12820,12820,12820,12820,12820, 0, 0, 0, 0, 0, 12820, 0, 0, 0, 0, 0, 0, 0, 0,12820, 0, 0, 0, 0, 0, 0, 0,12820,12820,12820, 12821,12821, 0,12821,12821,12821,12821,12821,12821,12821, 12821,12821, 0, 0, 0, 0, 0, 0, 0, 0, 0,12821,12821,12821,12821,12821,12821,12821, 0, 0, 0, 0, 0,12821, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12821,12821,12821,12821,12822,12822, 0,12822,12822,12822, 12822,12822,12822, 0,12822,12822, 0, 0, 0, 0, 0, 0, 0, 0, 0,12822,12822,12822,12822,12822, 12822,12822, 0, 0, 0, 0, 0,12822, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12822,12822,12822,12823,12823, 0, 12823,12823,12823,12823,12823,12823, 0,12823,12823, 0, 0, 0, 0, 0, 0, 0, 0, 0,12823,12823, 12823,12823,12823,12823,12823,12823, 0, 0, 0, 0, 12823, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12823,12823,12823, 12829,12829, 0,12829,12829,12829,12829,12829,12829, 0, 12829,12829, 0, 0, 0, 0, 0, 0, 0, 0, 0,12829,12829,12829,12829,12829,12829,12829, 0, 0, 0, 0, 0,12829, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12829,12829,12829,12830,12830, 0,12830,12830,12830,12830, 12830,12830, 0,12830,12830, 0, 0, 0, 0, 0, 0, 0, 0, 0,12830,12830,12830,12830,12830,12830, 12830,12830, 0, 0, 0, 0,12830, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12830,12830,12830,12833,12833, 0,12833, 12833,12833,12833,12833,12833, 0,12833,12833, 0, 0, 0, 0, 0, 0, 0, 0, 0,12833,12833,12833, 12833,12833,12833,12833, 0, 0, 0, 0, 0,12833, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12833,12833,12833,12834, 12834, 0,12834,12834,12834,12834,12834,12834, 0,12834, 12834, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12834,12834,12834,12834,12834,12834,12834,12834, 0, 0, 0, 0,12834, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12834, 12834,12834,12836,12836, 0,12836,12836,12836,12836,12836, 12836, 0,12836,12836, 0, 0, 0, 0, 0, 0, 0, 0, 0,12836,12836,12836,12836,12836,12836,12836, 0, 0, 0, 0, 0,12836, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12836,12836,12836,12837,12837, 0,12837,12837, 12837,12837,12837,12837, 0,12837,12837, 0, 0, 0, 0, 0, 0, 0, 0, 0,12837,12837,12837,12837, 12837,12837,12837,12837, 0, 0, 0, 0,12837, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12837,12837,12837,12838,12838, 0,12838,12838,12838,12838,12838,12838, 0,12838,12838, 0, 0, 0, 0, 0, 0, 0, 0, 0,12838, 12838,12838,12838,12838,12838,12838, 0, 0, 0, 0, 0,12838,12838, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12838,12838, 12838, 0, 0, 0, 0, 0, 0, 0,12838,12839, 12839, 0,12839,12839,12839,12839,12839,12839, 0,12839, 12839, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12839,12839,12839,12839,12839,12839,12839, 0, 0, 0, 0, 0,12839,12839, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12839, 12839,12839, 0, 0, 0, 0, 0, 0, 0,12839, 12840,12840, 0,12840,12840,12840,12840,12840,12840, 0, 12840,12840, 0, 0, 0, 0, 0, 0, 0, 0, 0,12840,12840,12840,12840,12840,12840,12840, 0, 0, 0, 0, 0,12840, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12840,12840,12840,12841,12841, 0,12841,12841,12841,12841, 12841,12841, 0,12841,12841, 0, 0, 0, 0, 0, 0, 0, 0, 0,12841,12841,12841,12841,12841,12841, 12841,12841, 0, 0, 0, 0,12841, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12841,12841,12841,12845,12845, 0,12845, 12845,12845,12845,12845,12845, 0,12845,12845, 0, 0, 0, 0, 0, 0, 0, 0, 0,12845,12845,12845, 12845,12845,12845,12845, 0, 0, 0, 0, 0,12845, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12845,12845,12845,12846, 12846, 0,12846,12846,12846,12846,12846,12846, 0,12846, 12846, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12846,12846,12846,12846,12846,12846,12846,12846, 0, 0, 0, 0,12846, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12846, 12846,12846,12850,12850, 0,12850,12850,12850,12850,12850, 12850, 0,12850,12850, 0, 0, 0, 0, 0, 0, 0, 0, 0,12850,12850,12850,12850,12850,12850,12850, 0, 0, 0, 0, 0,12850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12850,12850,12850,12851,12851, 0,12851,12851, 12851,12851,12851,12851, 0,12851,12851, 0, 0, 0, 0, 0, 0, 0, 0, 0,12851,12851,12851,12851, 12851,12851,12851,12851, 0, 0, 0, 0,12851, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12851,12851,12851,12855,12855, 0,12855,12855,12855,12855,12855,12855, 0,12855,12855, 0, 0, 0, 0, 0, 0, 0, 0, 0,12855, 12855,12855,12855,12855,12855,12855, 0, 0, 0, 0, 0,12855, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12855,12855, 12855,12856,12856, 0,12856,12856,12856,12856,12856,12856, 0,12856,12856, 0, 0, 0, 0, 0, 0, 0, 0, 0,12856,12856,12856,12856,12856,12856,12856,12856, 0, 0, 0, 0,12856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12856,12856,12856,12859,12859, 0,12859,12859,12859, 12859,12859,12859, 0,12859,12859, 0, 0, 0, 0, 0, 0, 0, 0, 0,12859,12859,12859,12859,12859, 12859,12859, 0, 0, 0, 0, 0,12859, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12859,12859,12859,12860,12860, 0, 12860,12860,12860,12860,12860,12860, 0,12860,12860, 0, 0, 0, 0, 0, 0, 0, 0, 0,12860,12860, 12860,12860,12860,12860,12860,12860, 0, 0, 0, 0, 12860, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12860,12860,12860, 12862,12862, 0,12862,12862,12862,12862,12862,12862, 0, 12862,12862, 0, 0, 0, 0, 0, 0, 0, 0, 0,12862,12862,12862,12862,12862,12862,12862, 0, 0, 0, 0, 0,12862, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12862, 0, 0, 0, 0, 0, 12862,12862,12862, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12862,12863,12863, 0,12863,12863,12863,12863,12863, 12863, 0,12863,12863, 0, 0, 0, 0, 0, 0, 0, 0, 0,12863,12863,12863,12863,12863,12863,12863, 0, 0, 0, 0, 0,12863, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12863,12863,12863,12864,12864, 0,12864,12864, 12864,12864,12864,12864, 0,12864,12864, 0, 0, 0, 0, 0, 0, 0, 0, 0,12864,12864,12864,12864, 12864,12864,12864,12864, 0, 0, 0, 0,12864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12864,12864,12864,12865,12865, 0,12865,12865,12865,12865,12865,12865, 0,12865,12865, 0, 0, 0, 0, 0, 0, 0, 0, 0,12865, 12865,12865,12865,12865,12865,12865, 0, 0, 0, 0, 0,12865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12865,12865, 12865,12866,12866, 0,12866,12866,12866,12866,12866,12866, 0,12866,12866, 0, 0, 0, 0, 0, 0, 0, 0, 0,12866,12866,12866,12866,12866,12866,12866,12866, 0, 0, 0, 0,12866, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12866,12866,12866,12869,12869, 0,12869,12869,12869, 12869,12869,12869, 0,12869,12869, 0, 0, 0, 0, 0, 0, 0, 0, 0,12869,12869,12869,12869,12869, 12869,12869, 0, 0, 0, 0, 0,12869, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12869,12869,12869,12870,12870, 0, 12870,12870,12870,12870,12870,12870, 0,12870,12870, 0, 0, 0, 0, 0, 0, 0, 0, 0,12870,12870, 12870,12870,12870,12870,12870,12870, 0, 0, 0, 0, 12870, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12870,12870,12870, 12872,12872, 0,12872,12872,12872,12872,12872,12872, 0, 12872,12872, 0, 0, 0, 0, 0, 0, 0, 0, 0,12872,12872,12872,12872,12872,12872,12872, 0, 0, 0, 0, 0,12872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12872, 0, 0, 0, 0, 0, 12872,12872,12872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12872,12873,12873, 0,12873,12873,12873,12873,12873, 12873, 0,12873,12873, 0, 0, 0, 0, 0, 0, 0, 0, 0,12873,12873,12873,12873,12873,12873,12873, 0, 0, 0, 0, 0,12873, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12873,12873,12873,12874,12874, 0,12874,12874, 12874,12874,12874,12874, 0,12874,12874, 0, 0, 0, 0, 0, 0, 0, 0, 0,12874,12874,12874,12874, 12874,12874,12874,12874, 0, 0, 0, 0,12874, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12874,12874,12874,12875,12875, 0,12875,12875,12875,12875,12875,12875, 0,12875,12875, 0, 0, 0, 0, 0, 0, 0, 0, 0,12875, 12875,12875,12875,12875,12875,12875, 0, 0, 0, 0, 0,12875, 0, 0,12875, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12875,12875, 12875,12876,12876, 0,12876,12876,12876,12876,12876,12876, 0,12876,12876, 0, 0, 0, 0, 0, 0, 0, 0, 0,12876,12876,12876,12876,12876,12876,12876, 0, 0, 0, 0, 0,12876, 0, 0, 0, 0, 0, 0, 0,12876, 0, 0, 0, 0, 0, 0, 0, 0,12876,12876,12876,12877,12877,12877,12877,12877,12877, 12877,12877,12877,12877, 0, 0, 0, 0, 0, 0, 12877,12877,12877,12877,12877,12877, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12877,12877,12877,12877, 12877,12877,12878,12878,12878,12878,12878,12878,12878,12878, 12878,12878, 0, 0, 0, 0, 0, 0,12878,12878, 12878,12878,12878,12878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12878,12878,12878,12878,12878,12878, 12880,12880,12880,12880,12880,12880,12880,12880,12880,12880, 0, 0, 0, 0, 0, 0,12880,12880,12880,12880, 12880,12880, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12880,12880,12880,12880,12880,12880,12881, 0, 0, 0, 0, 0, 0, 0, 0,12881,12881,12881, 12881,12881,12881,12881,12881,12881, 0, 0, 0, 0, 0, 0, 0,12881,12881,12881,12881,12881,12881, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12881, 12881,12881,12881,12881,12881,12886,12886,12886,12886,12886, 12886,12886,12886,12886,12886, 0, 0, 0, 0, 0, 0,12886,12886,12886,12886,12886,12886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12886,12886,12886, 12886,12886,12886,12887,12887,12887,12887,12887,12887,12887, 12887,12887, 0, 0, 0, 0, 0, 0, 0,12887, 12887,12887,12887,12887,12887, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12887,12887,12887,12887,12887, 12887,12896,12896,12896,12896,12896,12896,12896,12896,12896, 12896, 0, 0, 0, 0, 0, 0,12896,12896,12896, 12896,12896,12896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12896,12896,12896,12896,12896,12896,12897, 12897,12897,12897,12897,12897,12897,12897,12897, 0, 0, 0, 0, 0, 0, 0,12897,12897,12897,12897,12897, 12897, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12897,12897,12897,12897,12897,12897,12908,12908,12908, 12908,12908,12908,12908,12908,12908,12908, 0, 0, 0, 0, 0, 0,12908,12908,12908,12908,12908,12908, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12908, 12908,12908,12908,12908,12908,12909,12909,12909,12909,12909, 12909,12909,12909,12909, 0, 0, 0, 0, 0, 0, 0,12909,12909,12909,12909,12909,12909, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12909,12909,12909, 12909,12909,12909,12916, 0,12916,12916,12916,12916,12916, 12916,12916,12916,12916,12916, 0, 0, 0, 0, 0, 0,12916,12916,12916,12916,12916,12916, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12916,12916,12916, 12916,12916,12916,12924,12924,12924,12924,12924,12924,12924, 12924,12924,12924, 0, 0, 0, 0, 0, 0,12924, 12924,12924,12924,12924,12924, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12924,12924,12924,12924,12924, 12924,12925,12925,12925,12925,12925,12925,12925,12925,12925, 0, 0, 0, 0, 0, 0, 0,12925,12925,12925, 12925,12925,12925, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12925,12925,12925,12925,12925,12925,12932, 12932,12932,12932,12932,12932,12932,12932,12932,12932, 0, 0, 0, 0, 0, 0,12932,12932,12932,12932,12932, 12932, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12932,12932,12932,12932,12932,12932,12936,12936,12936, 12936,12936,12936,12936,12936,12936,12936, 0, 0, 0, 0, 0, 0,12936,12936,12936,12936,12936,12936, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12936, 12936,12936,12936,12936,12936,12937,12937,12937,12937,12937, 12937,12937,12937,12937,12937, 0, 0, 0, 0, 0, 0,12937,12937,12937,12937,12937,12937, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12937,12937,12937, 12937,12937,12937,12940,12940,12940,12940,12940,12940,12940, 12940,12940,12940, 0, 0, 0, 0, 0, 0,12940, 12940,12940,12940,12940,12940, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12940,12940,12940,12940,12940, 12940,12947,12947,12947,12947,12947,12947,12947,12947,12947, 0, 0, 0, 0, 0, 0, 0,12947,12947,12947, 12947,12947,12947, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12947,12947,12947,12947,12947,12947,12948, 12948,12948,12948,12948,12948,12948,12948,12948,12948, 0, 0, 0, 0, 0, 0,12948,12948,12948,12948,12948, 12948, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12948,12948,12948,12948,12948,12948,12953,12953, 0, 12953,12953,12953,12953,12953,12953,12953,12953,12953, 0, 0, 0, 0, 0, 0, 0, 0, 0,12953,12953, 12953,12953,12953,12953,12953, 0, 0, 0, 0, 0, 12953, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12953,12953,12953, 12953,12954,12954, 0,12954,12954,12954,12954,12954,12954, 0,12954,12954, 0, 0, 0, 0, 0, 0, 0, 0, 0,12954,12954,12954,12954,12954,12954,12954, 0, 0, 0, 0, 0,12954, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12954,12954,12954,12955,12955, 0,12955,12955,12955, 12955,12955,12955, 0,12955,12955, 0, 0, 0, 0, 0, 0, 0, 0, 0,12955,12955,12955,12955,12955, 12955,12955,12955, 0, 0, 0, 0,12955, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12955,12955,12955,12959,12959, 0, 12959,12959,12959,12959,12959,12959, 0,12959,12959, 0, 0, 0, 0, 0, 0, 0, 0, 0,12959,12959, 12959,12959,12959,12959,12959, 0, 0, 0, 0, 0, 12959, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12959,12959,12959, 12960,12960, 0,12960,12960,12960,12960,12960,12960, 0, 12960,12960, 0, 0, 0, 0, 0, 0, 0, 0, 0,12960,12960,12960,12960,12960,12960,12960,12960, 0, 0, 0, 0,12960, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12960,12960,12960,12964,12964, 0,12964,12964,12964,12964, 12964,12964, 0,12964,12964, 0, 0, 0, 0, 0, 0, 0, 0, 0,12964,12964,12964,12964,12964,12964, 12964, 0, 0, 0, 0, 0,12964, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12964,12964,12964,12965,12965, 0,12965, 12965,12965,12965,12965,12965, 0,12965,12965, 0, 0, 0, 0, 0, 0, 0, 0, 0,12965,12965,12965, 12965,12965,12965,12965,12965, 0, 0, 0, 0,12965, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12965,12965,12965,12969, 12969, 0,12969,12969,12969,12969,12969,12969, 0,12969, 12969, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12969,12969,12969,12969,12969,12969,12969, 0, 0, 0, 0, 0,12969, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12969, 12969,12969,12970,12970, 0,12970,12970,12970,12970,12970, 12970, 0,12970,12970, 0, 0, 0, 0, 0, 0, 0, 0, 0,12970,12970,12970,12970,12970,12970,12970, 12970, 0, 0, 0, 0,12970, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12970,12970,12970,12973,12973, 0,12973,12973, 12973,12973,12973,12973, 0,12973,12973, 0, 0, 0, 0, 0, 0, 0, 0, 0,12973,12973,12973,12973, 12973,12973,12973, 0, 0, 0, 0, 0,12973, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12973,12973,12973,12974,12974, 0,12974,12974,12974,12974,12974,12974, 0,12974,12974, 0, 0, 0, 0, 0, 0, 0, 0, 0,12974, 12974,12974,12974,12974,12974,12974,12974, 0, 0, 0, 0,12974, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12974,12974, 12974,12976,12976, 0,12976,12976,12976,12976,12976,12976, 0,12976,12976, 0, 0, 0, 0, 0, 0, 0, 0, 0,12976,12976,12976,12976,12976,12976,12976, 0, 0, 0, 0, 0,12976, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12976,12976,12976,12977,12977, 0,12977,12977,12977, 12977,12977,12977, 0,12977,12977, 0, 0, 0, 0, 0, 0, 0, 0, 0,12977,12977,12977,12977,12977, 12977,12977,12977, 0, 0, 0, 0,12977, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12977,12977,12977,12978,12978, 0, 12978,12978,12978,12978,12978,12978, 0,12978,12978, 0, 0, 0, 0, 0, 0, 0, 0, 0,12978,12978, 12978,12978,12978,12978,12978, 0, 0, 0, 0, 0, 12978, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12978, 0, 0,12978,12978,12978, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12978,12979,12979, 0,12979,12979,12979,12979,12979, 12979, 0,12979,12979, 0, 0, 0, 0, 0, 0, 0, 0, 0,12979,12979,12979,12979,12979,12979,12979, 0, 0, 0, 0, 0,12979, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12979,12979,12979,12980,12980, 0,12980,12980, 12980,12980,12980,12980, 0,12980,12980, 0, 0, 0, 0, 0, 0, 0, 0, 0,12980,12980,12980,12980, 12980,12980,12980,12980, 0, 0, 0, 0,12980, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12980,12980,12980,12981,12981, 0,12981,12981,12981,12981,12981,12981, 0,12981,12981, 0, 0, 0, 0, 0, 0, 0, 0, 0,12981, 12981,12981,12981,12981,12981,12981, 0, 0, 0, 0, 0,12981, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12981,12981, 12981,12982,12982, 0,12982,12982,12982,12982,12982,12982, 0,12982,12982, 0, 0, 0, 0, 0, 0, 0, 0, 0,12982,12982,12982,12982,12982,12982,12982,12982, 0, 0, 0, 0,12982, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12982,12982,12982,12983,12983, 0,12983,12983,12983, 12983,12983,12983, 0,12983,12983, 0, 0, 0, 0, 0, 0, 0, 0, 0,12983,12983,12983,12983,12983, 12983,12983, 0, 0, 0, 0, 0,12983, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12983, 0, 0,12983,12983,12983, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12983,12994, 12994, 0,12994,12994,12994,12994,12994,12994, 0,12994, 12994, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12994,12994,12994,12994,12994,12994,12994, 0, 0, 0, 0, 0,12994, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12994, 12994,12994,12995,12995, 0,12995,12995,12995,12995,12995, 12995, 0,12995,12995, 0, 0, 0, 0, 0, 0, 0, 0, 0,12995,12995,12995,12995,12995,12995,12995, 12995, 0, 0, 0, 0,12995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12995,12995,12995,13009,13009, 0,13009,13009, 13009,13009,13009,13009, 0,13009,13009, 0, 0, 0, 0, 0, 0, 0, 0, 0,13009,13009,13009,13009, 13009,13009,13009, 0, 0, 0, 0, 0,13009, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13009,13009,13009,13010,13010, 0,13010,13010,13010,13010,13010,13010, 0,13010,13010, 0, 0, 0, 0, 0, 0, 0, 0, 0,13010, 13010,13010,13010,13010,13010,13010,13010, 0, 0, 0, 0,13010, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13010,13010, 13010,13053, 0, 0, 0,13053, 0,13053, 0, 0, 13053,13053,13053,13053,13053,13053,13053,13053,13053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13053, 0, 0, 13053,13059,13059, 0,13059,13059,13059,13059,13059,13059, 0,13059,13059, 0, 0, 0, 0, 0, 0, 0, 0, 0,13059,13059,13059,13059,13059,13059,13059, 0, 0, 0, 0, 0,13059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13059,13059,13059,13060,13060, 0,13060,13060,13060, 13060,13060,13060, 0,13060,13060, 0, 0, 0, 0, 0, 0, 0, 0, 0,13060,13060,13060,13060,13060, 13060,13060,13060, 0, 0, 0, 0,13060, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13060,13060,13060,13061,13061, 0, 13061,13061,13061,13061,13061,13061, 0,13061,13061, 0, 0, 0, 0, 0, 0, 0, 0, 0,13061,13061, 13061,13061,13061,13061,13061, 0, 0, 0, 0, 0, 13061, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13061,13061,13061, 13062,13062, 0,13062,13062,13062,13062,13062,13062, 0, 13062,13062, 0, 0, 0, 0, 0, 0, 0, 0, 0,13062,13062,13062,13062,13062,13062,13062, 0, 0, 0, 0, 0,13062, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13062,13062,13062,13065,13065, 0,13065,13065,13065,13065, 13065,13065, 0,13065,13065, 0, 0, 0, 0, 0, 0, 0, 0, 0,13065,13065,13065,13065,13065,13065, 13065, 0, 0, 0, 0, 0,13065, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13065,13065,13065, 0, 0, 0,13065, 13066,13066, 0,13066,13066,13066,13066,13066,13066, 0, 13066,13066, 0, 0, 0, 0, 0, 0, 0, 0, 0,13066,13066,13066,13066,13066,13066,13066,13066, 0, 0, 0, 0,13066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13066,13066,13066, 0, 0, 0,13066,13076,13076, 0, 13076,13076,13076,13076,13076,13076, 0,13076,13076, 0, 0, 0, 0, 0, 0, 0, 0, 0,13076,13076, 13076,13076,13076,13076,13076, 0, 0, 0, 0, 0, 13076, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13076,13076,13076, 0, 0, 0,13076,13077,13077, 0,13077,13077,13077, 13077,13077,13077, 0,13077,13077, 0, 0, 0, 0, 0, 0, 0, 0, 0,13077,13077,13077,13077,13077, 13077,13077,13077, 0, 0, 0, 0,13077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13077,13077,13077, 0, 0, 0, 13077,13083,13083, 0,13083,13083,13083,13083,13083,13083, 0,13083,13083, 0, 0, 0, 0, 0, 0, 0, 0, 0,13083,13083,13083,13083,13083,13083,13083, 0, 0, 0, 0, 0,13083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13083,13083,13083, 0, 0, 0,13083,13084,13084, 0,13084,13084,13084,13084,13084,13084, 0,13084,13084, 0, 0, 0, 0, 0, 0, 0, 0, 0,13084, 13084,13084,13084,13084,13084,13084,13084, 0, 0, 0, 0,13084, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13084,13084, 13084, 0, 0, 0,13084,13089,13089, 0,13089,13089, 13089,13089,13089,13089, 0,13089,13089, 0, 0, 0, 0, 0, 0, 0, 0, 0,13089,13089,13089,13089, 13089,13089,13089, 0, 0, 0, 0, 0,13089, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13089,13089,13089, 0, 0, 0,13089,13090,13090, 0,13090,13090,13090,13090,13090, 13090, 0,13090,13090, 0, 0, 0, 0, 0, 0, 0, 0, 0,13090,13090,13090,13090,13090,13090,13090, 13090, 0, 0, 0, 0,13090, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13090,13090,13090, 0, 0, 0,13090,13093, 13093, 0,13093,13093,13093,13093,13093,13093, 0,13093, 13093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13093,13093,13093,13093,13093,13093,13093, 0, 0, 0, 0, 0,13093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13093, 13093,13093, 0, 0, 0,13093,13094,13094, 0,13094, 13094,13094,13094,13094,13094, 0,13094,13094, 0, 0, 0, 0, 0, 0, 0, 0, 0,13094,13094,13094, 13094,13094,13094,13094,13094, 0, 0, 0, 0,13094, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13094,13094,13094, 0, 0, 0,13094,13095,13095, 0,13095,13095,13095,13095, 13095,13095, 0,13095,13095, 0, 0, 0, 0, 0, 0, 0, 0, 0,13095,13095,13095,13095,13095,13095, 13095, 0, 0, 0, 0, 0,13095,13095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13095,13095,13095, 0, 0, 0,13095, 0, 0, 0,13095,13096,13096, 0,13096,13096,13096, 13096,13096,13096, 0,13096,13096, 0,13096,13096,13096, 13096,13096,13096,13096,13096,13096,13096,13096,13096,13096, 13096,13096, 0, 0, 0, 0, 0,13096, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13096,13096,13096, 0, 0, 0, 13096,13097,13097, 0,13097,13097,13097,13097,13097,13097, 0,13097,13097, 0, 0, 0, 0, 0, 0, 0, 0, 0,13097,13097,13097,13097,13097,13097,13097, 0, 0, 0, 0, 0,13097, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13097,13097,13097, 0, 0, 0,13097,13099,13099, 0,13099,13099,13099,13099,13099,13099, 0,13099,13099, 0, 0, 0, 0, 0, 0, 0, 0, 0,13099, 13099,13099,13099,13099,13099,13099, 0, 0, 0, 0, 0,13099,13099, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13099,13099, 13099, 0, 0, 0,13099, 0, 0, 0,13099,13105, 13105, 0,13105,13105,13105,13105,13105,13105, 0,13105, 13105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13105,13105,13105,13105,13105,13105,13105, 0, 0, 0, 0, 0,13105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13105, 13105,13105, 0, 0, 0,13105,13106,13106, 0,13106, 13106,13106,13106,13106,13106, 0,13106,13106, 0, 0, 0, 0, 0, 0, 0, 0, 0,13106,13106,13106, 13106,13106,13106,13106,13106, 0, 0, 0, 0,13106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13106,13106,13106, 0, 0, 0,13106,13114,13114, 0,13114,13114,13114,13114, 13114,13114, 0,13114,13114, 0, 0, 0, 0, 0, 0, 0, 0, 0,13114,13114,13114,13114,13114,13114, 13114, 0, 0, 0, 0, 0,13114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13114,13114,13114, 0, 0, 0,13114, 13115,13115, 0,13115,13115,13115,13115,13115,13115, 0, 13115,13115, 0, 0, 0, 0, 0, 0, 0, 0, 0,13115,13115,13115,13115,13115,13115,13115,13115, 0, 0, 0, 0,13115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13115,13115,13115, 0, 0, 0,13115,13122,13122, 0, 13122,13122,13122,13122,13122,13122, 0,13122,13122, 0, 0, 0, 0, 0, 0, 0, 0, 0,13122,13122, 13122,13122,13122,13122,13122, 0, 0, 0, 0, 0, 13122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13122,13122,13122, 0, 0, 0,13122,13123,13123, 0,13123,13123,13123, 13123,13123,13123, 0,13123,13123, 0, 0, 0, 0, 0, 0, 0, 0, 0,13123,13123,13123,13123,13123, 13123,13123,13123, 0, 0, 0, 0,13123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13123,13123,13123, 0, 0, 0, 13123,13128,13128, 0,13128,13128,13128,13128,13128,13128, 0,13128,13128, 0, 0, 0, 0, 0, 0, 0, 0, 0,13128,13128,13128,13128,13128,13128,13128, 0, 0, 0, 0, 0,13128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13128,13128,13128, 0, 0, 0,13128,13129,13129, 0,13129,13129,13129,13129,13129,13129, 0,13129,13129, 0, 0, 0, 0, 0, 0, 0, 0, 0,13129, 13129,13129,13129,13129,13129,13129,13129, 0, 0, 0, 0,13129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13129,13129, 13129, 0, 0, 0,13129,13132,13132, 0,13132,13132, 13132,13132,13132,13132, 0,13132,13132, 0, 0, 0, 0, 0, 0, 0, 0, 0,13132,13132,13132,13132, 13132,13132,13132, 0, 0, 0, 0, 0,13132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13132, 0, 0, 0, 0, 0,13132,13132,13132, 0, 0, 0,13132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13132,13133,13133, 0, 13133,13133,13133,13133,13133,13133, 0,13133,13133, 0, 0, 0, 0, 0, 0, 0, 0, 0,13133,13133, 13133,13133,13133,13133,13133, 0, 0, 0, 0, 0, 13133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13133,13133,13133, 0, 0, 0,13133,13134,13134, 0,13134,13134,13134, 13134,13134,13134, 0,13134,13134, 0, 0, 0, 0, 0, 0, 0, 0, 0,13134,13134,13134,13134,13134, 13134,13134,13134, 0, 0, 0, 0,13134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13134,13134,13134, 0, 0, 0, 13134,13138,13138, 0,13138,13138,13138,13138,13138,13138, 0,13138,13138, 0, 0, 0, 0, 0, 0, 0, 0, 0,13138,13138,13138,13138,13138,13138,13138, 0, 0, 0, 0, 0,13138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13138,13138,13138, 0, 0, 0,13138,13139,13139, 0,13139,13139,13139,13139,13139,13139, 0,13139,13139, 0, 0, 0, 0, 0, 0, 0, 0, 0,13139, 13139,13139,13139,13139,13139,13139,13139, 0, 0, 0, 0,13139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13139,13139, 13139, 0, 0, 0,13139,13147,13147, 0,13147,13147, 13147,13147,13147,13147, 0,13147,13147, 0, 0, 0, 0, 0, 0, 0, 0, 0,13147,13147,13147,13147, 13147,13147,13147, 0, 0, 0, 0, 0,13147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13147,13147,13147, 0, 0, 0,13147,13148,13148, 0,13148,13148,13148,13148,13148, 13148, 0,13148,13148, 0, 0, 0, 0, 0, 0, 0, 0, 0,13148,13148,13148,13148,13148,13148,13148, 13148, 0, 0, 0, 0,13148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13148,13148,13148, 0, 0, 0,13148,13153, 13153, 0,13153,13153,13153,13153,13153,13153, 0,13153, 13153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13153,13153,13153,13153,13153,13153,13153, 0, 0, 0, 0, 0,13153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13153, 13153,13153, 0, 0, 0,13153,13154,13154, 0,13154, 13154,13154,13154,13154,13154, 0,13154,13154, 0, 0, 0, 0, 0, 0, 0, 0, 0,13154,13154,13154, 13154,13154,13154,13154,13154, 0, 0, 0, 0,13154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13154,13154,13154, 0, 0, 0,13154,13157,13157, 0,13157,13157,13157,13157, 13157,13157, 0,13157,13157, 0, 0, 0, 0, 0, 0, 0, 0, 0,13157,13157,13157,13157,13157,13157, 13157, 0, 0, 0, 0, 0,13157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13157, 0, 0, 0, 0, 0,13157,13157,13157, 0, 0, 0,13157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13157,13158,13158, 0,13158,13158, 13158,13158,13158,13158, 0,13158,13158, 0, 0, 0, 0, 0, 0, 0, 0, 0,13158,13158,13158,13158, 13158,13158,13158, 0, 0, 0, 0, 0,13158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13158,13158,13158, 0, 0, 0,13158,13159,13159, 0,13159,13159,13159,13159,13159, 13159, 0,13159,13159, 0, 0, 0, 0, 0, 0, 0, 0, 0,13159,13159,13159,13159,13159,13159,13159, 13159, 0, 0, 0, 0,13159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13159,13159,13159, 0, 0, 0,13159,13166, 13166, 0,13166,13166,13166,13166,13166,13166, 0,13166, 13166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13166,13166,13166,13166,13166,13166,13166, 0, 0, 0, 0, 0,13166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13166, 13166,13166, 0,13166, 0,13166,13167,13167, 0,13167, 13167,13167,13167,13167,13167, 0,13167,13167, 0, 0, 0, 0, 0, 0, 0, 0, 0,13167,13167,13167, 13167,13167,13167,13167, 0, 0, 0, 0, 0,13167, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13167,13167,13167, 0, 0, 0,13167,13167,13171,13171, 0,13171,13171,13171, 13171,13171,13171, 0,13171,13171, 0, 0, 0, 0, 0, 0, 0, 0, 0,13171,13171,13171,13171,13171, 13171,13171, 0, 0, 0, 0, 0,13171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13171,13171,13171, 0, 0, 0, 13171, 0,13171,13172, 0, 0, 0, 0, 0, 0, 0, 0, 0,13172,13172,13172,13172,13172,13172,13172, 13172,13172, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13172, 0, 0, 0, 0, 0, 13172,13176,13176,13176,13176,13176,13176,13176,13176,13176, 0,13176,13176, 0, 0, 0, 0, 0, 0, 0, 0, 0,13176,13176,13176,13176,13176,13176,13176, 0, 0, 0, 0, 0,13176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13176,13176,13176,13177,13177,13177,13177,13177,13177, 13177,13177,13177, 0,13177,13177, 0, 0, 0, 0, 0, 0, 0, 0, 0,13177,13177,13177,13177,13177, 13177,13177,13177, 0, 0, 0, 0,13177, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13177,13177,13177,13182,13182,13182, 13182,13182,13182,13182,13182,13182, 0,13182,13182, 0, 0, 0, 0, 0, 0, 0, 0, 0,13182,13182, 13182,13182,13182,13182,13182, 0, 0, 0, 0, 0, 13182, 0, 0,13182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13182,13182,13182, 13182,13183,13183,13183,13183,13183,13183,13183,13183,13183, 0,13183,13183, 0, 0, 0, 0, 0, 0, 0, 0, 0,13183,13183,13183,13183,13183,13183,13183,13183, 0, 0, 0, 0,13183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13183,13183,13183,13193,13193, 0,13193,13193,13193, 13193, 0,13193,13193,13193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13193,13193,13193,13193,13193, 13193,13193, 0, 0, 0, 0, 0,13193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13193,13193,13193,13193,13194,13194, 0,13194,13194,13194,13194, 0,13194,13194,13194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13194, 13194,13194,13194,13194,13194,13194,13194, 0, 0, 0, 0,13194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13194,13194, 13194,13194,13198,13198,13198,13198,13198,13198,13198,13198, 13198, 0, 0, 0, 0, 0, 0, 0,13198,13198, 13198,13198,13198,13198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13198,13198,13198,13198,13198,13198, 13207, 0,13207, 0, 0,13207,13207,13207,13207,13207, 13207,13207,13207,13207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13207, 0, 0,13207,13208,13208, 0,13208, 13208,13208,13208,13208,13208, 0,13208,13208, 0, 0, 0, 0, 0, 0, 0, 0, 0,13208,13208,13208, 13208,13208,13208,13208, 0, 0, 0, 0, 0,13208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13208,13208,13208,13209, 13209, 0,13209,13209,13209,13209,13209,13209, 0,13209, 13209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13209,13209,13209,13209,13209,13209,13209,13209, 0, 0, 0, 0,13209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13209, 13209,13209,13218, 0,13218,13218,13218,13218,13218,13218, 13218,13218,13218,13218, 0, 0, 0, 0, 0, 0, 13218,13218,13218,13218,13218,13218, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13218,13218,13218,13218, 13218,13218,13224,13224,13224,13224,13224,13224,13224,13224, 13224,13224, 0, 0, 0, 0, 0, 0,13224,13224, 13224,13224,13224,13224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13224, 0, 0, 0,13224,13224,13224,13224,13224,13224, 13228,13228,13228,13228,13228,13228,13228,13228,13228,13228, 0, 0, 0, 0, 0, 0,13228,13228,13228,13228, 13228,13228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13228,13228,13228,13228,13228,13228,13232,13232, 13232,13232,13232,13232,13232,13232,13232,13232, 0, 0, 0, 0, 0, 0,13232,13232,13232,13232,13232,13232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13232,13232,13232,13232,13232,13232,13236,13236,13236,13236, 13236,13236,13236,13236,13236,13236, 0, 0, 0, 0, 0, 0,13236,13236,13236,13236,13236,13236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13236,13236, 13236,13236,13236,13236,13237,13237,13237,13237,13237,13237, 13237,13237,13237, 0, 0, 0, 0, 0, 0, 0, 13237,13237,13237,13237,13237,13237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13237, 0, 0, 0,13237,13237,13237,13237, 13237,13237,13240,13240,13240,13240,13240,13240,13240,13240, 13240,13240, 0, 0, 0, 0, 0, 0,13240,13240, 13240,13240,13240,13240, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13240,13240,13240,13240,13240,13240, 13284, 0, 0, 0, 0, 0, 0,13284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13284, 0,13284, 0,13284, 0, 0,13284, 0, 0, 0, 0,13284, 0, 0,13284, 0,13284, 0, 13284, 0,13284,13284,13284,13286,13286, 0, 0, 0, 0,13286, 0, 0,13286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13286, 0, 0, 0, 0, 0, 0,13286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13286, 0,13286, 0,13286, 0, 0,13286, 0, 0, 0, 0,13286, 0, 0,13286, 0,13286, 0,13286, 0,13286,13286, 13286,13287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13287, 0, 0, 0, 0, 0, 0,13287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13287, 0,13287, 0,13287, 0, 0,13287, 0, 0, 0, 0,13287, 0, 0,13287, 0,13287, 0,13287, 0,13287,13287,13287,13288, 0, 0, 0, 0, 0, 0,13288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13288, 0,13288, 0,13288, 0, 0,13288, 0, 0, 0, 0,13288, 0, 0,13288, 0,13288, 0,13288, 0,13288,13288, 13288,13289, 0, 0, 0, 0, 0, 0,13289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13289, 0,13289, 0,13289, 0, 0,13289, 0, 0, 0, 0,13289, 0, 0,13289, 0,13289, 0,13289, 0,13289,13289,13289,13290, 0, 0, 0, 0, 0, 0,13290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13290, 0,13290, 0,13290, 0, 0,13290, 0, 0, 0, 0,13290, 13290, 0,13290, 0,13290, 0,13290, 0,13290,13290, 13290,13291, 0, 0, 0, 0, 0, 0,13291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13291,13291,13291, 0,13291, 0, 0,13291, 0, 0, 0, 0,13291, 0, 0,13291, 0,13291, 0,13291, 0,13291,13291,13291,13292, 0, 0, 0, 0, 0, 0,13292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13292, 0,13292, 0,13292, 0, 0,13292, 0, 0, 0, 0,13292, 0, 0,13292, 0,13292, 0,13292, 0,13292,13292, 13292,13293,13293, 0, 0, 0, 0,13293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13293, 0, 0, 0, 0, 0, 0,13293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13293, 0,13293, 0,13293, 0, 0, 13293, 0, 0, 0, 0,13293, 0, 0,13293, 0, 13293, 0,13293, 0,13293,13293,13293,13294, 0, 0, 0, 0, 0, 0,13294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13294, 0, 13294, 0,13294, 0, 0,13294, 0, 0, 0,13294, 13294, 0, 0,13294, 0,13294, 0,13294, 0,13294, 13294,13294,13295, 0, 0, 0, 0, 0, 0,13295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13295, 0,13295,13295,13295, 0, 0, 13295, 0, 0, 0, 0,13295, 0, 0,13295, 0, 13295, 0,13295, 0,13295,13295,13295,13296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13296, 0, 0, 0, 0, 0, 0,13296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13296, 0,13296, 0, 13296, 0, 0,13296, 0, 0, 0, 0,13296, 0, 0,13296, 0,13296, 0,13296, 0,13296,13296,13296, 13297, 0, 0, 0, 0, 0, 0,13297, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13297, 0,13297, 0,13297, 0, 0,13297, 0, 0, 0, 0,13297, 0, 0,13297, 0,13297, 0, 13297, 0,13297,13297,13297,13297,13298, 0, 0, 0, 0, 0, 0,13298, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13298, 0,13298, 13298,13298, 0, 0,13298, 0, 0, 0, 0,13298, 0, 0,13298, 0,13298, 0,13298, 0,13298,13298, 13298,13299, 0, 0, 0, 0, 0, 0,13299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13299, 0,13299, 0,13299, 0,13299,13299, 0, 0, 0, 0,13299, 0,13299,13299, 0,13299, 0,13299, 0,13299,13299,13299,13300, 0, 0, 0, 0, 0, 0,13300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13300, 0,13300, 0,13300, 0, 0,13300, 0, 0, 0, 0,13300, 0,13300,13300, 0,13300, 0,13300, 0,13300,13300, 13300,13301, 0, 0, 0, 0, 0, 0,13301, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13301, 0,13301, 0,13301, 0, 0,13301, 13301, 0, 0, 0,13301, 0, 0,13301, 0,13301, 0,13301, 0,13301,13301,13301,13302, 0, 0, 0, 0, 0, 0,13302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13302, 0,13302, 0,13302, 0, 0,13302, 0, 0, 0, 0,13302, 0, 0,13302, 0,13302, 0,13302, 0,13302,13302, 13302,13318,13318, 0, 0, 0, 0,13318, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13318, 0, 0, 0, 0, 0, 0,13318, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13318, 0,13318, 0,13318, 0, 0, 13318, 0, 0, 0, 0,13318, 0, 0,13318, 0, 13318, 0,13318, 0,13318,13318,13318,13319,13319, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13319, 0, 0, 0, 0, 0, 0,13319, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13319, 0,13319, 0,13319, 0, 0,13319, 0, 0, 0, 0,13319, 0, 0,13319, 0,13319, 0,13319, 0,13319,13319,13319,13320, 0, 0, 0, 0, 0, 0,13320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13320, 0, 0, 0, 0, 0, 0, 13320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13320, 0,13320, 0,13320, 0, 0,13320, 0, 0, 0, 0,13320, 0, 0,13320, 0,13320, 0,13320, 0,13320,13320,13320,13321,13321, 0, 0, 0, 0,13321, 0, 0,13321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13321, 0, 0, 0, 0, 0, 0,13321, 0, 0,13321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13321, 0,13321, 0,13321, 0, 0,13321, 0, 0, 0, 0,13321, 0, 0,13321, 0,13321, 0,13321, 0,13321,13321,13321,13322, 0,13322, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13322, 0, 0, 0, 0, 0, 0,13322, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13322, 0,13322, 0,13322, 0, 0,13322, 0, 0, 0, 0,13322, 0, 0,13322, 0,13322, 0,13322, 0, 13322,13322,13322,13323, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13323, 0, 0, 0, 0, 0,13323,13323, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13323, 0,13323, 0, 13323, 0, 0,13323, 0, 0, 0, 0,13323, 0, 0,13323, 0,13323, 0,13323, 0,13323,13323,13323, 13324, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13324, 0, 0, 0, 0, 0, 0,13324, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13324, 0,13324,13324,13324, 0, 0, 13324, 0, 0, 0, 0,13324, 0, 0,13324, 0, 13324, 0,13324, 0,13324,13324,13324,13325, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13325, 0, 0, 0, 0, 0, 0,13325, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13325, 0,13325,13325,13325, 0, 0,13325, 0, 0, 0, 0,13325, 0, 0,13325, 0,13325, 0,13325, 0,13325,13325,13325,13326, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13326, 0, 0, 0, 0, 0, 0,13326, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13326, 0,13326, 0,13326, 0, 0,13326,13326, 0, 0, 0,13326, 0, 0,13326, 0,13326, 0,13326, 0,13326,13326, 13326,13326,13333,13333, 0, 0, 0, 0,13333, 0, 0,13333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13333, 0, 0, 0, 0, 0, 0, 13333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13333, 0,13333,13333,13333, 0, 0,13333,13333, 0, 0, 0,13333, 0, 0,13333, 0,13333, 0,13333, 0,13333,13333,13333,13356,13356, 13356, 0, 0, 0,13356, 0,13356,13356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13356, 0, 0, 0, 0, 0, 0,13356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13356, 0,13356, 0,13356, 0, 0,13356, 0, 0, 0, 0,13356, 0, 0,13356, 0,13356, 0,13356, 0,13356,13356,13356,13357,13357, 0, 0, 0, 0, 13357, 0, 0,13357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13357, 0, 0, 0, 0, 0, 0,13357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13357, 0,13357, 0, 13357, 0, 0,13357, 0, 0, 0, 0,13357,13357, 0,13357, 0,13357, 0,13357, 0,13357,13357,13357, 13367,13367, 0,13367,13367,13367,13367,13367,13367, 0, 13367,13367, 0, 0, 0, 0, 0, 0, 0, 0, 0,13367,13367,13367,13367,13367,13367,13367, 0, 0, 0, 0, 0,13367, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13367,13367,13367,13370,13370, 0,13370,13370,13370,13370, 13370,13370, 0,13370,13370, 0, 0, 0, 0, 0, 0, 0, 0, 0,13370,13370,13370,13370,13370,13370, 13370, 0, 0, 0, 0, 0,13370, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13370,13370,13370,13371,13371, 0,13371, 13371,13371,13371,13371,13371, 0,13371,13371, 0, 0, 0, 0, 0, 0, 0, 0, 0,13371,13371,13371, 13371,13371,13371,13371,13371, 0, 0, 0, 0,13371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13371,13371,13371,13385, 13385, 0,13385,13385,13385,13385,13385,13385, 0,13385, 13385, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13385,13385,13385,13385,13385,13385,13385, 0, 0, 0, 0, 0,13385, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13385, 13385,13385,13386,13386, 0,13386,13386,13386,13386,13386, 13386, 0,13386,13386, 0, 0, 0, 0, 0, 0, 0, 0, 0,13386,13386,13386,13386,13386,13386,13386, 13386, 0, 0, 0, 0,13386, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13386,13386,13386,13415,13415, 0,13415,13415, 13415,13415,13415,13415, 0,13415,13415, 0, 0, 0, 0, 0, 0, 0, 0, 0,13415,13415,13415,13415, 13415,13415,13415, 0, 0, 0, 0, 0,13415, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13415,13415,13415,13417,13417, 13417,13417,13417,13417,13417,13417,13417,13417, 0, 0, 0, 0, 0, 0,13417,13417,13417,13417,13417,13417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13417,13417,13417,13417,13417,13417,13420,13420,13420,13420, 13420,13420,13420,13420,13420,13420, 0, 0, 0, 0, 0, 0,13420,13420,13420,13420,13420,13420, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13420,13420, 13420,13420,13420,13420,13421, 0, 0, 0, 0, 0, 0, 0, 0,13421,13421,13421,13421,13421,13421,13421, 13421,13421, 0, 0, 0, 0, 0, 0, 0,13421, 13421,13421,13421,13421,13421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13421,13421,13421,13421,13421, 13421,13426,13426,13426,13426,13426,13426,13426,13426,13426, 13426, 0, 0, 0, 0, 0, 0,13426,13426,13426, 13426,13426,13426, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13426,13426,13426,13426,13426,13426,13427, 13427,13427,13427,13427,13427,13427,13427,13427, 0, 0, 0, 0, 0, 0, 0,13427,13427,13427,13427,13427, 13427, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13427,13427,13427,13427,13427,13427,13436,13436,13436, 13436,13436,13436,13436,13436,13436,13436, 0, 0, 0, 0, 0, 0,13436,13436,13436,13436,13436,13436, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13436, 13436,13436,13436,13436,13436,13437,13437,13437,13437,13437, 13437,13437,13437,13437, 0, 0, 0, 0, 0, 0, 0,13437,13437,13437,13437,13437,13437, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13437,13437,13437, 13437,13437,13437,13448,13448,13448,13448,13448,13448,13448, 13448,13448,13448, 0, 0, 0, 0, 0, 0,13448, 13448,13448,13448,13448,13448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13448,13448,13448,13448,13448, 13448,13449,13449,13449,13449,13449,13449,13449,13449,13449, 0, 0, 0, 0, 0, 0, 0,13449,13449,13449, 13449,13449,13449, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13449,13449,13449,13449,13449,13449,13456, 0,13456,13456,13456,13456,13456,13456,13456,13456,13456, 13456, 0, 0, 0, 0, 0, 0,13456,13456,13456, 13456,13456,13456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13456,13456,13456,13456,13456,13456,13464, 13464,13464,13464,13464,13464,13464,13464,13464,13464, 0, 0, 0, 0, 0, 0,13464,13464,13464,13464,13464, 13464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13464,13464,13464,13464,13464,13464,13465,13465,13465, 13465,13465,13465,13465,13465,13465, 0, 0, 0, 0, 0, 0, 0,13465,13465,13465,13465,13465,13465, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13465, 13465,13465,13465,13465,13465,13472,13472,13472,13472,13472, 13472,13472,13472,13472,13472, 0, 0, 0, 0, 0, 0,13472,13472,13472,13472,13472,13472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13472,13472,13472, 13472,13472,13472,13476,13476,13476,13476,13476,13476,13476, 13476,13476,13476, 0, 0, 0, 0, 0, 0,13476, 13476,13476,13476,13476,13476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13476,13476,13476,13476,13476, 13476,13477,13477,13477,13477,13477,13477,13477,13477,13477, 13477, 0, 0, 0, 0, 0, 0,13477,13477,13477, 13477,13477,13477, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13477,13477,13477,13477,13477,13477,13480, 13480,13480,13480,13480,13480,13480,13480,13480,13480, 0, 0, 0, 0, 0, 0,13480,13480,13480,13480,13480, 13480, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13480,13480,13480,13480,13480,13480,13487,13487,13487, 13487,13487,13487,13487,13487,13487, 0, 0, 0, 0, 0, 0, 0,13487,13487,13487,13487,13487,13487, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13487, 13487,13487,13487,13487,13487,13488,13488,13488,13488,13488, 13488,13488,13488,13488,13488, 0, 0, 0, 0, 0, 0,13488,13488,13488,13488,13488,13488, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13488,13488,13488, 13488,13488,13488,13494,13494, 0,13494,13494,13494,13494, 13494,13494, 0,13494,13494, 0, 0, 0, 0, 0, 0, 0, 0, 0,13494,13494,13494,13494,13494,13494, 13494, 0, 0, 0, 0, 0,13494, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13494,13494,13494,13495,13495, 0,13495, 13495,13495,13495,13495,13495, 0,13495,13495, 0, 0, 0, 0, 0, 0, 0, 0, 0,13495,13495,13495, 13495,13495,13495,13495,13495, 0, 0, 0, 0,13495, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13495,13495,13495,13499, 13499, 0,13499,13499,13499,13499,13499,13499, 0,13499, 13499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13499,13499,13499,13499,13499,13499,13499, 0, 0, 0, 0, 0,13499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13499, 13499,13499,13500,13500, 0,13500,13500,13500,13500,13500, 13500, 0,13500,13500, 0, 0, 0, 0, 0, 0, 0, 0, 0,13500,13500,13500,13500,13500,13500,13500, 13500, 0, 0, 0, 0,13500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13500,13500,13500,13504,13504, 0,13504,13504, 13504,13504,13504,13504, 0,13504,13504, 0, 0, 0, 0, 0, 0, 0, 0, 0,13504,13504,13504,13504, 13504,13504,13504, 0, 0, 0, 0, 0,13504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13504,13504,13504,13505,13505, 0,13505,13505,13505,13505,13505,13505, 0,13505,13505, 0, 0, 0, 0, 0, 0, 0, 0, 0,13505, 13505,13505,13505,13505,13505,13505,13505, 0, 0, 0, 0,13505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13505,13505, 13505,13509,13509, 0,13509,13509,13509,13509,13509,13509, 0,13509,13509, 0, 0, 0, 0, 0, 0, 0, 0, 0,13509,13509,13509,13509,13509,13509,13509, 0, 0, 0, 0, 0,13509, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13509,13509,13509,13510,13510, 0,13510,13510,13510, 13510,13510,13510, 0,13510,13510, 0, 0, 0, 0, 0, 0, 0, 0, 0,13510,13510,13510,13510,13510, 13510,13510,13510, 0, 0, 0, 0,13510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13510,13510,13510,13513,13513, 0, 13513,13513,13513,13513,13513,13513, 0,13513,13513, 0, 0, 0, 0, 0, 0, 0, 0, 0,13513,13513, 13513,13513,13513,13513,13513, 0, 0, 0, 0, 0, 13513, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13513,13513,13513, 13514,13514, 0,13514,13514,13514,13514,13514,13514, 0, 13514,13514, 0, 0, 0, 0, 0, 0, 0, 0, 0,13514,13514,13514,13514,13514,13514,13514,13514, 0, 0, 0, 0,13514, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13514,13514,13514,13516,13516, 0,13516,13516,13516,13516, 13516,13516, 0,13516,13516, 0, 0, 0, 0, 0, 0, 0, 0, 0,13516,13516,13516,13516,13516,13516, 13516, 0, 0, 0, 0, 0,13516, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13516,13516,13516,13517,13517, 0,13517, 13517,13517,13517,13517,13517, 0,13517,13517, 0, 0, 0, 0, 0, 0, 0, 0, 0,13517,13517,13517, 13517,13517,13517,13517,13517, 0, 0, 0, 0,13517, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13517,13517,13517,13518, 13518, 0,13518,13518,13518,13518,13518,13518, 0,13518, 13518, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13518,13518,13518,13518,13518,13518,13518, 0, 0, 0, 0, 0,13518, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13518, 0, 0,13518, 13518,13518, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13518,13519,13519, 0,13519,13519,13519, 13519,13519,13519, 0,13519,13519, 0, 0, 0, 0, 0, 0, 0, 0, 0,13519,13519,13519,13519,13519, 13519,13519, 0, 0, 0, 0, 0,13519, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13519,13519,13519,13520,13520, 0, 13520,13520,13520,13520,13520,13520, 0,13520,13520,13520, 13520,13520,13520,13520,13520,13520,13520,13520,13520,13520, 13520,13520,13520,13520,13520, 0, 0, 0, 0, 0, 13520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13520,13520,13520, 13522,13522, 0,13522,13522,13522,13522,13522,13522, 0, 13522,13522, 0, 0, 0, 0, 0, 0, 0, 0, 0,13522,13522,13522,13522,13522,13522,13522, 0, 0, 0, 0, 0,13522, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13522,13522,13522,13523,13523, 0,13523,13523,13523,13523, 13523,13523, 0,13523,13523, 0, 0, 0, 0, 0, 0, 0, 0, 0,13523,13523,13523,13523,13523,13523, 13523,13523, 0, 0, 0, 0,13523, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13523,13523,13523,13524,13524, 0,13524, 13524,13524,13524,13524,13524, 0,13524,13524, 0, 0, 0, 0, 0, 0, 0, 0, 0,13524,13524,13524, 13524,13524,13524,13524, 0, 0, 0, 0, 0,13524, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13524, 0, 0,13524,13524,13524, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13524,13535,13535, 0,13535,13535,13535,13535,13535,13535, 0,13535,13535, 0, 0, 0, 0, 0, 0, 0, 0, 0,13535,13535,13535,13535,13535,13535,13535, 0, 0, 0, 0, 0,13535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13535,13535,13535,13536,13536, 0,13536,13536,13536, 13536,13536,13536, 0,13536,13536, 0, 0, 0, 0, 0, 0, 0, 0, 0,13536,13536,13536,13536,13536, 13536,13536,13536, 0, 0, 0, 0,13536, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13536,13536,13536,13550,13550, 0, 13550,13550,13550,13550,13550,13550, 0,13550,13550, 0, 0, 0, 0, 0, 0, 0, 0, 0,13550,13550, 13550,13550,13550,13550,13550, 0, 0, 0, 0, 0, 13550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13550,13550,13550, 13551,13551, 0,13551,13551,13551,13551,13551,13551, 0, 13551,13551, 0, 0, 0, 0, 0, 0, 0, 0, 0,13551,13551,13551,13551,13551,13551,13551,13551, 0, 0, 0, 0,13551, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13551,13551,13551,13572,13572, 0,13572,13572,13572,13572, 13572,13572, 0,13572,13572, 0, 0, 0, 0, 0, 0, 0, 0, 0,13572,13572,13572,13572,13572,13572, 13572, 0, 0, 0, 0, 0,13572, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13572,13572,13572,13573,13573, 0,13573, 13573,13573,13573,13573,13573, 0,13573,13573, 0, 0, 0, 0, 0, 0, 0, 0, 0,13573,13573,13573, 13573,13573,13573,13573,13573, 0, 0, 0, 0,13573, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13573,13573,13573,13574, 13574, 0,13574,13574,13574,13574,13574,13574, 0,13574, 13574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13574,13574,13574,13574,13574,13574,13574, 0, 0, 0, 0, 0,13574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13574, 13574,13574,13575,13575, 0,13575,13575,13575,13575,13575, 13575, 0,13575,13575, 0, 0, 0, 0, 0, 0, 0, 0, 0,13575,13575,13575,13575,13575,13575,13575, 13575, 0, 0, 0, 0,13575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13575,13575,13575,13576,13576, 0,13576,13576, 13576,13576,13576,13576, 0,13576,13576, 0, 0, 0, 0, 0, 0, 0, 0, 0,13576,13576,13576,13576, 13576,13576,13576, 0, 0, 0, 0, 0,13576, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13576, 0, 0, 0, 0,13576,13576,13576, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13576,13581,13581, 0,13581,13581,13581,13581,13581,13581, 0,13581,13581, 0, 0, 0, 0, 0, 0, 0, 0, 0,13581, 13581,13581,13581,13581,13581,13581, 0, 0, 0, 0, 0,13581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13581,13581, 13581,13582,13582, 0,13582,13582,13582,13582,13582,13582, 0,13582,13582, 0, 0, 0, 0, 0, 0, 0, 0, 0,13582,13582,13582,13582,13582,13582,13582,13582, 0, 0, 0, 0,13582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13582,13582,13582,13585,13585, 0,13585,13585,13585, 13585,13585,13585, 0,13585,13585, 0, 0, 0, 0, 0, 0, 0, 0, 0,13585,13585,13585,13585,13585, 13585,13585, 0, 0, 0, 0, 0,13585, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13585,13585,13585,13586,13586, 0, 13586,13586,13586,13586,13586,13586, 0,13586,13586, 0, 0, 0, 0, 0, 0, 0, 0, 0,13586,13586, 13586,13586,13586,13586,13586,13586, 0, 0, 0, 0, 13586, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13586,13586,13586, 13588,13588, 0,13588,13588,13588,13588,13588,13588, 0, 13588,13588, 0, 0, 0, 0, 0, 0, 0, 0, 0,13588,13588,13588,13588,13588,13588,13588, 0, 0, 0, 0, 0,13588, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13588,13588,13588,13589,13589, 0,13589,13589,13589,13589, 13589,13589, 0,13589,13589, 0, 0, 0, 0, 0, 0, 0, 0, 0,13589,13589,13589,13589,13589,13589, 13589,13589, 0, 0, 0, 0,13589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13589,13589,13589,13590,13590, 0,13590, 13590,13590,13590,13590,13590, 0,13590,13590, 0, 0, 0, 0, 0, 0, 0, 0, 0,13590,13590,13590, 13590,13590,13590,13590, 0, 0, 0, 0, 0,13590, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13590, 0, 0,13590,13590,13590, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13590,13591,13591, 0,13591,13591,13591,13591,13591,13591, 0,13591,13591, 0, 0, 0, 0, 0, 0, 0, 0, 0,13591,13591,13591,13591,13591,13591,13591, 0, 0, 0, 0, 0,13591, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13591,13591,13591,13592,13592, 0,13592,13592,13592, 13592,13592,13592, 0,13592,13592,13592,13592,13592,13592, 13592,13592,13592,13592,13592,13592,13592,13592,13592,13592, 13592,13592, 0, 0, 0, 0, 0,13592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13592,13592,13592,13594,13594, 0, 13594,13594,13594,13594,13594,13594, 0,13594,13594, 0, 0, 0, 0, 0, 0, 0, 0, 0,13594,13594, 13594,13594,13594,13594,13594, 0, 0, 0, 0, 0, 13594, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13594,13594,13594, 13595,13595, 0,13595,13595,13595,13595,13595,13595, 0, 13595,13595, 0, 0, 0, 0, 0, 0, 0, 0, 0,13595,13595,13595,13595,13595,13595,13595,13595, 0, 0, 0, 0,13595, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13595,13595,13595,13596,13596, 0,13596,13596,13596,13596, 13596,13596, 0,13596,13596, 0, 0, 0, 0, 0, 0, 0, 0, 0,13596,13596,13596,13596,13596,13596, 13596, 0, 0, 0, 0, 0,13596, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13596, 0, 0,13596,13596,13596, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13596,13597,13597, 0,13597,13597,13597,13597,13597,13597, 0,13597,13597, 0, 0, 0, 0, 0, 0, 0, 0, 0,13597, 13597,13597,13597,13597,13597,13597, 0, 0, 0, 0, 0,13597,13597, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13597,13597, 13597,13598,13598, 0,13598,13598,13598,13598,13598,13598, 13598,13598,13598, 0, 0, 0, 0, 0, 0, 0, 0, 0,13598,13598,13598,13598,13598,13598,13598, 0, 0, 0, 0, 0,13598, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13598,13598,13598,13598,13599,13599, 0,13599,13599, 13599,13599,13599,13599, 0,13599,13599, 0, 0, 0, 0, 0, 0, 0, 0, 0,13599,13599,13599,13599, 13599,13599,13599, 0, 0, 0, 0, 0,13599, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13599,13599,13599,13600,13600, 0,13600,13600,13600,13600,13600,13600, 0,13600,13600, 0, 0, 0, 0, 0, 0, 0, 0, 0,13600, 13600,13600,13600,13600,13600,13600,13600, 0, 0, 0, 0,13600, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13600,13600, 13600,13606,13606, 0,13606,13606,13606,13606,13606,13606, 0,13606,13606, 0, 0, 0, 0, 0, 0, 0, 0, 0,13606,13606,13606,13606,13606,13606,13606, 0, 0, 0, 0, 0,13606, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13606,13606,13606,13607,13607, 0,13607,13607,13607, 13607,13607,13607, 0,13607,13607, 0, 0, 0, 0, 0, 0, 0, 0, 0,13607,13607,13607,13607,13607, 13607,13607,13607, 0, 0, 0, 0,13607, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13607,13607,13607,13611,13611, 0, 13611,13611,13611,13611,13611,13611, 0,13611,13611, 0, 0, 0, 0, 0, 0, 0, 0, 0,13611,13611, 13611,13611,13611,13611,13611, 0, 0, 0, 0, 0, 13611, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13611,13611,13611, 13612,13612, 0,13612,13612,13612,13612,13612,13612, 0, 13612,13612, 0, 0, 0, 0, 0, 0, 0, 0, 0,13612,13612,13612,13612,13612,13612,13612,13612, 0, 0, 0, 0,13612, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13612,13612,13612,13615,13615, 0,13615,13615,13615,13615, 13615,13615, 0,13615,13615, 0, 0, 0, 0, 0, 0, 0, 0, 0,13615,13615,13615,13615,13615,13615, 13615, 0, 0, 0, 0, 0,13615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13615,13615,13615,13616,13616, 0,13616, 13616,13616,13616,13616,13616, 0,13616,13616, 0, 0, 0, 0, 0, 0, 0, 0, 0,13616,13616,13616, 13616,13616,13616,13616,13616, 0, 0, 0, 0,13616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13616,13616,13616,13618, 13618, 0,13618,13618,13618,13618,13618,13618, 0,13618, 13618, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13618,13618,13618,13618,13618,13618,13618, 0, 0, 0, 0, 0,13618, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13618, 13618,13618,13619,13619, 0,13619,13619,13619,13619,13619, 13619, 0,13619,13619, 0, 0, 0, 0, 0, 0, 0, 0, 0,13619,13619,13619,13619,13619,13619,13619, 13619, 0, 0, 0, 0,13619, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13619,13619,13619,13620,13620, 0,13620,13620, 13620,13620,13620,13620, 0,13620,13620, 0, 0, 0, 0, 0, 0, 0, 0, 0,13620,13620,13620,13620, 13620,13620,13620, 0, 0, 0, 0, 0,13620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13620, 0, 0,13620,13620,13620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13620, 13621,13621, 0,13621,13621,13621,13621,13621,13621, 0, 13621,13621, 0, 0, 0, 0, 0, 0, 0, 0, 0,13621,13621,13621,13621,13621,13621,13621, 0, 0, 0, 0, 0,13621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13621,13621,13621,13622,13622, 0,13622,13622,13622,13622, 13622,13622, 0,13622,13622, 0, 0, 0, 0, 0, 0, 0, 0, 0,13622,13622,13622,13622,13622,13622, 13622,13622, 0, 0, 0, 0,13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13622,13622,13622,13623,13623, 0,13623, 13623,13623,13623,13623,13623, 0,13623,13623, 0, 0, 0, 0, 0, 0, 0, 0, 0,13623,13623,13623, 13623,13623,13623,13623, 0, 0, 0, 0, 0,13623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13623, 0, 0,13623,13623,13623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13623,13624,13624, 0,13624,13624,13624,13624,13624,13624, 0,13624,13624, 0, 0, 0, 0, 0, 0, 0, 0, 0,13624,13624,13624,13624,13624,13624,13624, 0, 0, 0, 0, 0,13624, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13624,13624,13624,13625,13625, 0,13625,13625,13625, 13625,13625,13625, 0,13625,13625, 0, 0, 0, 0, 0, 0, 0, 0, 0,13625,13625,13625,13625,13625, 13625,13625,13625, 0, 0, 0, 0,13625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13625,13625,13625,13639,13639, 0, 13639,13639,13639,13639,13639,13639, 0,13639,13639, 0, 0, 0, 0, 0, 0, 0, 0, 0,13639,13639, 13639,13639,13639,13639,13639, 0, 0, 0, 0, 0, 13639, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13639,13639,13639, 13640,13640, 0,13640,13640,13640,13640,13640,13640, 0, 13640,13640, 0, 0, 0, 0, 0, 0, 0, 0, 0,13640,13640,13640,13640,13640,13640,13640,13640, 0, 0, 0, 0,13640, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13640,13640,13640,13670,13670, 0,13670,13670,13670,13670, 13670,13670, 0,13670,13670, 0, 0, 0, 0, 0, 0, 0, 0, 0,13670,13670,13670,13670,13670,13670, 13670, 0, 0, 0, 0, 0,13670, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13670,13670,13670,13675,13675,13675,13675, 13675,13675,13675,13675,13675,13675, 0, 0, 0, 0, 0, 0,13675,13675,13675,13675,13675,13675, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13675,13675, 13675,13675,13675,13675,13676,13676,13676,13676,13676,13676, 13676,13676,13676,13676, 0, 0, 0, 0, 0, 0, 13676,13676,13676,13676,13676,13676, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13676,13676,13676,13676, 13676,13676,13678, 0, 0, 0, 0, 0, 0, 0, 0,13678,13678,13678,13678,13678,13678,13678,13678,13678, 13678, 0, 0, 0, 0, 0, 0,13678,13678,13678, 13678,13678,13678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13678,13678,13678,13678,13678,13678,13683, 13683,13683,13683,13683,13683,13683,13683,13683,13683, 0, 0, 0, 0, 0, 0,13683,13683,13683,13683,13683, 13683, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13683,13683,13683,13683,13683,13683,13685,13685,13685, 13685,13685,13685,13685,13685,13685,13685, 0, 0, 0, 0, 0, 0,13685,13685,13685,13685,13685,13685, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13685, 13685,13685,13685,13685,13685,13690,13690,13690,13690,13690, 13690,13690,13690,13690,13690, 0, 0, 0, 0, 0, 0,13690,13690,13690,13690,13690,13690, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13690,13690,13690, 13690,13690,13690,13692,13692,13692,13692,13692,13692,13692, 13692,13692,13692, 0, 0, 0, 0, 0, 0,13692, 13692,13692,13692,13692,13692, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13692,13692,13692,13692,13692, 13692,13697,13697,13697,13697,13697,13697,13697,13697,13697, 0, 0, 0, 0, 0, 0, 0,13697,13697,13697, 13697,13697,13697, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13697,13697,13697,13697,13697,13697,13698, 13698,13698,13698,13698,13698,13698,13698,13698,13698, 0, 0, 0, 0, 0, 0,13698,13698,13698,13698,13698, 13698, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13698,13698,13698,13698,13698,13698,13700,13700,13700, 13700,13700,13700,13700,13700,13700,13700, 0, 0, 0, 0, 0, 0,13700,13700,13700,13700,13700,13700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13700, 13700,13700,13700,13700,13700,13705,13705,13705,13705,13705, 13705,13705,13705,13705, 0, 0, 0, 0, 0, 0, 0,13705,13705,13705,13705,13705,13705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13705,13705,13705, 13705,13705,13705,13706, 0,13706,13706,13706,13706,13706, 13706,13706,13706,13706,13706, 0, 0, 0, 0, 0, 0,13706,13706,13706,13706,13706,13706, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13706,13706,13706, 13706,13706,13706,13709,13709,13709,13709,13709,13709,13709, 13709,13709,13709, 0, 0, 0, 0, 0, 0,13709, 13709,13709,13709,13709,13709, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13709,13709,13709,13709,13709, 13709,13711,13711,13711,13711,13711,13711,13711,13711,13711, 13711, 0, 0, 0, 0, 0, 0,13711,13711,13711, 13711,13711,13711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13711,13711,13711,13711,13711,13711,13716, 13716,13716,13716,13716,13716,13716,13716,13716, 0, 0, 0, 0, 0, 0, 0,13716,13716,13716,13716,13716, 13716, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13716,13716,13716,13716,13716,13716,13717,13717,13717, 13717,13717,13717,13717,13717,13717,13717, 0, 0, 0, 0, 0, 0,13717,13717,13717,13717,13717,13717, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13717, 13717,13717,13717,13717,13717,13724,13724,13724,13724,13724, 13724,13724,13724,13724,13724, 0, 0, 0, 0, 0, 0,13724,13724,13724,13724,13724,13724, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13724,13724,13724, 13724,13724,13724,13725,13725,13725,13725,13725,13725,13725, 13725,13725, 0, 0, 0, 0, 0, 0, 0,13725, 13725,13725,13725,13725,13725, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13725,13725,13725,13725,13725, 13725,13732,13732,13732,13732,13732,13732,13732,13732,13732, 13732, 0, 0, 0, 0, 0, 0,13732,13732,13732, 13732,13732,13732, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13732,13732,13732,13732,13732,13732,13736, 13736,13736,13736,13736,13736,13736,13736,13736,13736, 0, 0, 0, 0, 0, 0,13736,13736,13736,13736,13736, 13736, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13736,13736,13736,13736,13736,13736,13741,13741, 0, 13741,13741,13741,13741,13741,13741, 0,13741,13741, 0, 0, 0, 0, 0, 0, 0, 0, 0,13741,13741, 13741,13741,13741,13741,13741, 0, 0, 0, 0, 0, 13741, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13741,13741,13741, 13742,13742, 0,13742,13742,13742,13742,13742,13742, 0, 13742,13742, 0, 0, 0, 0, 0, 0, 0, 0, 0,13742,13742,13742,13742,13742,13742,13742,13742, 0, 0, 0, 0,13742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13742,13742,13742,13746,13746, 0,13746,13746,13746,13746, 13746,13746, 0,13746,13746, 0, 0, 0, 0, 0, 0, 0, 0, 0,13746,13746,13746,13746,13746,13746, 13746, 0, 0, 0, 0, 0,13746, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13746,13746,13746,13747,13747, 0,13747, 13747,13747,13747,13747,13747, 0,13747,13747, 0, 0, 0, 0, 0, 0, 0, 0, 0,13747,13747,13747, 13747,13747,13747,13747,13747, 0, 0, 0, 0,13747, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13747,13747,13747,13751, 13751, 0,13751,13751,13751,13751,13751,13751, 0,13751, 13751, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13751,13751,13751,13751,13751,13751,13751, 0, 0, 0, 0, 0,13751, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13751, 13751,13751,13752,13752, 0,13752,13752,13752,13752,13752, 13752, 0,13752,13752, 0, 0, 0, 0, 0, 0, 0, 0, 0,13752,13752,13752,13752,13752,13752,13752, 13752, 0, 0, 0, 0,13752, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13752,13752,13752,13756,13756, 0,13756,13756, 13756,13756,13756,13756, 0,13756,13756, 0, 0, 0, 0, 0, 0, 0, 0, 0,13756,13756,13756,13756, 13756,13756,13756, 0, 0, 0, 0, 0,13756, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13756,13756,13756,13757,13757, 0,13757,13757,13757,13757,13757,13757, 0,13757,13757, 0, 0, 0, 0, 0, 0, 0, 0, 0,13757, 13757,13757,13757,13757,13757,13757,13757, 0, 0, 0, 0,13757, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13757,13757, 13757,13760,13760, 0,13760,13760,13760,13760,13760,13760, 0,13760,13760, 0, 0, 0, 0, 0, 0, 0, 0, 0,13760,13760,13760,13760,13760,13760,13760, 0, 0, 0, 0, 0,13760, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13760,13760,13760,13761,13761, 0,13761,13761,13761, 13761,13761,13761, 0,13761,13761, 0, 0, 0, 0, 0, 0, 0, 0, 0,13761,13761,13761,13761,13761, 13761,13761,13761, 0, 0, 0, 0,13761, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13761,13761,13761,13763,13763, 0, 13763,13763,13763,13763,13763,13763, 0,13763,13763, 0, 0, 0, 0, 0, 0, 0, 0, 0,13763,13763, 13763,13763,13763,13763,13763, 0, 0, 0, 0, 0, 13763, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13763,13763,13763, 13764,13764, 0,13764,13764,13764,13764,13764,13764, 0, 13764,13764, 0, 0, 0, 0, 0, 0, 0, 0, 0,13764,13764,13764,13764,13764,13764,13764,13764, 0, 0, 0, 0,13764, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13764,13764,13764,13765,13765, 0,13765,13765,13765,13765, 13765,13765,13765,13765,13765, 0, 0, 0, 0, 0, 0, 0, 0, 0,13765,13765,13765,13765,13765,13765, 13765,13765, 0, 0, 0, 0,13765, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13765,13765,13765,13765,13765,13766,13766, 0,13766,13766,13766,13766,13766,13766, 0,13766,13766, 0, 0, 0, 0, 0, 0, 0, 0, 0,13766, 13766,13766,13766,13766,13766,13766, 0, 0, 0, 0, 0,13766, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13766,13766, 13766,13767,13767, 0,13767,13767,13767,13767,13767,13767, 0,13767,13767, 0, 0, 0, 0, 0, 0, 0, 0, 0,13767,13767,13767,13767,13767,13767,13767,13767, 0, 0, 0, 0,13767, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13767,13767,13767,13769,13769, 0,13769,13769,13769, 13769,13769,13769, 0,13769,13769, 0, 0, 0, 0, 0, 0, 0, 0, 0,13769,13769,13769,13769,13769, 13769,13769, 0, 0, 0, 0, 0,13769, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13769,13769,13769,13770,13770, 0, 13770,13770,13770,13770,13770,13770, 0,13770,13770, 0, 0, 0, 0, 0, 0, 0, 0, 0,13770,13770, 13770,13770,13770,13770,13770,13770, 0, 0, 0, 0, 13770, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13770,13770,13770, 13772,13772, 0,13772,13772,13772,13772,13772,13772, 0, 13772,13772, 0, 0, 0, 0, 0, 0, 0, 0, 0,13772,13772,13772,13772,13772,13772,13772, 0, 0, 0, 0, 0,13772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13772,13772,13772,13773,13773, 0,13773,13773,13773,13773, 13773,13773, 0,13773,13773, 0, 0, 0, 0, 0, 0, 0, 0, 0,13773,13773,13773,13773,13773,13773, 13773,13773, 0, 0, 0, 0,13773, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13773,13773,13773,13774,13774, 0,13774, 13774,13774,13774,13774,13774,13774,13774,13774, 0, 0, 0, 0, 0, 0, 0, 0, 0,13774,13774,13774, 13774,13774,13774,13774,13774, 0, 0, 0, 0,13774, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13774,13774,13774,13774, 13774,13809, 0, 0, 0,13809, 0,13809, 0, 0, 13809,13809,13809,13809,13809,13809,13809,13809,13809, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13809, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13809, 0, 0, 13809,13810,13810, 0,13810,13810,13810,13810,13810,13810, 0,13810,13810, 0, 0, 0, 0, 0, 0, 0, 0, 0,13810,13810,13810,13810,13810,13810,13810, 0, 0, 0, 0, 0,13810, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13810,13810,13810,13811,13811, 0,13811,13811,13811, 13811,13811,13811, 0,13811,13811, 0, 0, 0, 0, 0, 0, 0, 0, 0,13811,13811,13811,13811,13811, 13811,13811,13811, 0, 0, 0, 0,13811, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13811,13811,13811,13815,13815, 0, 13815,13815,13815,13815,13815,13815, 0,13815,13815, 0, 0, 0, 0, 0, 0, 0, 0, 0,13815,13815, 13815,13815,13815,13815,13815, 0, 0, 0, 0, 0, 13815, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13815,13815,13815, 0, 0, 0,13815,13816,13816, 0,13816,13816,13816, 13816,13816,13816, 0,13816,13816, 0, 0, 0, 0, 0, 0, 0, 0, 0,13816,13816,13816,13816,13816, 13816,13816,13816, 0, 0, 0, 0,13816, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13816,13816,13816, 0, 0, 0, 13816,13827,13827, 0,13827,13827,13827,13827,13827,13827, 0,13827,13827, 0, 0, 0, 0, 0, 0, 0, 0, 0,13827,13827,13827,13827,13827,13827,13827, 0, 0, 0, 0, 0,13827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13827,13827,13827, 0, 0, 0,13827,13828,13828, 0,13828,13828,13828,13828,13828,13828, 0,13828,13828, 0, 0, 0, 0, 0, 0, 0, 0, 0,13828, 13828,13828,13828,13828,13828,13828,13828, 0, 0, 0, 0,13828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13828,13828, 13828, 0, 0, 0,13828,13836,13836, 0,13836,13836, 13836,13836,13836,13836, 0,13836,13836, 0, 0, 0, 0, 0, 0, 0, 0, 0,13836,13836,13836,13836, 13836,13836,13836, 0, 0, 0, 0, 0,13836, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13836,13836,13836, 0, 0, 0,13836,13837,13837, 0,13837,13837,13837,13837,13837, 13837, 0,13837,13837, 0, 0, 0, 0, 0, 0, 0, 0, 0,13837,13837,13837,13837,13837,13837,13837, 13837, 0, 0, 0, 0,13837, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13837,13837,13837, 0, 0, 0,13837,13844, 13844, 0,13844,13844,13844,13844,13844,13844, 0,13844, 13844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13844,13844,13844,13844,13844,13844,13844, 0, 0, 0, 0, 0,13844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13844, 13844,13844, 0, 0, 0,13844,13845,13845, 0,13845, 13845,13845,13845,13845,13845, 0,13845,13845, 0, 0, 0, 0, 0, 0, 0, 0, 0,13845,13845,13845, 13845,13845,13845,13845,13845, 0, 0, 0, 0,13845, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13845,13845,13845, 0, 0, 0,13845,13850,13850, 0,13850,13850,13850,13850, 13850,13850, 0,13850,13850, 0, 0, 0, 0, 0, 0, 0, 0, 0,13850,13850,13850,13850,13850,13850, 13850, 0, 0, 0, 0, 0,13850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13850,13850,13850, 0, 0, 0,13850, 13851,13851, 0,13851,13851,13851,13851,13851,13851, 0, 13851,13851, 0, 0, 0, 0, 0, 0, 0, 0, 0,13851,13851,13851,13851,13851,13851,13851,13851, 0, 0, 0, 0,13851, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13851,13851,13851, 0, 0, 0,13851,13854,13854, 0, 13854,13854,13854,13854,13854,13854, 0,13854,13854, 0, 0, 0, 0, 0, 0, 0, 0, 0,13854,13854, 13854,13854,13854,13854,13854, 0, 0, 0, 0, 0, 13854, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13854,13854,13854, 0, 0, 0,13854,13855,13855, 0,13855,13855,13855, 13855,13855,13855, 0,13855,13855, 0, 0, 0, 0, 0, 0, 0, 0, 0,13855,13855,13855,13855,13855, 13855,13855,13855, 0, 0, 0, 0,13855, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13855,13855,13855, 0, 0, 0, 13855,13856,13856, 0,13856,13856,13856,13856,13856,13856, 0,13856,13856, 0, 0, 0, 0, 0, 0, 0, 0, 0,13856,13856,13856,13856,13856,13856,13856, 0, 0, 0, 0, 0,13856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13856, 0, 0,13856,13856,13856, 0, 0, 0,13856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13856,13858,13858, 0,13858, 13858,13858,13858,13858,13858, 0,13858,13858, 0, 0, 0, 0, 0, 0, 0, 0, 0,13858,13858,13858, 13858,13858,13858,13858, 0, 0, 0, 0, 0,13858, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13858,13858,13858, 0, 0, 0,13858,13859,13859, 0,13859,13859,13859,13859, 13859,13859, 0,13859,13859,13859,13859,13859,13859,13859, 13859,13859,13859,13859,13859,13859,13859,13859,13859,13859, 13859, 0, 0, 0, 0, 0,13859, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13859,13859,13859, 0, 0, 0,13859, 13863,13863, 0,13863,13863,13863,13863,13863,13863, 0, 13863,13863, 0, 0, 0, 0, 0, 0, 0, 0, 0,13863,13863,13863,13863,13863,13863,13863, 0, 0, 0, 0, 0,13863, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13863,13863,13863, 0, 0, 0,13863,13864,13864, 0, 13864,13864,13864,13864,13864,13864, 0,13864,13864, 0, 0, 0, 0, 0, 0, 0, 0, 0,13864,13864, 13864,13864,13864,13864,13864,13864, 0, 0, 0, 0, 13864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13864,13864,13864, 0, 0, 0,13864,13865,13865, 0,13865,13865,13865, 13865,13865,13865, 0,13865,13865, 0, 0, 0, 0, 0, 0, 0, 0, 0,13865,13865,13865,13865,13865, 13865,13865, 0, 0, 0, 0, 0,13865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13865, 0, 0,13865,13865,13865, 0, 0, 0, 13865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13865,13890, 13890, 0,13890,13890,13890,13890,13890,13890, 0,13890, 13890, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13890,13890,13890,13890,13890,13890,13890, 0, 0, 0, 0, 0,13890, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13890, 13890,13890, 0, 0, 0,13890,13891,13891, 0,13891, 13891,13891,13891,13891,13891, 0,13891,13891, 0, 0, 0, 0, 0, 0, 0, 0, 0,13891,13891,13891, 13891,13891,13891,13891,13891, 0, 0, 0, 0,13891, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13891,13891,13891, 0, 0, 0,13891,13915,13915, 0,13915,13915,13915,13915, 13915,13915, 0,13915,13915, 0, 0, 0, 0, 0, 0, 0, 0, 0,13915,13915,13915,13915,13915,13915, 13915, 0, 0, 0, 0, 0,13915, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13915,13915,13915, 0, 0, 0,13915, 13916,13916, 0,13916,13916,13916,13916,13916,13916, 0, 13916,13916, 0, 0, 0, 0, 0, 0, 0, 0, 0,13916,13916,13916,13916,13916,13916,13916,13916, 0, 0, 0, 0,13916, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13916,13916,13916, 0, 0, 0,13916,13959,13959, 0, 13959,13959,13959,13959,13959,13959, 0,13959,13959, 0, 0, 0, 0, 0, 0, 0, 0, 0,13959,13959, 13959,13959,13959,13959,13959, 0, 0, 0, 0, 0, 13959, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13959,13959,13959, 0, 0, 0,13959, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13959, 13960,13960, 0, 0, 0, 0, 0, 0, 0, 0, 13960,13960,13960,13960,13960,13960,13960,13960,13960, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13960,13965,13965,13965,13965,13965,13965,13965,13965, 13965, 0,13965,13965, 0, 0, 0, 0, 0, 0, 0, 0, 0,13965,13965,13965,13965,13965,13965,13965, 0, 0, 0, 0, 0,13965, 0, 0, 0, 0, 0,13965, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13965,13965,13965,13965,13975,13975, 0,13975, 13975,13975,13975, 0,13975,13975,13975, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13975,13975,13975, 13975,13975,13975,13975, 0, 0, 0, 0, 0,13975, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13975,13975,13975,13975, 13976,13976, 0,13976,13976,13976,13976, 0,13976,13976, 13976, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13976,13976,13976,13976,13976,13976,13976,13976, 0, 0, 0, 0,13976, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13976,13976,13976,13976,13980,13980,13980,13980,13980,13980, 13980,13980,13980, 0, 0, 0, 0, 0, 0, 0, 13980,13980,13980,13980,13980,13980, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13980,13980,13980,13980, 13980,13980,13994,13994, 0,13994,13994,13994,13994,13994, 13994, 0,13994,13994, 0, 0, 0, 0, 0, 0, 0, 0, 0,13994,13994,13994,13994,13994,13994,13994, 0, 0, 0, 0, 0,13994, 0, 0, 0, 0, 0,13994, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13994,13994,13994,13996, 0,13996,13996,13996, 13996,13996,13996,13996,13996,13996,13996, 0, 0, 0, 0, 0, 0,13996,13996,13996,13996,13996,13996, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13996, 13996,13996,13996,13996,13996,14000,14000,14000,14000,14000, 14000,14000,14000,14000,14000, 0, 0, 0, 0, 0, 0,14000,14000,14000,14000,14000,14000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14000, 0, 0, 0,14000,14000,14000, 14000,14000,14000,14038,14038, 0, 0, 0, 0,14038, 0, 0, 0,14038,14038,14038,14038,14038,14038,14038, 14038,14038, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14038, 0, 0, 0, 0, 0, 0,14038, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14038, 0,14038, 0,14038, 0, 0,14038, 0, 0, 0, 0,14038, 0, 0, 14038, 0,14038, 0,14038, 0,14038,14038,14038,14039, 0, 0, 0, 0, 0,14039,14039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14039, 0,14039, 0,14039, 0, 0,14039, 0, 0, 0, 0,14039, 0, 0,14039, 0,14039, 0,14039, 0,14039,14039,14039,14040, 0, 0, 0, 0, 0, 0,14040, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14040, 0,14040, 0,14040, 0, 0,14040,14040, 0, 0, 0,14040, 0, 0, 14040, 0,14040, 0,14040, 0,14040,14040,14040,14040, 14041, 0, 0, 0, 0, 0, 0,14041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14041, 0,14041, 0,14041, 0, 0,14041,14041, 0, 0, 0,14041, 0, 0,14041, 0,14041, 0, 14041, 0,14041,14041,14041,14041,14042, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14042, 0, 0, 0, 0, 0, 0,14042, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14042, 0,14042, 0,14042, 0, 0,14042, 0, 0, 0, 0,14042, 0, 0,14042, 0,14042, 0,14042, 0, 14042,14042,14042,14043, 0, 0, 0, 0, 0, 0, 14043, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14043, 0,14043, 0,14043, 0, 0,14043,14043, 0, 0, 0,14043, 0, 0,14043, 0,14043, 0,14043, 0,14043,14043,14043,14044,14044, 0, 0, 0, 0,14044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14044, 0, 0, 0, 0, 0, 0,14044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14044, 0,14044, 0,14044, 0, 0,14044, 0, 0, 0, 0,14044, 0, 0,14044, 0,14044, 0,14044, 0,14044,14044,14044,14045, 0, 0, 0, 0, 0, 0,14045, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14045, 0,14045, 0,14045, 0, 0,14045, 0, 0, 0, 0,14045, 0, 0, 14045, 0,14045, 0,14045, 0,14045,14045,14045,14046, 0, 0, 0, 0, 0, 0,14046, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14046, 0,14046, 0,14046, 0, 0,14046, 0, 0, 0, 0,14046, 0, 0,14046, 0,14046, 0,14046, 0,14046,14046,14046,14047, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14047, 0, 0, 0, 0, 0, 0,14047, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14047, 0,14047, 0,14047, 0, 0,14047, 0, 0, 0, 0,14047, 0, 0,14047, 0,14047, 0,14047, 0,14047,14047, 14047,14048, 0, 0, 0, 0, 0, 0,14048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14048, 0,14048,14048,14048, 0, 0,14048, 14048, 0, 0, 0,14048, 0, 0,14048, 0,14048, 0,14048, 0,14048,14048,14048,14049, 0, 0, 0, 0, 0, 0,14049, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14049, 0,14049, 0,14049, 0, 0,14049, 0, 0, 0, 0,14049, 0, 0,14049, 0,14049, 0,14049, 0,14049,14049, 14049,14050, 0, 0, 0, 0, 0, 0,14050, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14050, 0,14050, 0,14050, 0, 0,14050, 0, 0, 0, 0,14050,14050, 0,14050, 0,14050, 0,14050, 0,14050,14050,14050,14051, 0, 0, 0, 0, 0, 0,14051, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14051, 0,14051, 0,14051, 0,14051,14051, 0, 0, 0, 0,14051, 0, 0,14051, 0,14051, 0,14051, 0,14051,14051, 14051,14052, 0, 0, 0, 0, 0, 0,14052, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14052, 0,14052, 0,14052, 0,14052,14052, 0, 0, 0, 0,14052, 0, 0,14052, 0,14052, 0,14052, 0,14052,14052,14052,14053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14053, 0, 0, 0, 0, 0, 0,14053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14053, 0,14053, 0,14053, 0, 0,14053, 0, 0, 0, 0,14053, 0, 0,14053, 0,14053, 0,14053, 0, 14053,14053,14053,14066,14066, 0, 0, 0, 0,14066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14066, 0, 0, 0, 0, 0, 0,14066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14066, 0,14066, 0,14066, 0, 0,14066, 0, 0, 0, 0,14066, 0, 0, 14066, 0,14066, 0,14066, 0,14066,14066,14066,14066, 14067,14067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14067, 0, 0, 0, 0, 0, 0,14067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14067, 0,14067, 0,14067, 0, 0, 14067, 0, 0, 0, 0,14067, 0, 0,14067, 0, 14067, 0,14067, 0,14067,14067,14067,14068, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14068, 0, 0, 0, 0, 0, 0,14068, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14068, 0,14068, 0,14068, 0, 0,14068, 0, 0, 0, 0,14068, 0, 0,14068, 0,14068, 0,14068, 0,14068,14068,14068,14069,14069, 0, 0, 0, 0, 14069, 0, 0,14069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14069, 0, 0, 0, 0, 0, 0,14069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14069, 0,14069, 0, 14069, 0, 0,14069, 0, 0, 0, 0,14069, 0, 0,14069, 0,14069, 0,14069, 0,14069,14069,14069, 14070, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14070, 0, 0, 0, 0, 0, 0,14070, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14070, 0,14070, 0,14070, 0, 0, 14070, 0, 0, 0,14070,14070, 0, 0,14070, 0, 14070,14070,14070, 0,14070,14070,14070,14071, 0, 0, 0, 0, 0, 0, 0,14071, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14071, 0, 0, 0, 0, 0, 0,14071, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14071, 0, 14071, 0,14071, 0, 0,14071, 0, 0, 0, 0, 14071, 0, 0,14071, 0,14071, 0,14071, 0,14071, 14071,14071,14072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14072, 0, 0, 0, 0, 0, 0,14072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14072, 0,14072, 0,14072, 0, 0,14072, 0, 0, 0, 0,14072, 0, 0, 14072, 0,14072, 0,14072, 0,14072,14072,14072,14073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14073, 0, 0, 0, 0, 0, 0,14073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14073, 0,14073, 0,14073, 0, 0,14073, 0, 0, 0, 0,14073, 0, 0,14073, 0,14073, 0,14073, 0,14073,14073,14073,14074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14074, 0, 0, 0, 0, 0, 0,14074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14074, 0,14074, 0,14074, 0, 0,14074, 0, 0, 0, 0,14074,14074, 0,14074, 0,14074, 0,14074, 0, 14074,14074,14074,14075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14075, 0, 0, 0, 0, 0, 0,14075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14075,14075,14075, 0, 14075, 0, 0,14075, 0, 0, 0, 0,14075, 0, 0,14075, 0,14075, 0,14075, 0,14075,14075,14075, 14076, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14076, 0, 0, 0, 0, 0, 0,14076, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14076, 0,14076, 0,14076, 0, 0, 14076, 0, 0, 0, 0,14076, 0, 0,14076, 0, 14076, 0,14076, 0,14076,14076,14076,14077,14077, 0, 0, 0, 0,14077, 0, 0,14077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14077, 0, 0, 0, 0, 0, 0,14077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14077, 0,14077, 0,14077, 0, 0,14077, 0, 0, 0, 0,14077, 0, 0,14077, 0,14077, 0,14077, 0, 14077,14077,14077,14078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14078, 0, 0, 0, 0, 0, 0,14078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14078, 0,14078, 0, 14078, 0, 0,14078, 0, 0, 0,14078,14078, 0, 0,14078, 0,14078, 0,14078, 0,14078,14078,14078, 14079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14079, 0, 0, 0, 0, 0, 0,14079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14079, 0,14079,14079,14079, 0, 0, 14079, 0, 0, 0, 0,14079, 0, 0,14079, 0, 14079, 0,14079, 0,14079,14079,14079,14080, 0, 0, 0,14080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14080, 0, 0, 0, 0, 0, 0,14080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14080, 0,14080, 0,14080, 0, 0,14080, 0, 0, 0, 0,14080, 0, 0,14080, 0,14080, 0,14080, 0,14080,14080,14080,14081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14081, 0, 0, 0, 0, 0, 0,14081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14081, 0,14081, 0,14081, 0, 0,14081, 0, 0, 0, 0,14081, 0, 0,14081, 0,14081, 0,14081, 0,14081,14081, 14081,14081,14082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14082, 0, 0, 0, 0, 0, 0,14082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14082, 0,14082,14082,14082, 0, 0,14082, 0, 0, 0, 0,14082, 0, 0, 14082, 0,14082, 0,14082, 0,14082,14082,14082,14083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14083, 0, 0, 0, 0, 0, 0,14083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14083, 0,14083, 0,14083, 0,14083,14083, 0, 0, 0, 0,14083, 0,14083,14083, 0,14083, 0,14083, 0,14083,14083,14083,14103,14103, 0, 0, 0, 0,14103, 0, 0,14103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14103, 0, 0, 0, 0, 0, 0,14103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14103, 0, 14103, 0,14103, 0, 0,14103, 0, 0, 0, 0, 14103, 0, 0,14103, 0,14103, 0,14103, 0,14103, 14103,14103,14104,14104, 0, 0, 0, 0,14104, 0, 0,14104,14104,14104,14104,14104,14104,14104,14104,14104, 14104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14104, 0, 0, 0, 0, 0, 0, 14104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14104, 0,14104, 0,14104, 0, 0,14104, 0, 0, 0, 0,14104, 0, 0,14104, 0,14104, 0,14104, 0,14104,14104,14104,14117,14117, 0,14117,14117,14117,14117,14117,14117, 0,14117,14117, 0, 0, 0, 0, 0, 0, 0, 0, 0,14117, 14117,14117,14117,14117,14117,14117, 0, 0, 0, 0, 0,14117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14117,14117, 14117,14118,14118, 0,14118,14118,14118,14118,14118,14118, 0,14118,14118, 0, 0, 0, 0, 0, 0, 0, 0, 0,14118,14118,14118,14118,14118,14118,14118,14118, 0, 0, 0, 0,14118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14118,14118,14118,14134,14134,14134,14134,14134,14134, 14134,14134,14134,14134, 0, 0, 0, 0, 0, 0, 14134,14134,14134,14134,14134,14134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14134,14134,14134,14134, 14134,14134,14135,14135,14135,14135,14135,14135,14135,14135, 14135,14135, 0, 0, 0, 0, 0, 0,14135,14135, 14135,14135,14135,14135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14135,14135,14135,14135,14135,14135, 14137, 0, 0, 0, 0, 0, 0, 0, 0,14137, 14137,14137,14137,14137,14137,14137,14137,14137,14137, 0, 0, 0, 0, 0, 0,14137,14137,14137,14137,14137, 14137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14137,14137,14137,14137,14137,14137,14142,14142,14142, 14142,14142,14142,14142,14142,14142,14142, 0, 0, 0, 0, 0, 0,14142,14142,14142,14142,14142,14142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14142, 14142,14142,14142,14142,14142,14144,14144,14144,14144,14144, 14144,14144,14144,14144,14144, 0, 0, 0, 0, 0, 0,14144,14144,14144,14144,14144,14144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14144,14144,14144, 14144,14144,14144,14149,14149,14149,14149,14149,14149,14149, 14149,14149,14149, 0, 0, 0, 0, 0, 0,14149, 14149,14149,14149,14149,14149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14149,14149,14149,14149,14149, 14149,14151,14151,14151,14151,14151,14151,14151,14151,14151, 14151, 0, 0, 0, 0, 0, 0,14151,14151,14151, 14151,14151,14151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14151,14151,14151,14151,14151,14151,14156, 14156,14156,14156,14156,14156,14156,14156,14156, 0, 0, 0, 0, 0, 0, 0,14156,14156,14156,14156,14156, 14156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14156,14156,14156,14156,14156,14156,14157,14157,14157, 14157,14157,14157,14157,14157,14157,14157, 0, 0, 0, 0, 0, 0,14157,14157,14157,14157,14157,14157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14157, 14157,14157,14157,14157,14157,14159,14159,14159,14159,14159, 14159,14159,14159,14159,14159, 0, 0, 0, 0, 0, 0,14159,14159,14159,14159,14159,14159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14159,14159,14159, 14159,14159,14159,14164,14164,14164,14164,14164,14164,14164, 14164,14164, 0, 0, 0, 0, 0, 0, 0,14164, 14164,14164,14164,14164,14164, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14164,14164,14164,14164,14164, 14164,14165, 0,14165,14165,14165,14165,14165,14165,14165, 14165,14165,14165, 0, 0, 0, 0, 0, 0,14165, 14165,14165,14165,14165,14165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14165,14165,14165,14165,14165, 14165,14168,14168,14168,14168,14168,14168,14168,14168,14168, 14168, 0, 0, 0, 0, 0, 0,14168,14168,14168, 14168,14168,14168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14168,14168,14168,14168,14168,14168,14170, 14170,14170,14170,14170,14170,14170,14170,14170,14170, 0, 0, 0, 0, 0, 0,14170,14170,14170,14170,14170, 14170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14170,14170,14170,14170,14170,14170,14175,14175,14175, 14175,14175,14175,14175,14175,14175, 0, 0, 0, 0, 0, 0, 0,14175,14175,14175,14175,14175,14175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14175, 14175,14175,14175,14175,14175,14176,14176,14176,14176,14176, 14176,14176,14176,14176,14176, 0, 0, 0, 0, 0, 0,14176,14176,14176,14176,14176,14176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14176,14176,14176, 14176,14176,14176,14183,14183,14183,14183,14183,14183,14183, 14183,14183,14183, 0, 0, 0, 0, 0, 0,14183, 14183,14183,14183,14183,14183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14183,14183,14183,14183,14183, 14183,14184,14184,14184,14184,14184,14184,14184,14184,14184, 0, 0, 0, 0, 0, 0, 0,14184,14184,14184, 14184,14184,14184, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14184,14184,14184,14184,14184,14184,14191, 14191,14191,14191,14191,14191,14191,14191,14191,14191, 0, 0, 0, 0, 0, 0,14191,14191,14191,14191,14191, 14191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14191,14191,14191,14191,14191,14191,14195,14195,14195, 14195,14195,14195,14195,14195,14195,14195, 0, 0, 0, 0, 0, 0,14195,14195,14195,14195,14195,14195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14195, 14195,14195,14195,14195,14195,14200,14200, 0,14200,14200, 14200,14200,14200,14200, 0,14200,14200, 0, 0, 0, 0, 0, 0, 0, 0, 0,14200,14200,14200,14200, 14200,14200,14200, 0, 0, 0, 0, 0,14200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14200,14200,14200,14201,14201, 0,14201,14201,14201,14201,14201,14201, 0,14201,14201, 0, 0, 0, 0, 0, 0, 0, 0, 0,14201, 14201,14201,14201,14201,14201,14201,14201, 0, 0, 0, 0,14201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14201,14201, 14201,14205,14205, 0,14205,14205,14205,14205,14205,14205, 0,14205,14205, 0, 0, 0, 0, 0, 0, 0, 0, 0,14205,14205,14205,14205,14205,14205,14205, 0, 0, 0, 0, 0,14205, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14205,14205,14205,14206,14206, 0,14206,14206,14206, 14206,14206,14206, 0,14206,14206, 0, 0, 0, 0, 0, 0, 0, 0, 0,14206,14206,14206,14206,14206, 14206,14206,14206, 0, 0, 0, 0,14206, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14206,14206,14206,14210,14210, 0, 14210,14210,14210,14210,14210,14210, 0,14210,14210, 0, 0, 0, 0, 0, 0, 0, 0, 0,14210,14210, 14210,14210,14210,14210,14210, 0, 0, 0, 0, 0, 14210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14210,14210,14210, 14211,14211, 0,14211,14211,14211,14211,14211,14211, 0, 14211,14211, 0, 0, 0, 0, 0, 0, 0, 0, 0,14211,14211,14211,14211,14211,14211,14211,14211, 0, 0, 0, 0,14211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14211,14211,14211,14215,14215, 0,14215,14215,14215,14215, 14215,14215, 0,14215,14215, 0, 0, 0, 0, 0, 0, 0, 0, 0,14215,14215,14215,14215,14215,14215, 14215, 0, 0, 0, 0, 0,14215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14215,14215,14215,14216,14216, 0,14216, 14216,14216,14216,14216,14216, 0,14216,14216, 0, 0, 0, 0, 0, 0, 0, 0, 0,14216,14216,14216, 14216,14216,14216,14216,14216, 0, 0, 0, 0,14216, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14216,14216,14216,14219, 14219, 0,14219,14219,14219,14219,14219,14219, 0,14219, 14219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14219,14219,14219,14219,14219,14219,14219, 0, 0, 0, 0, 0,14219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14219, 14219,14219,14220,14220, 0,14220,14220,14220,14220,14220, 14220, 0,14220,14220, 0, 0, 0, 0, 0, 0, 0, 0, 0,14220,14220,14220,14220,14220,14220,14220, 14220, 0, 0, 0, 0,14220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14220,14220,14220,14222,14222, 0,14222,14222, 14222,14222,14222,14222, 0,14222,14222, 0, 0, 0, 0, 0, 0, 0, 0, 0,14222,14222,14222,14222, 14222,14222,14222, 0, 0, 0, 0, 0,14222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14222,14222,14222,14223,14223, 0,14223,14223,14223,14223,14223,14223, 0,14223,14223, 0, 0, 0, 0, 0, 0, 0, 0, 0,14223, 14223,14223,14223,14223,14223,14223,14223, 0, 0, 0, 0,14223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14223,14223, 14223,14224,14224, 0,14224,14224,14224,14224,14224,14224, 14224,14224,14224, 0, 0, 0, 0, 0, 0, 0, 0, 0,14224,14224,14224,14224,14224,14224,14224,14224, 0, 0, 0, 0,14224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14224,14224,14224,14224,14224,14225,14225, 0,14225, 14225,14225,14225,14225,14225, 0,14225,14225, 0, 0, 0, 0, 0, 0, 0, 0, 0,14225,14225,14225, 14225,14225,14225,14225, 0, 0, 0, 0, 0,14225, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14225,14225,14225,14226, 14226, 0,14226,14226,14226,14226,14226,14226, 0,14226, 14226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14226,14226,14226,14226,14226,14226,14226,14226, 0, 0, 0, 0,14226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14226, 14226,14226,14229,14229, 0,14229,14229,14229,14229,14229, 14229, 0,14229,14229, 0, 0, 0, 0, 0, 0, 0, 0, 0,14229,14229,14229,14229,14229,14229,14229, 0, 0, 0, 0, 0,14229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14229,14229,14229,14230,14230, 0,14230,14230, 14230,14230,14230,14230, 0,14230,14230, 0, 0, 0, 0, 0, 0, 0, 0, 0,14230,14230,14230,14230, 14230,14230,14230,14230, 0, 0, 0, 0,14230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14230,14230,14230,14232,14232, 0,14232,14232,14232,14232,14232,14232, 0,14232,14232, 0, 0, 0, 0, 0, 0, 0, 0, 0,14232, 14232,14232,14232,14232,14232,14232, 0, 0, 0, 0, 0,14232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14232,14232, 14232,14233,14233, 0,14233,14233,14233,14233,14233,14233, 0,14233,14233, 0, 0, 0, 0, 0, 0, 0, 0, 0,14233,14233,14233,14233,14233,14233,14233,14233, 0, 0, 0, 0,14233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14233,14233,14233,14234,14234, 0,14234,14234,14234, 14234,14234,14234,14234,14234,14234, 0, 0, 0, 0, 0, 0, 0, 0, 0,14234,14234,14234,14234,14234, 14234,14234,14234, 0, 0, 0, 0,14234, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14234,14234,14234,14234,14234,14245, 14245,14245,14245,14245,14245,14245,14245,14245,14245,14245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14245, 0, 14245,14248,14248, 0,14248,14248,14248,14248,14248,14248, 0,14248,14248, 0, 0, 0, 0, 0, 0, 0, 0, 0,14248,14248,14248,14248,14248,14248,14248, 0, 0, 0, 0, 0,14248, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14248,14248,14248,14249,14249, 0,14249,14249,14249, 14249,14249,14249, 0,14249,14249, 0, 0, 0, 0, 0, 0, 0, 0, 0,14249,14249,14249,14249,14249, 14249,14249,14249, 0, 0, 0, 0,14249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14249,14249,14249,14251,14251, 0, 14251,14251,14251,14251,14251,14251, 0,14251,14251, 0, 0, 0, 0, 0, 0, 0, 0, 0,14251,14251, 14251,14251,14251,14251,14251, 0, 0, 0, 0, 0, 14251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14251,14251,14251, 14252,14252, 0,14252,14252,14252,14252,14252,14252, 0, 14252,14252, 0, 0, 0, 0, 0, 0, 0, 0, 0,14252,14252,14252,14252,14252,14252,14252,14252, 0, 0, 0, 0,14252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14252,14252,14252,14254,14254, 0,14254,14254,14254,14254, 14254,14254, 0,14254,14254, 0, 0, 0, 0, 0, 0, 0, 0, 0,14254,14254,14254,14254,14254,14254, 14254, 0, 0, 0, 0, 0,14254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14254,14254,14254,14255,14255, 0,14255, 14255,14255,14255,14255,14255, 0,14255,14255, 0, 0, 0, 0, 0, 0, 0, 0, 0,14255,14255,14255, 14255,14255,14255,14255,14255, 0, 0, 0, 0,14255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14255,14255,14255,14256, 14256, 0,14256,14256,14256,14256,14256,14256, 0,14256, 14256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14256,14256,14256,14256,14256,14256,14256, 0, 0, 0, 0, 0,14256, 0,14256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14256, 14256,14256, 0, 0, 0, 0, 0, 0, 0, 0, 14256,14261,14261, 0,14261,14261,14261,14261,14261,14261, 0,14261,14261, 0, 0, 0, 0, 0, 0, 0, 0, 0,14261,14261,14261,14261,14261,14261,14261, 0, 0, 0, 0, 0,14261, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14261,14261,14261,14262,14262, 0,14262,14262,14262, 14262,14262,14262, 0,14262,14262, 0, 0, 0, 0, 0, 0, 0, 0, 0,14262,14262,14262,14262,14262, 14262,14262,14262, 0, 0, 0, 0,14262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14262,14262,14262,14266,14266, 0, 14266,14266,14266,14266,14266,14266, 0,14266,14266, 0, 0, 0, 0, 0, 0, 0, 0, 0,14266,14266, 14266,14266,14266,14266,14266, 0, 0, 0, 0, 0, 14266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14266,14266,14266, 14267,14267, 0,14267,14267,14267,14267,14267,14267, 0, 14267,14267, 0, 0, 0, 0, 0, 0, 0, 0, 0,14267,14267,14267,14267,14267,14267,14267,14267, 0, 0, 0, 0,14267, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14267,14267,14267,14270,14270, 0,14270,14270,14270,14270, 14270,14270, 0,14270,14270, 0, 0, 0, 0, 0, 0, 0, 0, 0,14270,14270,14270,14270,14270,14270, 14270, 0, 0, 0, 0, 0,14270, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14270,14270,14270,14271,14271, 0,14271, 14271,14271,14271,14271,14271, 0,14271,14271, 0, 0, 0, 0, 0, 0, 0, 0, 0,14271,14271,14271, 14271,14271,14271,14271,14271, 0, 0, 0, 0,14271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14271,14271,14271,14273, 14273, 0,14273,14273,14273,14273,14273,14273, 0,14273, 14273, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14273,14273,14273,14273,14273,14273,14273, 0, 0, 0, 0, 0,14273, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14273, 14273,14273,14274,14274, 0,14274,14274,14274,14274,14274, 14274, 0,14274,14274, 0, 0, 0, 0, 0, 0, 0, 0, 0,14274,14274,14274,14274,14274,14274,14274, 14274, 0, 0, 0, 0,14274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14274,14274,14274,14275,14275, 0,14275,14275, 14275,14275,14275,14275,14275,14275,14275, 0, 0, 0, 0, 0, 0, 0, 0, 0,14275,14275,14275,14275, 14275,14275,14275,14275, 0, 0, 0, 0,14275, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14275,14275,14275,14275,14275, 14276,14276, 0,14276,14276,14276,14276,14276,14276, 0, 14276,14276, 0, 0, 0, 0, 0, 0, 0, 0, 0,14276,14276,14276,14276,14276,14276,14276, 0, 0, 0, 0, 0,14276, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14276,14276,14276,14277,14277, 0,14277,14277,14277,14277, 14277,14277, 0,14277,14277, 0, 0, 0, 0, 0, 0, 0, 0, 0,14277,14277,14277,14277,14277,14277, 14277,14277, 0, 0, 0, 0,14277, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14277,14277,14277,14280,14280, 0,14280, 14280,14280,14280,14280,14280, 0,14280,14280, 0, 0, 0, 0, 0, 0, 0, 0, 0,14280,14280,14280, 14280,14280,14280,14280, 0, 0, 0, 0, 0,14280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14280,14280,14280,14281, 14281, 0,14281,14281,14281,14281,14281,14281, 0,14281, 14281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14281,14281,14281,14281,14281,14281,14281,14281, 0, 0, 0, 0,14281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14281, 14281,14281,14283,14283, 0,14283,14283,14283,14283,14283, 14283, 0,14283,14283, 0, 0, 0, 0, 0, 0, 0, 0, 0,14283,14283,14283,14283,14283,14283,14283, 0, 0, 0, 0, 0,14283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14283,14283,14283,14284,14284, 0,14284,14284, 14284,14284,14284,14284, 0,14284,14284, 0, 0, 0, 0, 0, 0, 0, 0, 0,14284,14284,14284,14284, 14284,14284,14284,14284, 0, 0, 0, 0,14284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14284,14284,14284,14285,14285, 0,14285,14285,14285,14285,14285,14285,14285,14285,14285, 0, 0, 0, 0, 0, 0, 0, 0, 0,14285, 14285,14285,14285,14285,14285,14285,14285, 0, 0, 0, 0,14285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14285,14285, 14285,14285,14285,14286,14286, 0,14286,14286,14286,14286, 14286,14286, 0,14286,14286, 0, 0, 0, 0, 0, 0, 0, 0, 0,14286,14286,14286,14286,14286,14286, 14286, 0, 0, 0, 0, 0,14286, 0, 0,14286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14286,14286,14286,14287,14287, 0,14287, 14287,14287,14287,14287,14287, 0,14287,14287, 0, 0, 0, 0, 0, 0, 0, 0, 0,14287,14287,14287, 14287,14287,14287,14287, 0, 0, 0, 0, 0,14287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14287,14287,14287,14288, 14288, 0,14288,14288,14288,14288,14288,14288, 0,14288, 14288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14288,14288,14288,14288,14288,14288,14288,14288, 0, 0, 0, 0,14288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14288, 14288,14288,14292,14292, 0,14292,14292,14292,14292,14292, 14292, 0,14292,14292, 0, 0, 0, 0, 0, 0, 0, 0, 0,14292,14292,14292,14292,14292,14292,14292, 0, 0, 0, 0, 0,14292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14292,14292,14292,14293,14293, 0,14293,14293, 14293,14293,14293,14293, 0,14293,14293, 0, 0, 0, 0, 0, 0, 0, 0, 0,14293,14293,14293,14293, 14293,14293,14293,14293, 0, 0, 0, 0,14293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14293,14293,14293,14297,14297, 0,14297,14297,14297,14297,14297,14297, 0,14297,14297, 0, 0, 0, 0, 0, 0, 0, 0, 0,14297, 14297,14297,14297,14297,14297,14297, 0, 0, 0, 0, 0,14297, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14297,14297, 14297,14298,14298, 0,14298,14298,14298,14298,14298,14298, 0,14298,14298, 0, 0, 0, 0, 0, 0, 0, 0, 0,14298,14298,14298,14298,14298,14298,14298,14298, 0, 0, 0, 0,14298, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14298,14298,14298,14301,14301, 0,14301,14301,14301, 14301,14301,14301, 0,14301,14301, 0, 0, 0, 0, 0, 0, 0, 0, 0,14301,14301,14301,14301,14301, 14301,14301, 0, 0, 0, 0, 0,14301, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14301,14301,14301,14302,14302, 0, 14302,14302,14302,14302,14302,14302, 0,14302,14302, 0, 0, 0, 0, 0, 0, 0, 0, 0,14302,14302, 14302,14302,14302,14302,14302,14302, 0, 0, 0, 0, 14302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14302,14302,14302, 14304,14304, 0,14304,14304,14304,14304,14304,14304, 0, 14304,14304, 0, 0, 0, 0, 0, 0, 0, 0, 0,14304,14304,14304,14304,14304,14304,14304, 0, 0, 0, 0, 0,14304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14304,14304,14304,14305,14305, 0,14305,14305,14305,14305, 14305,14305, 0,14305,14305, 0, 0, 0, 0, 0, 0, 0, 0, 0,14305,14305,14305,14305,14305,14305, 14305,14305, 0, 0, 0, 0,14305, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14305,14305,14305,14306,14306, 0,14306, 14306,14306,14306,14306,14306,14306,14306,14306, 0, 0, 0, 0, 0, 0, 0, 0, 0,14306,14306,14306, 14306,14306,14306,14306,14306, 0, 0, 0, 0,14306, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14306,14306,14306,14306, 14306,14307,14307, 0,14307,14307,14307,14307,14307,14307, 0,14307,14307, 0, 0, 0, 0, 0, 0, 0, 0, 0,14307,14307,14307,14307,14307,14307,14307, 0, 0, 0, 0, 0,14307, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14307,14307,14307,14308,14308, 0,14308,14308,14308, 14308,14308,14308, 0,14308,14308, 0, 0, 0, 0, 0, 0, 0, 0, 0,14308,14308,14308,14308,14308, 14308,14308,14308, 0, 0, 0, 0,14308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14308,14308,14308,14310,14310, 0, 14310,14310,14310,14310,14310,14310, 0,14310,14310, 0, 0, 0, 0, 0, 0, 0, 0, 0,14310,14310, 14310,14310,14310,14310,14310, 0, 0, 0, 0, 0, 14310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14310,14310,14310, 14311,14311, 0,14311,14311,14311,14311,14311,14311, 0, 14311,14311, 0, 0, 0, 0, 0, 0, 0, 0, 0,14311,14311,14311,14311,14311,14311,14311,14311, 0, 0, 0, 0,14311, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14311,14311,14311,14312,14312, 0,14312,14312,14312,14312, 14312,14312,14312,14312,14312, 0, 0, 0, 0, 0, 0, 0, 0, 0,14312,14312,14312,14312,14312,14312, 14312,14312, 0, 0, 0, 0,14312, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14312,14312,14312,14312,14312,14313,14313, 0,14313,14313,14313,14313,14313,14313, 0,14313,14313, 0, 0, 0, 0, 0, 0, 0, 0, 0,14313, 14313,14313,14313,14313,14313,14313, 0, 0, 0, 0, 0,14313, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14313,14313, 14313,14314,14314, 0,14314,14314,14314,14314,14314,14314, 0,14314,14314, 0, 0, 0, 0, 0, 0, 0, 0, 0,14314,14314,14314,14314,14314,14314,14314,14314, 0, 0, 0, 0,14314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14314,14314,14314,14325,14325,14325,14325,14325,14325, 14325,14325,14325,14325, 0, 0, 0, 0, 0, 0, 14325,14325,14325,14325,14325,14325, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14325,14325,14325,14325, 14325,14325,14326,14326,14326,14326,14326,14326,14326,14326, 14326,14326, 0, 0, 0, 0, 0, 0,14326,14326, 14326,14326,14326,14326, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14326,14326,14326,14326,14326,14326, 14327,14327,14327,14327,14327,14327,14327,14327,14327,14327, 0, 0, 0, 0, 0, 0,14327,14327,14327,14327, 14327,14327, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14327,14327,14327,14327,14327,14327,14328, 0, 0, 0, 0, 0, 0, 0, 0,14328,14328,14328, 14328,14328,14328,14328,14328,14328, 0, 0, 0, 0, 0, 0, 0,14328,14328,14328,14328,14328,14328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14328, 14328,14328,14328,14328,14328,14331,14331,14331,14331,14331, 14331,14331,14331,14331,14331, 0, 0, 0, 0, 0, 0,14331,14331,14331,14331,14331,14331, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14331,14331,14331, 14331,14331,14331,14332,14332,14332,14332,14332,14332,14332, 14332,14332, 0, 0, 0, 0, 0, 0, 0,14332, 14332,14332,14332,14332,14332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14332,14332,14332,14332,14332, 14332,14340,14340,14340,14340,14340,14340,14340,14340,14340, 14340, 0, 0, 0, 0, 0, 0,14340,14340,14340, 14340,14340,14340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14340,14340,14340,14340,14340,14340,14341, 14341,14341,14341,14341,14341,14341,14341,14341, 0, 0, 0, 0, 0, 0, 0,14341,14341,14341,14341,14341, 14341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14341,14341,14341,14341,14341,14341,14349,14349,14349, 14349,14349,14349,14349,14349,14349,14349, 0, 0, 0, 0, 0, 0,14349,14349,14349,14349,14349,14349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14349, 14349,14349,14349,14349,14349,14350,14350,14350,14350,14350, 14350,14350,14350,14350, 0, 0, 0, 0, 0, 0, 0,14350,14350,14350,14350,14350,14350, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14350,14350,14350, 14350,14350,14350,14355, 0,14355,14355,14355,14355,14355, 14355,14355,14355,14355,14355, 0, 0, 0, 0, 0, 0,14355,14355,14355,14355,14355,14355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14355,14355,14355, 14355,14355,14355,14362,14362,14362,14362,14362,14362,14362, 14362,14362,14362, 0, 0, 0, 0, 0, 0,14362, 14362,14362,14362,14362,14362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14362,14362,14362,14362,14362, 14362,14363,14363,14363,14363,14363,14363,14363,14363,14363, 0, 0, 0, 0, 0, 0, 0,14363,14363,14363, 14363,14363,14363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14363,14363,14363,14363,14363,14363,14368, 14368,14368,14368,14368,14368,14368,14368,14368,14368, 0, 0, 0, 0, 0, 0,14368,14368,14368,14368,14368, 14368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14368,14368,14368,14368,14368,14368,14372,14372,14372, 14372,14372,14372,14372,14372,14372,14372, 0, 0, 0, 0, 0, 0,14372,14372,14372,14372,14372,14372, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14372, 14372,14372,14372,14372,14372,14376,14376,14376,14376,14376, 14376,14376,14376,14376,14376, 0, 0, 0, 0, 0, 0,14376,14376,14376,14376,14376,14376, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14376,14376,14376, 14376,14376,14376,14377,14377,14377,14377,14377,14377,14377, 14377,14377, 0, 0, 0, 0, 0, 0, 0,14377, 14377,14377,14377,14377,14377, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14377,14377,14377,14377,14377, 14377,14382,14382,14382,14382,14382,14382,14382,14382,14382, 14382, 0, 0, 0, 0, 0, 0,14382,14382,14382, 14382,14382,14382, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14382,14382,14382,14382,14382,14382,14386, 14386,14386,14386,14386,14386,14386,14386,14386,14386, 0, 0, 0, 0, 0, 0,14386,14386,14386,14386,14386, 14386, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14386,14386,14386,14386,14386,14386,14387,14387,14387, 14387,14387,14387,14387,14387,14387,14387, 0, 0, 0, 0, 0, 0,14387,14387,14387,14387,14387,14387, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14387, 14387,14387,14387,14387,14387,14389,14389,14389,14389,14389, 14389,14389,14389,14389,14389, 0, 0, 0, 0, 0, 0,14389,14389,14389,14389,14389,14389, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14389,14389,14389, 14389,14389,14389,14394,14394,14394,14394,14394,14394,14394, 14394,14394, 0, 0, 0, 0, 0, 0, 0,14394, 14394,14394,14394,14394,14394, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14394,14394,14394,14394,14394, 14394,14395,14395,14395,14395,14395,14395,14395,14395,14395, 14395, 0, 0, 0, 0, 0, 0,14395,14395,14395, 14395,14395,14395, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14395,14395,14395,14395,14395,14395,14400, 14400, 0,14400,14400,14400,14400,14400,14400, 0,14400, 14400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14400,14400,14400,14400,14400,14400,14400, 0, 0, 0, 0, 0,14400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14400, 14400,14400,14401,14401, 0,14401,14401,14401,14401,14401, 14401, 0,14401,14401, 0, 0, 0, 0, 0, 0, 0, 0, 0,14401,14401,14401,14401,14401,14401,14401, 14401, 0, 0, 0, 0,14401, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14401,14401,14401,14405,14405, 0,14405,14405, 14405,14405,14405,14405, 0,14405,14405, 0, 0, 0, 0, 0, 0, 0, 0, 0,14405,14405,14405,14405, 14405,14405,14405, 0, 0, 0, 0, 0,14405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14405,14405,14405,14406,14406, 0,14406,14406,14406,14406,14406,14406, 0,14406,14406, 0, 0, 0, 0, 0, 0, 0, 0, 0,14406, 14406,14406,14406,14406,14406,14406,14406, 0, 0, 0, 0,14406, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14406,14406, 14406,14410,14410, 0,14410,14410,14410,14410,14410,14410, 0,14410,14410, 0, 0, 0, 0, 0, 0, 0, 0, 0,14410,14410,14410,14410,14410,14410,14410, 0, 0, 0, 0, 0,14410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14410,14410,14410,14411,14411, 0,14411,14411,14411, 14411,14411,14411, 0,14411,14411, 0, 0, 0, 0, 0, 0, 0, 0, 0,14411,14411,14411,14411,14411, 14411,14411,14411, 0, 0, 0, 0,14411, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14411,14411,14411,14415,14415, 0, 14415,14415,14415,14415,14415,14415, 0,14415,14415, 0, 0, 0, 0, 0, 0, 0, 0, 0,14415,14415, 14415,14415,14415,14415,14415, 0, 0, 0, 0, 0, 14415, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14415,14415,14415, 14416,14416, 0,14416,14416,14416,14416,14416,14416, 0, 14416,14416, 0, 0, 0, 0, 0, 0, 0, 0, 0,14416,14416,14416,14416,14416,14416,14416,14416, 0, 0, 0, 0,14416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14416,14416,14416,14420,14420, 0,14420,14420,14420,14420, 14420,14420, 0,14420,14420, 0, 0, 0, 0, 0, 0, 0, 0, 0,14420,14420,14420,14420,14420,14420, 14420, 0, 0, 0, 0, 0,14420, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14420,14420,14420,14421,14421, 0,14421, 14421,14421,14421,14421,14421, 0,14421,14421, 0, 0, 0, 0, 0, 0, 0, 0, 0,14421,14421,14421, 14421,14421,14421,14421,14421, 0, 0, 0, 0,14421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14421,14421,14421,14424, 14424, 0,14424,14424,14424,14424,14424,14424, 0,14424, 14424, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14424,14424,14424,14424,14424,14424,14424, 0, 0, 0, 0, 0,14424, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14424, 14424,14424,14425,14425, 0,14425,14425,14425,14425,14425, 14425, 0,14425,14425, 0, 0, 0, 0, 0, 0, 0, 0, 0,14425,14425,14425,14425,14425,14425,14425, 14425, 0, 0, 0, 0,14425, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14425,14425,14425,14427,14427, 0,14427,14427, 14427,14427,14427,14427, 0,14427,14427, 0, 0, 0, 0, 0, 0, 0, 0, 0,14427,14427,14427,14427, 14427,14427,14427, 0, 0, 0, 0, 0,14427, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14427, 0, 0, 0, 0, 0,14427,14427,14427, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14427,14428,14428, 0, 14428,14428,14428,14428,14428,14428, 0,14428,14428, 0, 0, 0, 0, 0, 0, 0, 0, 0,14428,14428, 14428,14428,14428,14428,14428, 0, 0, 0, 0, 0, 14428, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14428,14428,14428, 14429,14429, 0,14429,14429,14429,14429,14429,14429, 0, 14429,14429, 0, 0, 0, 0, 0, 0, 0, 0, 0,14429,14429,14429,14429,14429,14429,14429,14429, 0, 0, 0, 0,14429, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14429,14429,14429,14430,14430, 0,14430,14430,14430,14430, 14430,14430, 0,14430,14430, 0, 0, 0, 0, 0, 0, 0, 0, 0,14430,14430,14430,14430,14430,14430, 14430, 0, 0, 0, 0, 0,14430, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14430,14430,14430,14431,14431, 0,14431, 14431,14431,14431,14431,14431, 0,14431,14431, 0, 0, 0, 0, 0, 0, 0, 0, 0,14431,14431,14431, 14431,14431,14431,14431,14431, 0, 0, 0, 0,14431, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14431,14431,14431,14434, 14434, 0,14434,14434,14434,14434,14434,14434, 0,14434, 14434, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14434,14434,14434,14434,14434,14434,14434, 0, 0, 0, 0, 0,14434, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14434, 14434,14434,14435,14435, 0,14435,14435,14435,14435,14435, 14435, 0,14435,14435, 0, 0, 0, 0, 0, 0, 0, 0, 0,14435,14435,14435,14435,14435,14435,14435, 14435, 0, 0, 0, 0,14435, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14435,14435,14435,14438,14438, 0,14438,14438, 14438,14438,14438,14438, 0,14438,14438, 0, 0, 0, 0, 0, 0, 0, 0, 0,14438,14438,14438,14438, 14438,14438,14438, 0, 0, 0, 0, 0,14438, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14438,14438,14438,14439,14439, 0,14439,14439,14439,14439,14439,14439, 0,14439,14439, 0, 0, 0, 0, 0, 0, 0, 0, 0,14439, 14439,14439,14439,14439,14439,14439,14439, 0, 0, 0, 0,14439, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14439,14439, 14439,14441,14441, 0,14441,14441,14441,14441,14441,14441, 0,14441,14441, 0, 0, 0, 0, 0, 0, 0, 0, 0,14441,14441,14441,14441,14441,14441,14441, 0, 0, 0, 0, 0,14441, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14441, 0, 0, 0, 0, 0,14441,14441,14441, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14441,14442,14442, 0,14442,14442,14442,14442, 14442,14442, 0,14442,14442, 0, 0, 0, 0, 0, 0, 0, 0, 0,14442,14442,14442,14442,14442,14442, 14442, 0, 0, 0, 0, 0,14442, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14442,14442,14442,14443,14443, 0,14443, 14443,14443,14443,14443,14443, 0,14443,14443, 0, 0, 0, 0, 0, 0, 0, 0, 0,14443,14443,14443, 14443,14443,14443,14443,14443, 0, 0, 0, 0,14443, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14443,14443,14443,14472, 14472, 0,14472,14472,14472,14472,14472,14472, 0,14472, 14472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14472,14472,14472,14472,14472,14472,14472, 0, 0, 0, 0, 0,14472, 0, 0, 0, 0, 0,14472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14472, 14472,14472,14475,14475, 0,14475,14475,14475,14475,14475, 14475, 0,14475,14475, 0, 0, 0, 0, 0, 0, 0, 0, 0,14475,14475,14475,14475,14475,14475,14475, 0, 0, 0, 0, 0,14475, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14475,14475,14475, 0, 0, 0,14475,14476, 14476, 0,14476,14476,14476,14476,14476,14476, 0,14476, 14476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14476,14476,14476,14476,14476,14476,14476,14476, 0, 0, 0, 0,14476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14476, 14476,14476, 0, 0, 0,14476,14485,14485, 0,14485, 14485,14485,14485,14485,14485, 0,14485,14485, 0, 0, 0, 0, 0, 0, 0, 0, 0,14485,14485,14485, 14485,14485,14485,14485, 0, 0, 0, 0, 0,14485, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14485,14485,14485, 0, 0, 0,14485,14486,14486, 0,14486,14486,14486,14486, 14486,14486, 0,14486,14486, 0, 0, 0, 0, 0, 0, 0, 0, 0,14486,14486,14486,14486,14486,14486, 14486,14486, 0, 0, 0, 0,14486, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14486,14486,14486, 0, 0, 0,14486, 14494,14494, 0,14494,14494,14494,14494,14494,14494, 0, 14494,14494, 0, 0, 0, 0, 0, 0, 0, 0, 0,14494,14494,14494,14494,14494,14494,14494, 0, 0, 0, 0, 0,14494, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14494,14494,14494, 0, 0, 0,14494,14495,14495, 0, 14495,14495,14495,14495,14495,14495, 0,14495,14495, 0, 0, 0, 0, 0, 0, 0, 0, 0,14495,14495, 14495,14495,14495,14495,14495,14495, 0, 0, 0, 0, 14495, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14495,14495,14495, 0, 0, 0,14495,14502,14502, 0,14502,14502,14502, 14502,14502,14502, 0,14502,14502, 0, 0, 0, 0, 0, 0, 0, 0, 0,14502,14502,14502,14502,14502, 14502,14502, 0, 0, 0, 0, 0,14502, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14502,14502,14502, 0, 0, 0, 14502,14503,14503, 0,14503,14503,14503,14503,14503,14503, 0,14503,14503, 0, 0, 0, 0, 0, 0, 0, 0, 0,14503,14503,14503,14503,14503,14503,14503,14503, 0, 0, 0, 0,14503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14503,14503,14503, 0, 0, 0,14503,14508,14508, 0,14508,14508,14508,14508,14508,14508, 0,14508,14508, 0, 0, 0, 0, 0, 0, 0, 0, 0,14508, 14508,14508,14508,14508,14508,14508, 0, 0, 0, 0, 0,14508, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14508,14508, 14508, 0, 0, 0,14508,14509,14509, 0,14509,14509, 14509,14509,14509,14509, 0,14509,14509, 0, 0, 0, 0, 0, 0, 0, 0, 0,14509,14509,14509,14509, 14509,14509,14509,14509, 0, 0, 0, 0,14509, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14509,14509,14509, 0, 0, 0,14509,14512,14512, 0,14512,14512,14512,14512,14512, 14512, 0,14512,14512, 0, 0, 0, 0, 0, 0, 0, 0, 0,14512,14512,14512,14512,14512,14512,14512, 0, 0, 0, 0, 0,14512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14512,14512,14512, 0, 0, 0,14512,14513, 14513, 0,14513,14513,14513,14513,14513,14513, 0,14513, 14513, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14513,14513,14513,14513,14513,14513,14513,14513, 0, 0, 0, 0,14513, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14513, 14513,14513, 0, 0, 0,14513,14514,14514, 0,14514, 14514,14514,14514,14514,14514,14514,14514,14514, 0, 0, 0, 0, 0, 0, 0, 0, 0,14514,14514,14514, 14514,14514,14514,14514,14514, 0, 0, 0, 0,14514, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14514,14514,14514,14514, 14514, 0,14514,14517,14517, 0,14517,14517,14517,14517, 14517,14517, 0,14517,14517, 0, 0, 0, 0, 0, 0, 0, 0, 0,14517,14517,14517,14517,14517,14517, 14517, 0, 0, 0, 0, 0,14517, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14517,14517,14517, 0, 0, 0,14517, 14518,14518, 0,14518,14518,14518,14518,14518,14518, 0, 14518,14518, 0, 0, 0, 0, 0, 0, 0, 0, 0,14518,14518,14518,14518,14518,14518,14518,14518, 0, 0, 0, 0,14518, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14518,14518,14518, 0, 0, 0,14518,14524,14524, 0, 14524,14524,14524,14524,14524,14524, 0,14524,14524, 0, 0, 0, 0, 0, 0, 0, 0, 0,14524,14524, 14524,14524,14524,14524,14524, 0, 0, 0, 0, 0, 14524, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14524,14524,14524, 0, 0, 0,14524,14525,14525, 0,14525,14525,14525, 14525,14525,14525, 0,14525,14525, 0, 0, 0, 0, 0, 0, 0, 0, 0,14525,14525,14525,14525,14525, 14525,14525,14525, 0, 0, 0, 0,14525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14525,14525,14525, 0, 0, 0, 14525,14528,14528, 0,14528,14528,14528,14528,14528,14528, 0,14528,14528, 0, 0, 0, 0, 0, 0, 0, 0, 0,14528,14528,14528,14528,14528,14528,14528, 0, 0, 0, 0, 0,14528, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14528,14528,14528, 0, 0, 0,14528,14529,14529, 0,14529,14529,14529,14529,14529,14529, 0,14529,14529, 0, 0, 0, 0, 0, 0, 0, 0, 0,14529, 14529,14529,14529,14529,14529,14529,14529, 0, 0, 0, 0,14529, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14529,14529, 14529, 0, 0, 0,14529,14530,14530, 0,14530,14530, 14530,14530,14530,14530,14530,14530,14530, 0, 0, 0, 0, 0, 0, 0, 0, 0,14530,14530,14530,14530, 14530,14530,14530,14530, 0, 0, 0, 0,14530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14530,14530,14530,14530,14530, 0,14530,14556,14556,14556,14556,14556,14556,14556,14556, 14556,14556,14556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14556, 0,14556, 0, 0, 0,14556,14562,14562, 0,14562,14562,14562,14562,14562,14562, 0,14562,14562, 0, 0, 0, 0, 0, 0, 0, 0, 0,14562, 14562,14562,14562,14562,14562,14562, 0, 0, 0, 0, 0,14562, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14562,14562, 14562, 0, 0, 0,14562, 0,14562,14564,14564, 0, 14564,14564,14564,14564,14564,14564, 0,14564,14564, 0, 0, 0, 0, 0, 0, 0, 0, 0,14564,14564, 14564,14564,14564,14564,14564, 0, 0, 0, 0, 0, 14564, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14564,14564,14564, 0, 0, 0,14564, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14564, 14565, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14565,14565,14565,14565,14565,14565,14565,14565,14565, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14565, 0, 0, 0, 0, 0,14565,14570,14570, 14570,14570,14570,14570,14570,14570,14570, 0,14570,14570, 0, 0, 0, 0, 0, 0, 0, 0, 0,14570, 14570,14570,14570,14570,14570,14570, 0, 0, 0, 0, 0,14570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14570,14570, 14570,14570,14580,14580, 0,14580,14580,14580,14580, 0, 14580,14580,14580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14580,14580,14580,14580,14580,14580,14580, 0, 0, 0, 0, 0,14580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14580,14580,14580,14580,14581,14581, 0,14581, 14581,14581,14581, 0,14581,14581,14581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14581,14581,14581, 14581,14581,14581,14581,14581, 0, 0, 0, 0,14581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14581,14581,14581,14581, 14592, 0,14592, 0, 0,14592,14592,14592,14592,14592, 14592,14592,14592,14592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14592, 0, 0,14592,14598,14598, 0,14598, 14598,14598,14598,14598,14598, 0,14598,14598, 0, 0, 0, 0, 0, 0, 0, 0, 0,14598,14598,14598, 14598,14598,14598,14598, 0, 0, 0, 0, 0,14598, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14598,14598,14598,14636, 14636, 0, 0, 0, 0,14636, 0, 0, 0,14636, 14636,14636,14636,14636,14636,14636,14636,14636,14637,14637, 14637, 0, 0, 0,14637, 0,14637, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14637, 0, 0, 0, 0, 0, 0,14637, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14637, 0,14637, 0,14637, 0, 0,14637, 0, 0, 0, 0,14637, 0, 0,14637, 0,14637, 0,14637, 0,14637,14637,14637,14638, 0, 0, 0, 0, 0, 0,14638, 0,14638, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14638, 0,14638, 0,14638, 0, 0,14638, 0, 0, 0, 0,14638, 0, 0, 14638, 0,14638, 0,14638, 0,14638,14638,14638,14639, 0, 0, 0, 0, 0, 0,14639, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14639, 0,14639, 0,14639, 0, 0,14639, 0, 0, 0, 0,14639,14639, 0,14639, 0,14639, 0,14639, 0,14639,14639,14639,14640, 0, 0, 0, 0, 0, 0,14640, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14640, 0,14640, 0,14640, 0, 0,14640, 0, 0, 0, 0,14640,14640, 0, 14640, 0,14640, 0,14640, 0,14640,14640,14640,14641, 0, 0, 0, 0, 0, 0,14641, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14641, 0,14641, 0,14641, 0, 0,14641, 0, 0, 0, 0,14641, 0, 0,14641, 0,14641, 0,14641, 0,14641,14641,14641,14642, 0, 0, 0, 0, 0, 0,14642, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14642, 0,14642, 0,14642, 0, 0,14642, 0, 0, 0, 0,14642,14642, 0, 14642, 0,14642, 0,14642, 0,14642,14642,14642,14643, 0, 0, 0, 0, 0, 0,14643, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14643, 0,14643,14643,14643, 0, 0,14643, 0, 0, 0, 0,14643, 0, 0,14643, 0,14643, 0,14643, 0,14643,14643,14643,14644, 0, 0, 0, 0, 0, 0,14644, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14644, 0,14644, 0,14644, 0,14644,14644, 0, 0, 0, 0,14644, 0, 0, 14644, 0,14644, 0,14644,14644,14644,14644,14644,14645, 0, 0, 0, 0, 0, 0,14645, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14645, 0,14645, 0,14645, 0, 0,14645, 0, 0, 0,14645,14645, 0, 0,14645, 0,14645, 0,14645, 0,14645,14645,14645,14646, 0, 0, 0, 0, 0, 0,14646, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14646, 0,14646, 0,14646, 0, 0,14646,14646, 0, 0, 0,14646, 0, 0, 14646, 0,14646, 0,14646, 0,14646,14646,14646,14646, 14647, 0, 0, 0, 0, 0, 0,14647, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14647, 0,14647, 0,14647,14647, 0,14647, 0, 0, 0, 0,14647, 0, 0,14647, 0,14647, 0, 14647, 0,14647,14647,14647,14648, 0, 0, 0, 0, 0, 0,14648, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14648, 0,14648, 0, 14648, 0, 0,14648,14648, 0, 0, 0,14648, 0, 0,14648, 0,14648, 0,14648, 0,14648,14648,14648, 14649, 0, 0, 0, 0, 0, 0,14649, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14649, 0,14649, 0,14649, 0, 0,14649, 0, 0, 0, 0,14649,14649, 0,14649, 0,14649, 0, 14649, 0,14649,14649,14649,14650,14650, 0, 0, 0, 0,14650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14650,14650, 0, 0, 0, 0, 0,14650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14650, 0,14650, 0,14650, 0, 0,14650, 0, 0, 0, 0,14650, 0, 0,14650, 0,14650, 0,14650, 0,14650,14650, 14650,14660,14660,14660, 0, 0, 0,14660, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14660, 0,14660, 0, 0, 0, 0,14660, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14660, 0,14660, 0,14660, 0, 0, 14660, 0, 0, 0, 0,14660, 0, 0,14660, 0, 14660, 0,14660, 0,14660,14660,14660,14661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14661, 0, 0, 0, 0, 0, 0,14661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14661, 0,14661, 0,14661, 0, 0,14661, 0, 0, 0, 0,14661, 0, 0,14661, 0,14661, 0,14661, 0,14661,14661,14661,14662,14662, 0, 0, 0, 0, 14662, 0, 0,14662,14662,14662,14662,14662,14662,14662, 14662,14662,14662, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14662, 0, 0, 0, 0, 0, 0,14662, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14662, 0,14662, 0, 14662, 0, 0,14662, 0, 0, 0, 0,14662, 0, 0,14662, 0,14662, 0,14662, 0,14662,14662,14662, 14663, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14663, 0, 0, 0, 0, 0, 0,14663, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14663, 0,14663, 0,14663, 0, 0, 14663, 0, 0, 0, 0,14663, 0,14663,14663, 0, 14663, 0,14663, 0,14663,14663,14663,14664, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14664, 0, 0, 0, 0, 0,14664,14664, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14664, 0,14664, 0,14664, 0, 0,14664, 0, 0, 0, 0,14664, 0, 0,14664, 0,14664, 0,14664, 0,14664,14664,14664,14665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14665, 0, 0, 0, 0, 0, 0,14665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14665, 0,14665, 0,14665, 0, 0,14665,14665, 0, 0, 0,14665, 0, 0,14665, 0,14665, 0,14665, 0,14665,14665, 14665,14665,14669,14669, 0, 0, 0, 0,14669, 0, 0,14669, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14669, 0, 0, 0, 0, 0, 0, 14669, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14669, 0,14669, 0,14669, 0, 0,14669, 0, 0, 0, 0,14669, 0, 0,14669, 0,14669, 0,14669, 0,14669,14669,14669,14692,14692, 0, 0, 0, 0,14692, 0, 0,14692, 0, 0, 14692, 0,14692, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14692, 0,14692, 0, 0, 0, 0,14692, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14692, 0,14692, 0,14692, 0, 0,14692, 0, 0, 0, 0,14692, 0, 0,14692, 0,14692, 0,14692, 0,14692,14692,14692,14693,14693,14693, 0, 0, 0, 14693, 0, 0,14693, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14693, 0, 0, 0, 0, 0, 0,14693, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14693, 0,14693, 0, 14693, 0, 0,14693, 0, 0, 0, 0,14693, 0, 0,14693, 0,14693, 0,14693, 0,14693,14693,14693, 14708,14708, 0,14708,14708,14708,14708,14708,14708, 0, 14708,14708, 0, 0, 0, 0, 0, 0, 0, 0, 0,14708,14708,14708,14708,14708,14708,14708, 0, 0, 0, 0, 0,14708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14708,14708,14708,14709,14709, 0,14709,14709,14709,14709, 14709,14709, 0,14709,14709, 0, 0, 0, 0, 0, 0, 0, 0, 0,14709,14709,14709,14709,14709,14709, 14709,14709, 0, 0, 0, 0,14709, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14709,14709,14709,14714,14714,14714,14714, 14714,14714,14714,14714,14714,14714, 0, 0, 0, 0, 0, 0,14714,14714,14714,14714,14714,14714, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14714,14714, 14714,14714,14714,14714,14716,14716,14716,14716,14716,14716, 14716,14716,14716,14716, 0, 0, 0, 0, 0, 0, 14716,14716,14716,14716,14716,14716, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14716,14716,14716,14716, 14716,14716,14717, 0, 0, 0, 0, 0, 0, 0, 0,14717,14717,14717,14717,14717,14717,14717,14717,14717, 0, 0, 0, 0, 0, 0, 0,14717,14717,14717, 14717,14717,14717, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14717,14717,14717,14717,14717,14717,14720, 14720,14720,14720,14720,14720,14720,14720,14720,14720, 0, 0, 0, 0, 0, 0,14720,14720,14720,14720,14720, 14720, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14720,14720,14720,14720,14720,14720,14721,14721,14721, 14721,14721,14721,14721,14721,14721, 0, 0, 0, 0, 0, 0, 0,14721,14721,14721,14721,14721,14721, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14721, 14721,14721,14721,14721,14721,14729,14729,14729,14729,14729, 14729,14729,14729,14729,14729, 0, 0, 0, 0, 0, 0,14729,14729,14729,14729,14729,14729, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14729,14729,14729, 14729,14729,14729,14730,14730,14730,14730,14730,14730,14730, 14730,14730, 0, 0, 0, 0, 0, 0, 0,14730, 14730,14730,14730,14730,14730, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14730,14730,14730,14730,14730, 14730,14738,14738,14738,14738,14738,14738,14738,14738,14738, 14738, 0, 0, 0, 0, 0, 0,14738,14738,14738, 14738,14738,14738, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14738,14738,14738,14738,14738,14738,14739, 14739,14739,14739,14739,14739,14739,14739,14739, 0, 0, 0, 0, 0, 0, 0,14739,14739,14739,14739,14739, 14739, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14739,14739,14739,14739,14739,14739,14744, 0,14744, 14744,14744,14744,14744,14744,14744,14744,14744,14744, 0, 0, 0, 0, 0, 0,14744,14744,14744,14744,14744, 14744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14744,14744,14744,14744,14744,14744,14751,14751,14751, 14751,14751,14751,14751,14751,14751,14751, 0, 0, 0, 0, 0, 0,14751,14751,14751,14751,14751,14751, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14751, 14751,14751,14751,14751,14751,14752,14752,14752,14752,14752, 14752,14752,14752,14752, 0, 0, 0, 0, 0, 0, 0,14752,14752,14752,14752,14752,14752, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14752,14752,14752, 14752,14752,14752,14757,14757,14757,14757,14757,14757,14757, 14757,14757,14757, 0, 0, 0, 0, 0, 0,14757, 14757,14757,14757,14757,14757, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14757,14757,14757,14757,14757, 14757,14761,14761,14761,14761,14761,14761,14761,14761,14761, 14761, 0, 0, 0, 0, 0, 0,14761,14761,14761, 14761,14761,14761, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14761,14761,14761,14761,14761,14761,14765, 14765,14765,14765,14765,14765,14765,14765,14765,14765, 0, 0, 0, 0, 0, 0,14765,14765,14765,14765,14765, 14765, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14765,14765,14765,14765,14765,14765,14766,14766,14766, 14766,14766,14766,14766,14766,14766, 0, 0, 0, 0, 0, 0, 0,14766,14766,14766,14766,14766,14766, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14766, 14766,14766,14766,14766,14766,14771,14771,14771,14771,14771, 14771,14771,14771,14771,14771, 0, 0, 0, 0, 0, 0,14771,14771,14771,14771,14771,14771, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14771,14771,14771, 14771,14771,14771,14775,14775,14775,14775,14775,14775,14775, 14775,14775,14775, 0, 0, 0, 0, 0, 0,14775, 14775,14775,14775,14775,14775, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14775,14775,14775,14775,14775, 14775,14776,14776,14776,14776,14776,14776,14776,14776,14776, 14776, 0, 0, 0, 0, 0, 0,14776,14776,14776, 14776,14776,14776, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14776,14776,14776,14776,14776,14776,14778, 14778,14778,14778,14778,14778,14778,14778,14778,14778, 0, 0, 0, 0, 0, 0,14778,14778,14778,14778,14778, 14778, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14778,14778,14778,14778,14778,14778,14783,14783,14783, 14783,14783,14783,14783,14783,14783, 0, 0, 0, 0, 0, 0, 0,14783,14783,14783,14783,14783,14783, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14783, 14783,14783,14783,14783,14783,14784,14784,14784,14784,14784, 14784,14784,14784,14784,14784, 0, 0, 0, 0, 0, 0,14784,14784,14784,14784,14784,14784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14784,14784,14784, 14784,14784,14784,14789,14789, 0,14789,14789,14789,14789, 14789,14789, 0,14789,14789, 0, 0, 0, 0, 0, 0, 0, 0, 0,14789,14789,14789,14789,14789,14789, 14789, 0, 0, 0, 0, 0,14789, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14789,14789,14789,14790,14790, 0,14790, 14790,14790,14790,14790,14790, 0,14790,14790, 0, 0, 0, 0, 0, 0, 0, 0, 0,14790,14790,14790, 14790,14790,14790,14790,14790, 0, 0, 0, 0,14790, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14790,14790,14790,14794, 14794, 0,14794,14794,14794,14794,14794,14794, 0,14794, 14794, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14794,14794,14794,14794,14794,14794,14794, 0, 0, 0, 0, 0,14794, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14794, 14794,14794,14795,14795, 0,14795,14795,14795,14795,14795, 14795, 0,14795,14795, 0, 0, 0, 0, 0, 0, 0, 0, 0,14795,14795,14795,14795,14795,14795,14795, 14795, 0, 0, 0, 0,14795, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14795,14795,14795,14799,14799, 0,14799,14799, 14799,14799,14799,14799, 0,14799,14799, 0, 0, 0, 0, 0, 0, 0, 0, 0,14799,14799,14799,14799, 14799,14799,14799, 0, 0, 0, 0, 0,14799, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14799,14799,14799,14800,14800, 0,14800,14800,14800,14800,14800,14800, 0,14800,14800, 0, 0, 0, 0, 0, 0, 0, 0, 0,14800, 14800,14800,14800,14800,14800,14800,14800, 0, 0, 0, 0,14800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14800,14800, 14800,14804,14804, 0,14804,14804,14804,14804,14804,14804, 0,14804,14804, 0, 0, 0, 0, 0, 0, 0, 0, 0,14804,14804,14804,14804,14804,14804,14804, 0, 0, 0, 0, 0,14804, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14804,14804,14804,14805,14805, 0,14805,14805,14805, 14805,14805,14805, 0,14805,14805, 0, 0, 0, 0, 0, 0, 0, 0, 0,14805,14805,14805,14805,14805, 14805,14805,14805, 0, 0, 0, 0,14805, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14805,14805,14805,14809,14809, 0, 14809,14809,14809,14809,14809,14809, 0,14809,14809, 0, 0, 0, 0, 0, 0, 0, 0, 0,14809,14809, 14809,14809,14809,14809,14809, 0, 0, 0, 0, 0, 14809, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14809,14809,14809, 14810,14810, 0,14810,14810,14810,14810,14810,14810, 0, 14810,14810, 0, 0, 0, 0, 0, 0, 0, 0, 0,14810,14810,14810,14810,14810,14810,14810,14810, 0, 0, 0, 0,14810, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14810,14810,14810,14813,14813, 0,14813,14813,14813,14813, 14813,14813, 0,14813,14813, 0, 0, 0, 0, 0, 0, 0, 0, 0,14813,14813,14813,14813,14813,14813, 14813, 0, 0, 0, 0, 0,14813, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14813,14813,14813,14814,14814, 0,14814, 14814,14814,14814,14814,14814, 0,14814,14814, 0, 0, 0, 0, 0, 0, 0, 0, 0,14814,14814,14814, 14814,14814,14814,14814,14814, 0, 0, 0, 0,14814, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14814,14814,14814,14816, 14816, 0,14816,14816,14816,14816,14816,14816, 0,14816, 14816, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14816,14816,14816,14816,14816,14816,14816, 0, 0, 0, 0, 0,14816, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14816, 0, 0, 0, 0, 0,14816, 14816,14816, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14816,14817,14817, 0,14817,14817,14817,14817,14817,14817, 0,14817,14817, 0, 0, 0, 0, 0, 0, 0, 0, 0,14817,14817,14817,14817,14817,14817,14817, 0, 0, 0, 0, 0,14817, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14817,14817,14817,14818,14818, 0,14818,14818,14818, 14818,14818,14818, 0,14818,14818, 0, 0, 0, 0, 0, 0, 0, 0, 0,14818,14818,14818,14818,14818, 14818,14818,14818, 0, 0, 0, 0,14818, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14818,14818,14818,14819,14819, 0, 14819,14819,14819,14819,14819,14819, 0,14819,14819, 0, 0, 0, 0, 0, 0, 0, 0, 0,14819,14819, 14819,14819,14819,14819,14819, 0, 0, 0, 0, 0, 14819, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14819,14819,14819, 14820,14820, 0,14820,14820,14820,14820,14820,14820, 0, 14820,14820, 0, 0, 0, 0, 0, 0, 0, 0, 0,14820,14820,14820,14820,14820,14820,14820,14820, 0, 0, 0, 0,14820, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14820,14820,14820,14824,14824, 0,14824,14824,14824,14824, 14824,14824, 0,14824,14824, 0, 0, 0, 0, 0, 0, 0, 0, 0,14824,14824,14824,14824,14824,14824, 14824, 0, 0, 0, 0, 0,14824, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14824,14824,14824,14825,14825, 0,14825, 14825,14825,14825,14825,14825, 0,14825,14825, 0, 0, 0, 0, 0, 0, 0, 0, 0,14825,14825,14825, 14825,14825,14825,14825,14825, 0, 0, 0, 0,14825, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14825,14825,14825,14828, 14828, 0,14828,14828,14828,14828,14828,14828, 0,14828, 14828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14828,14828,14828,14828,14828,14828,14828, 0, 0, 0, 0, 0,14828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14828, 14828,14828,14829,14829, 0,14829,14829,14829,14829,14829, 14829, 0,14829,14829, 0, 0, 0, 0, 0, 0, 0, 0, 0,14829,14829,14829,14829,14829,14829,14829, 14829, 0, 0, 0, 0,14829, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14829,14829,14829,14831,14831, 0,14831,14831, 14831,14831,14831,14831, 0,14831,14831, 0, 0, 0, 0, 0, 0, 0, 0, 0,14831,14831,14831,14831, 14831,14831,14831, 0, 0, 0, 0, 0,14831, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14831, 0, 0, 0, 0, 0,14831,14831,14831, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14831,14832,14832, 0, 14832,14832,14832,14832,14832,14832, 0,14832,14832, 0, 0, 0, 0, 0, 0, 0, 0, 0,14832,14832, 14832,14832,14832,14832,14832, 0, 0, 0, 0, 0, 14832, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14832,14832,14832, 14833,14833, 0,14833,14833,14833,14833,14833,14833, 0, 14833,14833, 0, 0, 0, 0, 0, 0, 0, 0, 0,14833,14833,14833,14833,14833,14833,14833,14833, 0, 0, 0, 0,14833, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14833,14833,14833,14835,14835, 0,14835,14835,14835,14835, 14835,14835, 0,14835,14835, 0, 0, 0, 0, 0, 0, 0, 0, 0,14835,14835,14835,14835,14835,14835, 14835, 0, 0, 0, 0, 0,14835, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14835,14835,14835,14836,14836, 0,14836, 14836,14836,14836,14836,14836, 0,14836,14836, 0, 0, 0, 0, 0, 0, 0, 0, 0,14836,14836,14836, 14836,14836,14836,14836,14836, 0, 0, 0, 0,14836, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14836,14836,14836,14839, 14839, 0,14839,14839,14839,14839,14839,14839, 0,14839, 14839, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14839,14839,14839,14839,14839,14839,14839, 0, 0, 0, 0, 0,14839, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14839, 14839,14839,14840,14840, 0,14840,14840,14840,14840,14840, 14840, 0,14840,14840, 0, 0, 0, 0, 0, 0, 0, 0, 0,14840,14840,14840,14840,14840,14840,14840, 0, 0, 0, 0, 0,14840, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14840, 0, 0, 0, 0,14840,14840,14840, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14840,14841,14841, 0,14841,14841, 14841,14841,14841,14841, 0,14841,14841, 0, 0, 0, 0, 0, 0, 0, 0, 0,14841,14841,14841,14841, 14841,14841,14841,14841, 0, 0, 0, 0,14841, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14841,14841,14841,14844,14844, 0,14844,14844,14844,14844,14844,14844, 0,14844,14844, 0, 0, 0, 0, 0, 0, 0, 0, 0,14844, 14844,14844,14844,14844,14844,14844, 0, 0, 0, 0, 0,14844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14844,14844, 14844,14845,14845, 0,14845,14845,14845,14845,14845,14845, 0,14845,14845, 0, 0, 0, 0, 0, 0, 0, 0, 0,14845,14845,14845,14845,14845,14845,14845,14845, 0, 0, 0, 0,14845, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14845,14845,14845,14847,14847, 0,14847,14847,14847, 14847,14847,14847, 0,14847,14847, 0, 0, 0, 0, 0, 0, 0, 0, 0,14847,14847,14847,14847,14847, 14847,14847, 0, 0, 0, 0, 0,14847, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14847,14847,14847,14848,14848, 0, 14848,14848,14848,14848,14848,14848, 0,14848,14848, 0, 0, 0, 0, 0, 0, 0, 0, 0,14848,14848, 14848,14848,14848,14848,14848,14848, 0, 0, 0, 0, 14848, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14848,14848,14848, 14849,14849, 0,14849,14849,14849,14849,14849,14849, 0, 14849,14849, 0, 0, 0, 0, 0, 0, 0, 0, 0,14849,14849,14849,14849,14849,14849,14849, 0, 0, 0, 0, 0,14849,14849, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14849,14849,14849, 0, 0, 0, 0, 0, 0, 0, 14849,14850,14850, 0,14850,14850,14850,14850,14850,14850, 0,14850,14850, 0,14850,14850,14850,14850,14850,14850, 14850,14850,14850,14850,14850,14850,14850,14850,14850, 0, 0, 0, 0, 0,14850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14850,14850,14850,14851,14851, 0,14851,14851,14851, 14851,14851,14851, 0,14851,14851, 0, 0, 0, 0, 0, 0, 0, 0, 0,14851,14851,14851,14851,14851, 14851,14851, 0, 0, 0, 0, 0,14851, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14851,14851,14851,14852,14852, 0, 14852,14852,14852,14852,14852,14852, 0,14852,14852, 0, 0, 0, 0, 0, 0, 0, 0, 0,14852,14852, 14852,14852,14852,14852,14852, 0, 0, 0, 0, 0, 14852,14852, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14852,14852,14852, 0, 0, 0, 0, 0, 0, 0,14852,14855,14855, 0,14855,14855,14855,14855,14855,14855, 0,14855,14855, 0, 0, 0, 0, 0, 0, 0, 0, 0,14855, 14855,14855,14855,14855,14855,14855, 0, 0, 0, 0, 0,14855, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14855,14855, 14855,14856,14856, 0,14856,14856,14856,14856,14856,14856, 0,14856,14856, 0, 0, 0, 0, 0, 0, 0, 0, 0,14856,14856,14856,14856,14856,14856,14856,14856, 0, 0, 0, 0,14856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14856,14856,14856,14860,14860, 0,14860,14860,14860, 14860,14860,14860, 0,14860,14860, 0, 0, 0, 0, 0, 0, 0, 0, 0,14860,14860,14860,14860,14860, 14860,14860, 0, 0, 0, 0, 0,14860, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14860,14860,14860,14861,14861, 0, 14861,14861,14861,14861,14861,14861, 0,14861,14861, 0, 0, 0, 0, 0, 0, 0, 0, 0,14861,14861, 14861,14861,14861,14861,14861,14861, 0, 0, 0, 0, 14861, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14861,14861,14861, 14865,14865, 0,14865,14865,14865,14865,14865,14865, 0, 14865,14865, 0, 0, 0, 0, 0, 0, 0, 0, 0,14865,14865,14865,14865,14865,14865,14865, 0, 0, 0, 0, 0,14865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14865,14865,14865,14866,14866, 0,14866,14866,14866,14866, 14866,14866, 0,14866,14866, 0, 0, 0, 0, 0, 0, 0, 0, 0,14866,14866,14866,14866,14866,14866, 14866,14866, 0, 0, 0, 0,14866, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14866,14866,14866,14869,14869, 0,14869, 14869,14869,14869,14869,14869, 0,14869,14869, 0, 0, 0, 0, 0, 0, 0, 0, 0,14869,14869,14869, 14869,14869,14869,14869, 0, 0, 0, 0, 0,14869, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14869,14869,14869,14870, 14870, 0,14870,14870,14870,14870,14870,14870, 0,14870, 14870, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14870,14870,14870,14870,14870,14870,14870,14870, 0, 0, 0, 0,14870, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14870, 14870,14870,14872,14872, 0,14872,14872,14872,14872,14872, 14872, 0,14872,14872, 0, 0, 0, 0, 0, 0, 0, 0, 0,14872,14872,14872,14872,14872,14872,14872, 0, 0, 0, 0, 0,14872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14872, 0, 0, 0, 0, 0,14872,14872,14872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14872,14873,14873, 0,14873,14873,14873, 14873,14873,14873, 0,14873,14873, 0, 0, 0, 0, 0, 0, 0, 0, 0,14873,14873,14873,14873,14873, 14873,14873, 0, 0, 0, 0, 0,14873, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14873,14873,14873,14874,14874, 0, 14874,14874,14874,14874,14874,14874, 0,14874,14874, 0, 0, 0, 0, 0, 0, 0, 0, 0,14874,14874, 14874,14874,14874,14874,14874,14874, 0, 0, 0, 0, 14874, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14874,14874,14874, 14875,14875, 0,14875,14875,14875,14875,14875,14875, 0, 14875,14875, 0, 0, 0, 0, 0, 0, 0, 0, 0,14875,14875,14875,14875,14875,14875,14875, 0, 0, 0, 0, 0,14875, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14875,14875,14875,14876,14876, 0,14876,14876,14876,14876, 14876,14876, 0,14876,14876, 0, 0, 0, 0, 0, 0, 0, 0, 0,14876,14876,14876,14876,14876,14876, 14876,14876, 0, 0, 0, 0,14876, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14876,14876,14876,14880,14880, 0,14880, 14880,14880,14880,14880,14880, 0,14880,14880, 0, 0, 0, 0, 0, 0, 0, 0, 0,14880,14880,14880, 14880,14880,14880,14880, 0, 0, 0, 0, 0,14880, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14880,14880,14880,14881, 14881, 0,14881,14881,14881,14881,14881,14881, 0,14881, 14881, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14881,14881,14881,14881,14881,14881,14881,14881, 0, 0, 0, 0,14881, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14881, 14881,14881,14884,14884, 0,14884,14884,14884,14884,14884, 14884, 0,14884,14884, 0, 0, 0, 0, 0, 0, 0, 0, 0,14884,14884,14884,14884,14884,14884,14884, 0, 0, 0, 0, 0,14884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14884,14884,14884,14885,14885, 0,14885,14885, 14885,14885,14885,14885, 0,14885,14885, 0, 0, 0, 0, 0, 0, 0, 0, 0,14885,14885,14885,14885, 14885,14885,14885,14885, 0, 0, 0, 0,14885, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14885,14885,14885,14887,14887, 0,14887,14887,14887,14887,14887,14887, 0,14887,14887, 0, 0, 0, 0, 0, 0, 0, 0, 0,14887, 14887,14887,14887,14887,14887,14887, 0, 0, 0, 0, 0,14887, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14887, 0, 0, 0, 0, 0,14887,14887, 14887, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14887, 14888,14888, 0,14888,14888,14888,14888,14888,14888, 0, 14888,14888, 0, 0, 0, 0, 0, 0, 0, 0, 0,14888,14888,14888,14888,14888,14888,14888, 0, 0, 0, 0, 0,14888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14888,14888,14888,14889,14889, 0,14889,14889,14889,14889, 14889,14889, 0,14889,14889, 0, 0, 0, 0, 0, 0, 0, 0, 0,14889,14889,14889,14889,14889,14889, 14889,14889, 0, 0, 0, 0,14889, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14889,14889,14889,14890,14890, 0,14890, 14890,14890,14890,14890,14890, 0,14890,14890, 0, 0, 0, 0, 0, 0, 0, 0, 0,14890,14890,14890, 14890,14890,14890,14890, 0, 0, 0, 0, 0,14890, 0, 0, 0, 0, 0, 0, 0,14890, 0, 0, 0, 0, 0, 0, 0, 0,14890,14890,14890,14891, 14891, 0,14891,14891,14891,14891,14891,14891, 0,14891, 14891, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14891,14891,14891,14891,14891,14891,14891, 0, 0, 0, 0, 0,14891, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14891, 14891,14891,14892,14892, 0,14892,14892,14892,14892,14892, 14892, 0,14892,14892, 0, 0, 0, 0, 0, 0, 0, 0, 0,14892,14892,14892,14892,14892,14892,14892, 14892, 0, 0, 0, 0,14892, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14892,14892,14892,14896,14896, 0,14896,14896, 14896,14896,14896,14896, 0,14896,14896, 0, 0, 0, 0, 0, 0, 0, 0, 0,14896,14896,14896,14896, 14896,14896,14896, 0, 0, 0, 0, 0,14896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14896,14896,14896,14897,14897, 0,14897,14897,14897,14897,14897,14897, 0,14897,14897, 0, 0, 0, 0, 0, 0, 0, 0, 0,14897, 14897,14897,14897,14897,14897,14897,14897, 0, 0, 0, 0,14897, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14897,14897, 14897,14901,14901, 0,14901,14901,14901,14901,14901,14901, 0,14901,14901, 0, 0, 0, 0, 0, 0, 0, 0, 0,14901,14901,14901,14901,14901,14901,14901, 0, 0, 0, 0, 0,14901, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14901,14901,14901,14902,14902, 0,14902,14902,14902, 14902,14902,14902, 0,14902,14902, 0, 0, 0, 0, 0, 0, 0, 0, 0,14902,14902,14902,14902,14902, 14902,14902,14902, 0, 0, 0, 0,14902, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14902,14902,14902,14906,14906, 0, 14906,14906,14906,14906,14906,14906, 0,14906,14906, 0, 0, 0, 0, 0, 0, 0, 0, 0,14906,14906, 14906,14906,14906,14906,14906, 0, 0, 0, 0, 0, 14906, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14906,14906,14906, 14907,14907, 0,14907,14907,14907,14907,14907,14907, 0, 14907,14907, 0, 0, 0, 0, 0, 0, 0, 0, 0,14907,14907,14907,14907,14907,14907,14907,14907, 0, 0, 0, 0,14907, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14907,14907,14907,14910,14910, 0,14910,14910,14910,14910, 14910,14910, 0,14910,14910, 0, 0, 0, 0, 0, 0, 0, 0, 0,14910,14910,14910,14910,14910,14910, 14910, 0, 0, 0, 0, 0,14910, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14910,14910,14910,14911,14911, 0,14911, 14911,14911,14911,14911,14911, 0,14911,14911, 0, 0, 0, 0, 0, 0, 0, 0, 0,14911,14911,14911, 14911,14911,14911,14911,14911, 0, 0, 0, 0,14911, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14911,14911,14911,14913, 14913, 0,14913,14913,14913,14913,14913,14913, 0,14913, 14913, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14913,14913,14913,14913,14913,14913,14913, 0, 0, 0, 0, 0,14913, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14913, 0, 0, 0, 0, 0,14913, 14913,14913, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14913,14914,14914, 0,14914,14914,14914,14914,14914,14914, 0,14914,14914, 0, 0, 0, 0, 0, 0, 0, 0, 0,14914,14914,14914,14914,14914,14914,14914, 0, 0, 0, 0, 0,14914, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14914,14914,14914,14915,14915, 0,14915,14915,14915, 14915,14915,14915, 0,14915,14915, 0, 0, 0, 0, 0, 0, 0, 0, 0,14915,14915,14915,14915,14915, 14915,14915,14915, 0, 0, 0, 0,14915, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14915,14915,14915,14916,14916, 0, 14916,14916,14916,14916,14916,14916, 0,14916,14916, 0, 0, 0, 0, 0, 0, 0, 0, 0,14916,14916, 14916,14916,14916,14916,14916, 0, 0, 0, 0, 0, 14916, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14916,14916,14916, 14917,14917, 0,14917,14917,14917,14917,14917,14917, 0, 14917,14917, 0, 0, 0, 0, 0, 0, 0, 0, 0,14917,14917,14917,14917,14917,14917,14917,14917, 0, 0, 0, 0,14917, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14917,14917,14917,14920,14920, 0,14920,14920,14920,14920, 14920,14920, 0,14920,14920, 0, 0, 0, 0, 0, 0, 0, 0, 0,14920,14920,14920,14920,14920,14920, 14920, 0, 0, 0, 0, 0,14920, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14920,14920,14920,14921,14921, 0,14921, 14921,14921,14921,14921,14921, 0,14921,14921, 0, 0, 0, 0, 0, 0, 0, 0, 0,14921,14921,14921, 14921,14921,14921,14921,14921, 0, 0, 0, 0,14921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14921,14921,14921,14923, 14923, 0,14923,14923,14923,14923,14923,14923, 0,14923, 14923, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14923,14923,14923,14923,14923,14923,14923, 0, 0, 0, 0, 0,14923, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14923, 0, 0, 0, 0, 0,14923, 14923,14923, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14923,14924,14924, 0,14924,14924,14924,14924,14924,14924, 0,14924,14924, 0, 0, 0, 0, 0, 0, 0, 0, 0,14924,14924,14924,14924,14924,14924,14924, 0, 0, 0, 0, 0,14924, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14924,14924,14924,14925,14925, 0,14925,14925,14925, 14925,14925,14925, 0,14925,14925, 0, 0, 0, 0, 0, 0, 0, 0, 0,14925,14925,14925,14925,14925, 14925,14925,14925, 0, 0, 0, 0,14925, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14925,14925,14925,14926,14926, 0, 14926,14926,14926,14926,14926,14926, 0,14926,14926, 0, 0, 0, 0, 0, 0, 0, 0, 0,14926,14926, 14926,14926,14926,14926,14926, 0, 0, 0, 0, 0, 14926, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14926,14926,14926, 14927,14927, 0,14927,14927,14927,14927,14927,14927, 0, 14927,14927, 0, 0, 0, 0, 0, 0, 0, 0, 0,14927,14927,14927,14927,14927,14927,14927,14927, 0, 0, 0, 0,14927, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14927,14927,14927,14934,14934,14934,14934,14934,14934,14934, 14934,14934,14934, 0, 0, 0, 0, 0, 0,14934, 14934,14934,14934,14934,14934, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14934,14934,14934,14934,14934, 14934,14935,14935,14935,14935,14935,14935,14935,14935,14935, 14935, 0, 0, 0, 0, 0, 0,14935,14935,14935, 14935,14935,14935, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14935,14935,14935,14935,14935,14935,14937, 0, 0, 0, 0, 0, 0, 0, 0,14937,14937, 14937,14937,14937,14937,14937,14937,14937, 0, 0, 0, 0, 0, 0, 0,14937,14937,14937,14937,14937,14937, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14937,14937,14937,14937,14937,14937,14940,14940,14940,14940, 14940,14940,14940,14940,14940,14940, 0, 0, 0, 0, 0, 0,14940,14940,14940,14940,14940,14940, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14940,14940, 14940,14940,14940,14940,14942,14942,14942,14942,14942,14942, 14942,14942,14942, 0, 0, 0, 0, 0, 0, 0, 14942,14942,14942,14942,14942,14942, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14942,14942,14942,14942, 14942,14942,14947,14947,14947,14947,14947,14947,14947,14947, 14947,14947, 0, 0, 0, 0, 0, 0,14947,14947, 14947,14947,14947,14947, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14947,14947,14947,14947,14947,14947, 14949,14949,14949,14949,14949,14949,14949,14949,14949, 0, 0, 0, 0, 0, 0, 0,14949,14949,14949,14949, 14949,14949, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14949,14949,14949,14949,14949,14949,14952,14952, 14952,14952,14952,14952,14952,14952,14952, 0, 0, 0, 0, 0, 0, 0,14952,14952,14952,14952,14952,14952, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14952,14952,14952,14952,14952,14952,14953,14953,14953,14953, 14953,14953,14953,14953,14953,14953, 0, 0, 0, 0, 0, 0,14953,14953,14953,14953,14953,14953, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14953,14953, 14953,14953,14953,14953,14955,14955,14955,14955,14955,14955, 14955,14955,14955, 0, 0, 0, 0, 0, 0, 0, 14955,14955,14955,14955,14955,14955, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14955,14955,14955,14955, 14955,14955,14958,14958,14958,14958,14958,14958,14958,14958, 14958, 0, 0, 0, 0, 0, 0, 0,14958,14958, 14958,14958,14958,14958, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14958,14958,14958,14958,14958,14958, 14959, 0,14959,14959,14959,14959,14959,14959,14959,14959, 14959,14959, 0, 0, 0, 0, 0, 0,14959,14959, 14959,14959,14959,14959, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14959,14959,14959,14959,14959,14959, 14962,14962,14962,14962,14962,14962,14962,14962,14962,14962, 0, 0, 0, 0, 0, 0,14962,14962,14962,14962, 14962,14962, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14962,14962,14962,14962,14962,14962,14964,14964, 14964,14964,14964,14964,14964,14964,14964, 0, 0, 0, 0, 0, 0, 0,14964,14964,14964,14964,14964,14964, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14964,14964,14964,14964,14964,14964,14967,14967,14967,14967, 14967,14967,14967,14967,14967, 0, 0, 0, 0, 0, 0, 0,14967,14967,14967,14967,14967,14967, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14967,14967, 14967,14967,14967,14967,14968,14968,14968,14968,14968,14968, 14968,14968,14968,14968, 0, 0, 0, 0, 0, 0, 14968,14968,14968,14968,14968,14968, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14968,14968,14968,14968, 14968,14968,14971,14971,14971,14971,14971,14971,14971,14971, 14971,14971, 0, 0, 0, 0, 0, 0,14971,14971, 14971,14971,14971,14971, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14971,14971,14971,14971,14971,14971, 14973,14973,14973,14973,14973,14973,14973,14973,14973, 0, 0, 0, 0, 0, 0, 0,14973,14973,14973,14973, 14973,14973, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14973,14973,14973,14973,14973,14973,14976,14976, 14976,14976,14976,14976,14976,14976,14976, 0, 0, 0, 0, 0, 0, 0,14976,14976,14976,14976,14976,14976, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14976,14976,14976,14976,14976,14976,14977,14977,14977,14977, 14977,14977,14977,14977,14977,14977, 0, 0, 0, 0, 0, 0,14977,14977,14977,14977,14977,14977, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14977,14977, 14977,14977,14977,14977,14983,14983,14983,14983,14983,14983, 14983,14983,14983,14983, 0, 0, 0, 0, 0, 0, 14983,14983,14983,14983,14983,14983, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14983,14983,14983,14983, 14983,14983,14984,14984,14984,14984,14984,14984,14984,14984, 14984, 0, 0, 0, 0, 0, 0, 0,14984,14984, 14984,14984,14984,14984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14984,14984,14984,14984,14984,14984, 14989,14989,14989,14989,14989,14989,14989,14989,14989,14989, 0, 0, 0, 0, 0, 0,14989,14989,14989,14989, 14989,14989, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14989,14989,14989,14989,14989,14989,14993,14993, 14993,14993,14993,14993,14993,14993,14993,14993, 0, 0, 0, 0, 0, 0,14993,14993,14993,14993,14993,14993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14993,14993,14993,14993,14993,14993,14998,14998, 0,14998, 14998,14998,14998,14998,14998, 0,14998,14998, 0, 0, 0, 0, 0, 0, 0, 0, 0,14998,14998,14998, 14998,14998,14998,14998, 0, 0, 0, 0, 0,14998, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14998,14998,14998,14999, 14999, 0,14999,14999,14999,14999,14999,14999, 0,14999, 14999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14999,14999,14999,14999,14999,14999,14999,14999, 0, 0, 0, 0,14999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14999, 14999,14999,15003,15003, 0,15003,15003,15003,15003,15003, 15003, 0,15003,15003, 0, 0, 0, 0, 0, 0, 0, 0, 0,15003,15003,15003,15003,15003,15003,15003, 0, 0, 0, 0, 0,15003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15003,15003,15003,15004,15004, 0,15004,15004, 15004,15004,15004,15004, 0,15004,15004, 0, 0, 0, 0, 0, 0, 0, 0, 0,15004,15004,15004,15004, 15004,15004,15004,15004, 0, 0, 0, 0,15004, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15004,15004,15004,15018,15018, 0,15018,15018,15018,15018,15018,15018, 0,15018,15018, 0, 0, 0, 0, 0, 0, 0, 0, 0,15018, 15018,15018,15018,15018,15018,15018, 0, 0, 0, 0, 0,15018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15018,15018, 15018,15019,15019, 0,15019,15019,15019,15019,15019,15019, 0,15019,15019, 0, 0, 0, 0, 0, 0, 0, 0, 0,15019,15019,15019,15019,15019,15019,15019,15019, 0, 0, 0, 0,15019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15019,15019,15019,15033,15033, 0,15033,15033,15033, 15033,15033,15033, 0,15033,15033, 0, 0, 0, 0, 0, 0, 0, 0, 0,15033,15033,15033,15033,15033, 15033,15033, 0, 0, 0, 0, 0,15033, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15033,15033,15033,15034,15034, 0, 15034,15034,15034,15034,15034,15034, 0,15034,15034, 0, 0, 0, 0, 0, 0, 0, 0, 0,15034,15034, 15034,15034,15034,15034,15034,15034, 0, 0, 0, 0, 15034, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15034,15034,15034, 15074, 0, 0, 0,15074, 0,15074, 0, 0,15074, 15074,15074,15074,15074,15074,15074,15074,15074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15074, 0, 0,15074, 15080,15080, 0,15080,15080,15080,15080,15080,15080, 0, 15080,15080, 0, 0, 0, 0, 0, 0, 0, 0, 0,15080,15080,15080,15080,15080,15080,15080, 0, 0, 0, 0, 0,15080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15080,15080,15080,15083,15083, 0,15083,15083,15083,15083, 15083,15083, 0,15083,15083, 0, 0, 0, 0, 0, 0, 0, 0, 0,15083,15083,15083,15083,15083,15083, 15083, 0, 0, 0, 0, 0,15083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15083,15083,15083, 0, 0, 0,15083, 15084,15084, 0,15084,15084,15084,15084,15084,15084, 0, 15084,15084, 0, 0, 0, 0, 0, 0, 0, 0, 0,15084,15084,15084,15084,15084,15084,15084,15084, 0, 0, 0, 0,15084, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15084,15084,15084, 0, 0, 0,15084,15094,15094, 0, 15094,15094,15094,15094,15094,15094, 0,15094,15094, 0, 0, 0, 0, 0, 0, 0, 0, 0,15094,15094, 15094,15094,15094,15094,15094, 0, 0, 0, 0, 0, 15094, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15094,15094,15094, 0, 0, 0,15094,15095,15095, 0,15095,15095,15095, 15095,15095,15095, 0,15095,15095, 0, 0, 0, 0, 0, 0, 0, 0, 0,15095,15095,15095,15095,15095, 15095,15095,15095, 0, 0, 0, 0,15095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15095,15095,15095, 0, 0, 0, 15095,15104,15104, 0,15104,15104,15104,15104,15104,15104, 0,15104,15104, 0, 0, 0, 0, 0, 0, 0, 0, 0,15104,15104,15104,15104,15104,15104,15104, 0, 0, 0, 0, 0,15104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15104,15104,15104, 0, 0, 0,15104,15105,15105, 0,15105,15105,15105,15105,15105,15105, 0,15105,15105, 0, 0, 0, 0, 0, 0, 0, 0, 0,15105, 15105,15105,15105,15105,15105,15105,15105, 0, 0, 0, 0,15105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15105,15105, 15105, 0, 0, 0,15105,15113,15113, 0,15113,15113, 15113,15113,15113,15113, 0,15113,15113, 0, 0, 0, 0, 0, 0, 0, 0, 0,15113,15113,15113,15113, 15113,15113,15113, 0, 0, 0, 0, 0,15113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15113,15113,15113, 0, 0, 0,15113,15114,15114, 0,15114,15114,15114,15114,15114, 15114, 0,15114,15114, 0, 0, 0, 0, 0, 0, 0, 0, 0,15114,15114,15114,15114,15114,15114,15114, 15114, 0, 0, 0, 0,15114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15114,15114,15114, 0, 0, 0,15114,15121, 15121, 0,15121,15121,15121,15121,15121,15121, 0,15121, 15121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15121,15121,15121,15121,15121,15121,15121, 0, 0, 0, 0, 0,15121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15121, 15121,15121, 0, 0, 0,15121,15122,15122, 0,15122, 15122,15122,15122,15122,15122, 0,15122,15122, 0, 0, 0, 0, 0, 0, 0, 0, 0,15122,15122,15122, 15122,15122,15122,15122,15122, 0, 0, 0, 0,15122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15122,15122,15122, 0, 0, 0,15122,15127,15127, 0,15127,15127,15127,15127, 15127,15127, 0,15127,15127, 0, 0, 0, 0, 0, 0, 0, 0, 0,15127,15127,15127,15127,15127,15127, 15127, 0, 0, 0, 0, 0,15127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15127,15127,15127, 0, 0, 0,15127, 15128,15128, 0,15128,15128,15128,15128,15128,15128, 0, 15128,15128, 0, 0, 0, 0, 0, 0, 0, 0, 0,15128,15128,15128,15128,15128,15128,15128,15128, 0, 0, 0, 0,15128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15128,15128,15128, 0, 0, 0,15128,15131,15131, 0, 15131,15131,15131,15131,15131,15131, 0,15131,15131, 0, 0, 0, 0, 0, 0, 0, 0, 0,15131,15131, 15131,15131,15131,15131,15131, 0, 0, 0, 0, 0, 15131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15131, 0, 0, 0, 0, 0,15131,15131,15131, 0, 0, 0,15131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15131,15132, 15132, 0,15132,15132,15132,15132,15132,15132, 0,15132, 15132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15132,15132,15132,15132,15132,15132,15132, 0, 0, 0, 0, 0,15132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15132, 15132,15132, 0, 0, 0,15132,15133,15133, 0,15133, 15133,15133,15133,15133,15133, 0,15133,15133, 0, 0, 0, 0, 0, 0, 0, 0, 0,15133,15133,15133, 15133,15133,15133,15133,15133, 0, 0, 0, 0,15133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15133,15133,15133, 0, 0, 0,15133,15137,15137, 0,15137,15137,15137,15137, 15137,15137, 0,15137,15137, 0, 0, 0, 0, 0, 0, 0, 0, 0,15137,15137,15137,15137,15137,15137, 15137, 0, 0, 0, 0, 0,15137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15137,15137,15137, 0, 0, 0,15137, 15138,15138, 0,15138,15138,15138,15138,15138,15138, 0, 15138,15138, 0, 0, 0, 0, 0, 0, 0, 0, 0,15138,15138,15138,15138,15138,15138,15138,15138, 0, 0, 0, 0,15138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15138,15138,15138, 0, 0, 0,15138,15146,15146, 0, 15146,15146,15146,15146,15146,15146, 0,15146,15146, 0, 0, 0, 0, 0, 0, 0, 0, 0,15146,15146, 15146,15146,15146,15146,15146, 0, 0, 0, 0, 0, 15146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15146,15146,15146, 0, 0, 0,15146,15147,15147, 0,15147,15147,15147, 15147,15147,15147, 0,15147,15147, 0, 0, 0, 0, 0, 0, 0, 0, 0,15147,15147,15147,15147,15147, 15147,15147,15147, 0, 0, 0, 0,15147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15147,15147,15147, 0, 0, 0, 15147,15152,15152, 0,15152,15152,15152,15152,15152,15152, 0,15152,15152, 0, 0, 0, 0, 0, 0, 0, 0, 0,15152,15152,15152,15152,15152,15152,15152, 0, 0, 0, 0, 0,15152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15152,15152,15152, 0, 0, 0,15152,15153,15153, 0,15153,15153,15153,15153,15153,15153, 0,15153,15153, 0, 0, 0, 0, 0, 0, 0, 0, 0,15153, 15153,15153,15153,15153,15153,15153,15153, 0, 0, 0, 0,15153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15153,15153, 15153, 0, 0, 0,15153,15156,15156, 0,15156,15156, 15156,15156,15156,15156, 0,15156,15156, 0, 0, 0, 0, 0, 0, 0, 0, 0,15156,15156,15156,15156, 15156,15156,15156, 0, 0, 0, 0, 0,15156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15156, 0, 0, 0, 0, 0,15156,15156,15156, 0, 0, 0,15156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15156,15157,15157, 0, 15157,15157,15157,15157,15157,15157, 0,15157,15157, 0, 0, 0, 0, 0, 0, 0, 0, 0,15157,15157, 15157,15157,15157,15157,15157, 0, 0, 0, 0, 0, 15157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15157,15157,15157, 0, 0, 0,15157,15158,15158, 0,15158,15158,15158, 15158,15158,15158, 0,15158,15158, 0, 0, 0, 0, 0, 0, 0, 0, 0,15158,15158,15158,15158,15158, 15158,15158,15158, 0, 0, 0, 0,15158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15158,15158,15158, 0, 0, 0, 15158,15167, 0, 0, 0, 0, 0, 0, 0, 0, 15167,15167,15167,15167,15167,15167,15167,15167,15167, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15167, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15167,15169,15169, 0,15169,15169, 15169,15169,15169,15169, 0,15169,15169, 0, 0, 0, 0, 0, 0, 0, 0, 0,15169,15169,15169,15169, 15169,15169,15169, 0, 0, 0, 0, 0,15169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15169,15169,15169, 0, 0, 0,15169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15169,15171,15171, 0,15171,15171,15171,15171,15171,15171, 0,15171,15171, 0, 0, 0, 0, 0, 0, 0, 0, 0,15171, 15171,15171,15171,15171,15171,15171, 0, 0, 0, 0, 0,15171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15171,15171, 15171, 0, 0, 0,15171,15172, 0, 0, 0, 0, 0, 0, 0, 0, 0,15172,15172,15172,15172,15172, 15172,15172,15172,15172, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15172, 0, 0, 0, 0, 0, 0, 0, 0,15172,15187,15187, 0,15187, 15187,15187,15187, 0,15187,15187,15187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15187,15187,15187, 15187,15187,15187,15187, 0, 0, 0, 0, 0,15187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15187,15187,15187,15187, 15188,15188, 0,15188,15188,15188,15188, 0,15188,15188, 15188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15188,15188,15188,15188,15188,15188,15188,15188, 0, 0, 0, 0,15188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15188,15188,15188,15188,15192,15192,15192,15192,15192,15192, 15192,15192,15192, 0, 0, 0, 0, 0, 0, 0, 15192,15192,15192,15192,15192,15192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15192,15192,15192,15192, 15192,15192,15236,15236, 0, 0, 0, 0,15236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15236, 0, 0, 0, 0, 0, 0, 15236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15236, 0,15236, 0,15236, 0, 0,15236, 0, 0, 0, 0,15236, 0, 0,15236, 0,15236, 0,15236, 0,15236,15236,15236,15237,15237, 0, 0, 0, 0,15237, 0, 0, 0,15237,15237, 15237,15237,15237,15237,15237,15237,15237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15237, 0, 0, 0, 0, 0, 0,15237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15237, 0,15237, 0,15237, 0, 0,15237, 0, 0, 0, 0,15237, 0, 0,15237, 0,15237, 0,15237, 0,15237,15237,15237,15238,15238, 0, 0, 0, 0, 0,15238, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15238, 0,15238, 0,15238, 0, 0,15238, 0, 0, 0, 0,15238, 0, 0, 15238, 0,15238, 0,15238, 0,15238,15238,15238,15241, 0, 0, 0, 0, 0, 0,15241, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15241, 0,15241, 0,15241, 0, 0,15241, 0, 0, 0, 0,15241, 0, 0,15241, 0,15241, 0,15241, 0,15241,15241,15241,15242, 0, 0, 0, 0, 0, 0,15242, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15242,15242,15242, 0,15242, 0, 0,15242, 0, 0, 0, 0,15242, 0, 0, 15242, 0,15242, 0,15242, 0,15242,15242,15242,15244, 0, 0, 0, 0, 0, 0,15244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15244, 0,15244, 0,15244, 0, 0,15244, 0, 0, 0, 0,15244,15244, 0,15244, 0,15244, 0,15244, 0,15244,15244,15244,15245, 0, 0, 0, 0, 0, 0,15245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15245, 0,15245, 0,15245, 0, 0,15245,15245, 0, 0, 0,15245, 0, 0, 15245, 0,15245, 0,15245, 0,15245,15245,15245,15246, 0, 0, 0, 0, 0, 0,15246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15246, 0,15246, 0,15246, 0, 0,15246, 0, 0, 0, 0,15246,15246, 0,15246, 0,15246, 0,15246, 0,15246,15246,15246,15247, 0, 0, 0, 0, 0, 0,15247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15247, 0,15247, 0,15247, 0, 0,15247, 0, 0, 0, 0,15247, 0, 0, 15247, 0,15247, 0,15247,15247,15247,15247,15247,15249, 15249,15249,15249,15249,15249,15249,15249,15249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15249, 0, 0, 0, 0, 0, 0, 0,15249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15249,15255,15255, 0, 0, 0, 0,15255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15255, 0, 0, 0, 0, 0, 0,15255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15255, 0, 15255, 0,15255, 0, 0,15255, 0, 0, 0, 0, 15255, 0, 0,15255, 0,15255, 0,15255, 0,15255, 15255,15255,15256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15256, 0, 0, 0, 0, 0, 0,15256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15256, 0,15256, 0,15256, 0, 0,15256, 0, 0, 0, 0,15256, 0, 0, 15256, 0,15256, 0,15256, 0,15256,15256,15256,15257, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15257, 0, 0, 0, 0, 0, 0,15257, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15257, 0,15257, 0,15257, 0, 0,15257, 0, 0, 0, 0,15257, 0, 0,15257, 0,15257, 0,15257, 0,15257,15257,15257,15258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15258, 0, 0, 0, 0,15258, 0, 0, 0, 0, 0, 0,15258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15258, 0,15258, 0,15258, 0, 0,15258, 0, 0, 0, 0,15258, 0, 0,15258, 0,15258, 0,15258, 0, 15258,15258,15258,15259, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15259, 0, 0, 0, 0, 0, 0,15259, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15259, 0,15259, 0, 15259, 0, 0,15259, 0, 0, 0, 0,15259, 0, 0,15259, 0,15259, 0,15259, 0,15259,15259,15259, 15259,15260, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15260, 0, 0, 0, 0, 0, 0, 15260, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15260, 0,15260,15260,15260, 0, 0,15260, 0, 0, 0, 0,15260, 0, 0,15260, 0,15260, 0,15260, 0,15260,15260,15260,15261, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15261, 0, 0, 0, 0, 0, 0,15261, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15261, 0,15261, 0,15261, 0,15261,15261, 0, 0, 0, 0,15261, 0, 0,15261, 0,15261, 0, 15261, 0,15261,15261,15261,15262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15262, 0, 0, 0, 0, 0, 0,15262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15262, 0, 15262, 0,15262, 0, 0,15262, 0, 0, 0, 0, 15262, 0, 0,15262, 0,15262, 0,15262, 0,15262, 15262,15262,15263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15263, 0, 0, 0, 0, 0, 0,15263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15263, 0,15263, 0,15263, 0, 0,15263, 0, 0, 0, 0,15263, 0,15263, 15263, 0,15263, 0,15263, 0,15263,15263,15263,15264, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15264, 0, 0, 0, 0, 0, 0,15264, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15264, 0,15264, 0,15264, 0, 0,15264, 0, 0, 0, 0,15264, 0, 0,15264, 0,15264, 0,15264, 0,15264,15264,15264,15264,15265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15265, 0, 0, 0, 0, 0, 0,15265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15265, 0,15265, 0,15265, 0, 0,15265, 0, 0, 0, 0,15265, 0, 0,15265, 0,15265, 0,15265, 0,15265,15265,15265,15266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15266, 0, 0, 0, 0, 0, 0,15266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15266, 0,15266, 0,15266, 0, 0,15266, 0, 0, 0, 0,15266, 0,15266,15266, 0,15266, 0,15266, 0,15266,15266, 15266,15267, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15267, 0, 0, 0, 0, 0, 0, 15267, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15267, 0,15267, 0,15267, 0, 0,15267, 0, 0, 0, 0,15267, 0, 0,15267, 0,15267, 0,15267, 0,15267,15267,15267,15267,15268, 0,15268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15268, 0, 0, 0, 0, 0, 0, 15268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15268, 0,15268, 0,15268, 0, 0,15268, 0, 0, 0, 0,15268, 0, 0,15268, 0,15268, 0,15268, 0,15268,15268,15268,15269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15269, 0, 0, 0, 0, 0, 0,15269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15269, 0,15269, 0,15269, 0, 0,15269, 0, 0, 0, 0,15269, 0, 0,15269, 0,15269, 0, 15269, 0,15269,15269,15269,15270, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15270, 0, 0, 0, 0, 0, 0,15270, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15270, 0, 15270, 0,15270, 0, 0,15270, 0, 0, 0, 0, 15270, 0, 0,15270, 0,15270, 0,15270, 0,15270, 15270,15270,15271,15271,15271, 0, 0, 0,15271, 0, 15271,15271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15271, 0, 0, 0, 0, 0, 0, 15271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15271, 0,15271, 0,15271, 0, 0,15271, 0, 0, 0, 0,15271, 0, 0,15271, 0,15271, 0,15271, 0,15271,15271,15271,15272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15272, 0, 0, 0, 0, 0, 0,15272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15272, 0,15272, 0,15272, 0,15272,15272, 0, 0, 0, 0,15272, 0, 0,15272, 0,15272, 0, 15272, 0,15272,15272,15272,15273, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15273, 0, 0, 0, 0, 0, 0,15273, 0,15273, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15273, 0, 15273, 0,15273, 0, 0,15273, 0, 0, 0, 0, 15273, 0, 0,15273, 0,15273, 0,15273, 0,15273, 15273,15273,15274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15274, 0, 0, 0, 0, 0, 0,15274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15274, 0,15274, 0,15274, 0, 0,15274, 0, 0, 0, 0,15274,15274, 0, 15274, 0,15274, 0,15274, 0,15274,15274,15274,15275, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15275, 0, 0, 0, 0, 0, 0,15275, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15275, 0,15275, 0,15275, 0, 0,15275, 0, 0, 0, 0,15275,15275, 0,15275, 0,15275, 0,15275, 0,15275,15275,15275,15276, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15276, 0, 0, 0, 0, 0, 0,15276, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15276, 0,15276, 0,15276, 0, 0,15276, 0, 0, 0, 0,15276, 0, 0,15276, 0,15276, 0,15276, 0, 15276,15276,15276,15277, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15277, 0, 0, 0, 0, 0, 0,15277, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15277, 0,15277, 0, 15277, 0, 0,15277, 0, 0, 0, 0,15277,15277, 0,15277, 0,15277, 0,15277, 0,15277,15277,15277, 15278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15278, 0, 0, 0, 0, 0, 0,15278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15278, 0,15278,15278,15278, 0, 0, 15278, 0, 0, 0, 0,15278, 0, 0,15278, 0, 15278, 0,15278, 0,15278,15278,15278,15279, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15279, 0, 0, 0, 0, 0, 0,15279, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15279, 0,15279, 0,15279, 0,15279,15279, 0, 0, 0, 0,15279, 0, 0,15279, 0,15279, 0,15279, 15279,15279,15279,15279,15285,15285, 0, 0, 0, 0, 15285, 0, 0,15285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15285, 0, 0, 0, 0, 0, 0,15285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15285, 0,15285, 0, 15285, 0, 0,15285,15285, 0, 0, 0,15285, 0, 0,15285, 0,15285, 0,15285, 0,15285,15285,15285, 15296,15296, 0, 0, 0, 0,15296, 0, 0,15296, 15296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15296, 0, 0, 0, 0, 0, 0,15296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15296, 0,15296, 0,15296, 0, 0,15296, 0, 0, 0, 0,15296, 0, 0,15296, 0,15296, 0,15296, 0,15296,15296,15296,15297,15297,15297, 0, 0, 0,15297, 0, 0,15297, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15297, 0,15297, 0, 0, 0, 0,15297, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15297, 0, 15297, 0,15297, 0, 0,15297, 0, 0, 0, 0, 15297, 0, 0,15297, 0,15297, 0,15297, 0,15297, 15297,15297,15308,15308, 0,15308,15308,15308,15308,15308, 15308, 0,15308,15308, 0, 0, 0, 0, 0, 0, 0, 0, 0,15308,15308,15308,15308,15308,15308,15308, 0, 0, 0, 0, 0,15308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15308,15308,15308,15309,15309, 0,15309,15309, 15309,15309,15309,15309, 0,15309,15309, 0, 0, 0, 0, 0, 0, 0, 0, 0,15309,15309,15309,15309, 15309,15309,15309,15309, 0, 0, 0, 0,15309, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15309,15309,15309,15317,15317, 15317,15317,15317,15317,15317,15317,15317,15317, 0, 0, 0, 0, 0, 0,15317,15317,15317,15317,15317,15317, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15317,15317,15317,15317,15317,15317,15318,15318,15318,15318, 15318,15318,15318,15318,15318,15318, 0, 0, 0, 0, 0, 0,15318,15318,15318,15318,15318,15318, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15318,15318, 15318,15318,15318,15318,15320, 0, 0, 0, 0, 0, 0, 0, 0,15320,15320,15320,15320,15320,15320,15320, 15320,15320, 0, 0, 0, 0, 0, 0, 0,15320, 15320,15320,15320,15320,15320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15320,15320,15320,15320,15320, 15320,15323,15323,15323,15323,15323,15323,15323,15323,15323, 15323, 0, 0, 0, 0, 0, 0,15323,15323,15323, 15323,15323,15323, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15323,15323,15323,15323,15323,15323,15325, 15325,15325,15325,15325,15325,15325,15325,15325, 0, 0, 0, 0, 0, 0, 0,15325,15325,15325,15325,15325, 15325, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15325,15325,15325,15325,15325,15325,15330,15330,15330, 15330,15330,15330,15330,15330,15330,15330, 0, 0, 0, 0, 0, 0,15330,15330,15330,15330,15330,15330, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15330, 15330,15330,15330,15330,15330,15332,15332,15332,15332,15332, 15332,15332,15332,15332, 0, 0, 0, 0, 0, 0, 0,15332,15332,15332,15332,15332,15332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15332,15332,15332, 15332,15332,15332,15335,15335,15335,15335,15335,15335,15335, 15335,15335, 0, 0, 0, 0, 0, 0, 0,15335, 15335,15335,15335,15335,15335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15335,15335,15335,15335,15335, 15335,15336,15336,15336,15336,15336,15336,15336,15336,15336, 15336, 0, 0, 0, 0, 0, 0,15336,15336,15336, 15336,15336,15336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15336,15336,15336,15336,15336,15336,15338, 15338,15338,15338,15338,15338,15338,15338,15338, 0, 0, 0, 0, 0, 0, 0,15338,15338,15338,15338,15338, 15338, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15338,15338,15338,15338,15338,15338,15341,15341,15341, 15341,15341,15341,15341,15341,15341, 0, 0, 0, 0, 0, 0, 0,15341,15341,15341,15341,15341,15341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15341, 15341,15341,15341,15341,15341,15342, 0,15342,15342,15342, 15342,15342,15342,15342,15342,15342,15342, 0, 0, 0, 0, 0, 0,15342,15342,15342,15342,15342,15342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15342, 15342,15342,15342,15342,15342,15345,15345,15345,15345,15345, 15345,15345,15345,15345,15345, 0, 0, 0, 0, 0, 0,15345,15345,15345,15345,15345,15345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15345,15345,15345, 15345,15345,15345,15347,15347,15347,15347,15347,15347,15347, 15347,15347, 0, 0, 0, 0, 0, 0, 0,15347, 15347,15347,15347,15347,15347, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15347,15347,15347,15347,15347, 15347,15350,15350,15350,15350,15350,15350,15350,15350,15350, 0, 0, 0, 0, 0, 0, 0,15350,15350,15350, 15350,15350,15350, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15350,15350,15350,15350,15350,15350,15351, 15351,15351,15351,15351,15351,15351,15351,15351,15351, 0, 0, 0, 0, 0, 0,15351,15351,15351,15351,15351, 15351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15351,15351,15351,15351,15351,15351,15354,15354,15354, 15354,15354,15354,15354,15354,15354,15354, 0, 0, 0, 0, 0, 0,15354,15354,15354,15354,15354,15354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15354, 15354,15354,15354,15354,15354,15356,15356,15356,15356,15356, 15356,15356,15356,15356, 0, 0, 0, 0, 0, 0, 0,15356,15356,15356,15356,15356,15356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15356,15356,15356, 15356,15356,15356,15359,15359,15359,15359,15359,15359,15359, 15359,15359, 0, 0, 0, 0, 0, 0, 0,15359, 15359,15359,15359,15359,15359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15359,15359,15359,15359,15359, 15359,15360,15360,15360,15360,15360,15360,15360,15360,15360, 15360, 0, 0, 0, 0, 0, 0,15360,15360,15360, 15360,15360,15360, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15360,15360,15360,15360,15360,15360,15366, 15366,15366,15366,15366,15366,15366,15366,15366,15366, 0, 0, 0, 0, 0, 0,15366,15366,15366,15366,15366, 15366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15366,15366,15366,15366,15366,15366,15367,15367,15367, 15367,15367,15367,15367,15367,15367, 0, 0, 0, 0, 0, 0, 0,15367,15367,15367,15367,15367,15367, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15367, 15367,15367,15367,15367,15367,15372,15372,15372,15372,15372, 15372,15372,15372,15372,15372, 0, 0, 0, 0, 0, 0,15372,15372,15372,15372,15372,15372, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15372,15372,15372, 15372,15372,15372,15376,15376,15376,15376,15376,15376,15376, 15376,15376,15376, 0, 0, 0, 0, 0, 0,15376, 15376,15376,15376,15376,15376, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15376,15376,15376,15376,15376, 15376,15381,15381, 0,15381,15381,15381,15381,15381,15381, 0,15381,15381, 0, 0, 0, 0, 0, 0, 0, 0, 0,15381,15381,15381,15381,15381,15381,15381, 0, 0, 0, 0, 0,15381, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15381,15381,15381,15382,15382, 0,15382,15382,15382, 15382,15382,15382, 0,15382,15382, 0, 0, 0, 0, 0, 0, 0, 0, 0,15382,15382,15382,15382,15382, 15382,15382,15382, 0, 0, 0, 0,15382, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15382,15382,15382,15386,15386, 0, 15386,15386,15386,15386,15386,15386, 0,15386,15386, 0, 0, 0, 0, 0, 0, 0, 0, 0,15386,15386, 15386,15386,15386,15386,15386, 0, 0, 0, 0, 0, 15386, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15386,15386,15386, 15387,15387, 0,15387,15387,15387,15387,15387,15387, 0, 15387,15387, 0, 0, 0, 0, 0, 0, 0, 0, 0,15387,15387,15387,15387,15387,15387,15387,15387, 0, 0, 0, 0,15387, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15387,15387,15387,15401,15401, 0,15401,15401,15401,15401, 15401,15401, 0,15401,15401, 0, 0, 0, 0, 0, 0, 0, 0, 0,15401,15401,15401,15401,15401,15401, 15401, 0, 0, 0, 0, 0,15401, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15401,15401,15401,15402,15402, 0,15402, 15402,15402,15402,15402,15402, 0,15402,15402, 0, 0, 0, 0, 0, 0, 0, 0, 0,15402,15402,15402, 15402,15402,15402,15402,15402, 0, 0, 0, 0,15402, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15402,15402,15402,15416, 15416, 0,15416,15416,15416,15416,15416,15416, 0,15416, 15416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15416,15416,15416,15416,15416,15416,15416, 0, 0, 0, 0, 0,15416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15416, 15416,15416,15417,15417, 0,15417,15417,15417,15417,15417, 15417, 0,15417,15417, 0, 0, 0, 0, 0, 0, 0, 0, 0,15417,15417,15417,15417,15417,15417,15417, 15417, 0, 0, 0, 0,15417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15417,15417,15417,15437,15437, 0,15437,15437, 15437,15437,15437,15437,15437,15437,15437, 0, 0, 0, 0, 0, 0, 0, 0, 0,15437,15437,15437,15437, 15437,15437,15437, 0, 0, 0, 0, 0,15437, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15437,15437,15437,15437,15438, 15438, 0,15438,15438,15438,15438,15438,15438, 0,15438, 15438, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15438,15438,15438,15438,15438,15438,15438, 0, 0, 0, 0, 0,15438, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15438, 15438,15438,15439,15439, 0,15439,15439,15439,15439,15439, 15439, 0,15439,15439, 0, 0, 0, 0, 0, 0, 0, 0, 0,15439,15439,15439,15439,15439,15439,15439, 15439, 0, 0, 0, 0,15439, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15439,15439,15439,15443,15443, 0,15443,15443, 15443,15443,15443,15443, 0,15443,15443, 0, 0, 0, 0, 0, 0, 0, 0, 0,15443,15443,15443,15443, 15443,15443,15443, 0, 0, 0, 0, 0,15443, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15443,15443,15443,15444,15444, 0,15444,15444,15444,15444,15444,15444, 0,15444,15444, 0, 0, 0, 0, 0, 0, 0, 0, 0,15444, 15444,15444,15444,15444,15444,15444,15444, 0, 0, 0, 0,15444, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15444,15444, 15444,15445,15445, 0,15445,15445,15445,15445,15445,15445, 0,15445,15445, 0, 0, 0, 0, 0, 0, 0, 0, 0,15445,15445,15445,15445,15445,15445,15445, 0, 0, 0, 0, 0,15445, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15445,15445,15445,15446,15446, 0,15446,15446,15446, 15446,15446,15446, 0,15446,15446, 0, 0, 0, 0, 0, 0, 0, 0, 0,15446,15446,15446,15446,15446, 15446,15446,15446, 0, 0, 0, 0,15446, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15446,15446,15446,15447,15447, 0, 15447,15447,15447,15447,15447,15447, 0,15447,15447, 0, 0, 0, 0, 0, 0, 0, 0, 0,15447,15447, 15447,15447,15447,15447,15447, 0, 0, 0, 0, 0, 15447, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15447, 0, 0, 0, 0,15447,15447,15447, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15447, 15451,15451, 0,15451,15451,15451,15451,15451,15451, 0, 15451,15451, 0, 0, 0, 0, 0, 0, 0, 0, 0,15451,15451,15451,15451,15451,15451,15451, 0, 0, 0, 0, 0,15451, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15451,15451,15451,15452,15452, 0,15452,15452,15452,15452, 15452,15452, 0,15452,15452, 0, 0, 0, 0, 0, 0, 0, 0, 0,15452,15452,15452,15452,15452,15452, 15452,15452, 0, 0, 0, 0,15452, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15452,15452,15452,15455,15455, 0,15455, 15455,15455,15455,15455,15455, 0,15455,15455, 0, 0, 0, 0, 0, 0, 0, 0, 0,15455,15455,15455, 15455,15455,15455,15455, 0, 0, 0, 0, 0,15455, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15455,15455,15455,15456, 15456, 0,15456,15456,15456,15456,15456,15456, 0,15456, 15456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15456,15456,15456,15456,15456,15456,15456,15456, 0, 0, 0, 0,15456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15456, 15456,15456,15458,15458, 0,15458,15458,15458,15458,15458, 15458, 0,15458,15458, 0, 0, 0, 0, 0, 0, 0, 0, 0,15458,15458,15458,15458,15458,15458,15458, 0, 0, 0, 0, 0,15458, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15458,15458,15458,15459,15459, 0,15459,15459, 15459,15459,15459,15459, 0,15459,15459, 0, 0, 0, 0, 0, 0, 0, 0, 0,15459,15459,15459,15459, 15459,15459,15459,15459, 0, 0, 0, 0,15459, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15459,15459,15459,15460,15460, 0,15460,15460,15460,15460,15460,15460, 0,15460,15460, 0, 0, 0, 0, 0, 0, 0, 0, 0,15460, 15460,15460,15460,15460,15460,15460, 0, 0, 0, 0, 0,15460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15460, 0, 0,15460,15460, 15460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15460,15461,15461, 0,15461,15461,15461,15461, 15461,15461, 0,15461,15461, 0, 0, 0, 0, 0, 0, 0, 0, 0,15461,15461,15461,15461,15461,15461, 15461, 0, 0, 0, 0, 0,15461, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15461,15461,15461,15462,15462, 0,15462, 15462,15462,15462,15462,15462, 0,15462,15462,15462,15462, 15462,15462,15462,15462,15462,15462,15462,15462,15462,15462, 15462,15462,15462,15462, 0, 0, 0, 0, 0,15462, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15462,15462,15462,15464, 15464, 0,15464,15464,15464,15464,15464,15464, 0,15464, 15464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15464,15464,15464,15464,15464,15464,15464, 0, 0, 0, 0, 0,15464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15464, 15464,15464,15465,15465, 0,15465,15465,15465,15465,15465, 15465, 0,15465,15465, 0, 0, 0, 0, 0, 0, 0, 0, 0,15465,15465,15465,15465,15465,15465,15465, 15465, 0, 0, 0, 0,15465, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15465,15465,15465,15466,15466, 0,15466,15466, 15466,15466,15466,15466, 0,15466,15466, 0, 0, 0, 0, 0, 0, 0, 0, 0,15466,15466,15466,15466, 15466,15466,15466, 0, 0, 0, 0, 0,15466, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15466, 0, 0,15466,15466,15466, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15466, 15478,15478, 0,15478,15478,15478,15478,15478,15478, 0, 15478,15478, 0, 0, 0, 0, 0, 0, 0, 0, 0,15478,15478,15478,15478,15478,15478,15478, 0, 0, 0, 0, 0,15478, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15478,15478,15478,15479,15479, 0,15479,15479,15479,15479, 15479,15479, 0,15479,15479, 0, 0, 0, 0, 0, 0, 0, 0, 0,15479,15479,15479,15479,15479,15479, 15479,15479, 0, 0, 0, 0,15479, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15479,15479,15479,15493,15493, 0,15493, 15493,15493,15493,15493,15493, 0,15493,15493, 0, 0, 0, 0, 0, 0, 0, 0, 0,15493,15493,15493, 15493,15493,15493,15493, 0, 0, 0, 0, 0,15493, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15493,15493,15493,15494, 15494, 0,15494,15494,15494,15494,15494,15494, 0,15494, 15494, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15494,15494,15494,15494,15494,15494,15494,15494, 0, 0, 0, 0,15494, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15494, 15494,15494,15514,15514, 0,15514,15514,15514,15514,15514, 15514, 0,15514,15514, 0, 0, 0, 0, 0, 0, 0, 0, 0,15514,15514,15514,15514,15514,15514,15514, 0, 0, 0, 0, 0,15514, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15514,15514,15514,15515,15515, 0,15515,15515, 15515,15515,15515,15515, 0,15515,15515, 0, 0, 0, 0, 0, 0, 0, 0, 0,15515,15515,15515,15515, 15515,15515,15515, 0, 0, 0, 0, 0,15515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15515,15515,15515,15516,15516, 0,15516,15516,15516,15516,15516,15516, 0,15516,15516, 0, 0, 0, 0, 0, 0, 0, 0, 0,15516, 15516,15516,15516,15516,15516,15516,15516, 0, 0, 0, 0,15516, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15516,15516, 15516,15530,15530, 0,15530,15530,15530,15530,15530,15530, 0,15530,15530, 0, 0, 0, 0, 0, 0, 0, 0, 0,15530,15530,15530,15530,15530,15530,15530, 0, 0, 0, 0, 0,15530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15530,15530,15530,15531,15531, 0,15531,15531,15531, 15531,15531,15531, 0,15531,15531, 0, 0, 0, 0, 0, 0, 0, 0, 0,15531,15531,15531,15531,15531, 15531,15531,15531, 0, 0, 0, 0,15531, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15531,15531,15531,15560,15560, 0, 15560,15560,15560,15560,15560,15560, 0,15560,15560, 0, 0, 0, 0, 0, 0, 0, 0, 0,15560,15560, 15560,15560,15560,15560,15560, 0, 0, 0, 0, 0, 15560, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15560,15560,15560, 15561,15561, 0,15561,15561,15561,15561,15561,15561, 0, 15561,15561, 0, 0, 0, 0, 0, 0, 0, 0, 0,15561,15561,15561,15561,15561,15561,15561,15561, 0, 0, 0, 0,15561, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15561,15561,15561,15565,15565,15565,15565,15565,15565,15565, 15565,15565,15565, 0, 0, 0, 0, 0, 0,15565, 15565,15565,15565,15565,15565, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15565,15565,15565,15565,15565, 15565,15569, 0, 0, 0, 0, 0, 0, 0, 0, 15569,15569,15569,15569,15569,15569,15569,15569,15569, 0, 0, 0, 0, 0, 0, 0,15569,15569,15569,15569, 15569,15569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15569,15569,15569,15569,15569,15569,15575,15575, 15575,15575,15575,15575,15575,15575,15575, 0, 0, 0, 0, 0, 0, 0,15575,15575,15575,15575,15575,15575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15575,15575,15575,15575,15575,15575,15578,15578,15578,15578, 15578,15578,15578,15578,15578,15578, 0, 0, 0, 0, 0, 0,15578,15578,15578,15578,15578,15578, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15578,15578, 15578,15578,15578,15578,15582,15582,15582,15582,15582,15582, 15582,15582,15582, 0, 0, 0, 0, 0, 0, 0, 15582,15582,15582,15582,15582,15582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15582,15582,15582,15582, 15582,15582,15585, 0,15585,15585,15585,15585,15585,15585, 15585,15585,15585,15585, 0, 0, 0, 0, 0, 0, 15585,15585,15585,15585,15585,15585, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15585,15585,15585,15585, 15585,15585,15592,15592,15592,15592,15592,15592,15592,15592, 15592, 0, 0, 0, 0, 0, 0, 0,15592,15592, 15592,15592,15592,15592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15592,15592,15592,15592,15592,15592, 15595,15595,15595,15595,15595,15595,15595,15595,15595,15595, 0, 0, 0, 0, 0, 0,15595,15595,15595,15595, 15595,15595, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15595,15595,15595,15595,15595,15595,15599,15599, 15599,15599,15599,15599,15599,15599,15599,15599, 0, 0, 0, 0, 0, 0,15599,15599,15599,15599,15599,15599, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15599,15599,15599,15599,15599,15599,15603,15603,15603,15603, 15603,15603,15603,15603,15603, 0, 0, 0, 0, 0, 0, 0,15603,15603,15603,15603,15603,15603, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15603,15603, 15603,15603,15603,15603,15606,15606,15606,15606,15606,15606, 15606,15606,15606,15606, 0, 0, 0, 0, 0, 0, 15606,15606,15606,15606,15606,15606, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15606,15606,15606,15606, 15606,15606,15610,15610,15610,15610,15610,15610,15610,15610, 15610,15610, 0, 0, 0, 0, 0, 0,15610,15610, 15610,15610,15610,15610, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15610,15610,15610,15610,15610,15610, 15614,15614,15614,15614,15614,15614,15614,15614,15614, 0, 0, 0, 0, 0, 0, 0,15614,15614,15614,15614, 15614,15614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15614,15614,15614,15614,15614,15614,15617,15617, 15617,15617,15617,15617,15617,15617,15617,15617, 0, 0, 0, 0, 0, 0,15617,15617,15617,15617,15617,15617, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15617,15617,15617,15617,15617,15617,15621,15621,15621,15621, 15621,15621,15621,15621,15621,15621, 0, 0, 0, 0, 0, 0,15621,15621,15621,15621,15621,15621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15621,15621, 15621,15621,15621,15621,15622,15622,15622,15622,15622,15622, 15622,15622,15622,15622, 0, 0, 0, 0, 0, 0, 15622,15622,15622,15622,15622,15622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15622,15622,15622,15622, 15622,15622,15624,15624,15624,15624,15624,15624,15624,15624, 15624, 0, 0, 0, 0, 0, 0, 0,15624,15624, 15624,15624,15624,15624, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15624,15624,15624,15624,15624,15624, 15627,15627,15627,15627,15627,15627,15627,15627,15627, 0, 0, 0, 0, 0, 0, 0,15627,15627,15627,15627, 15627,15627, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15627,15627,15627,15627,15627,15627,15628,15628, 15628,15628,15628,15628,15628,15628,15628,15628, 0, 0, 0, 0, 0, 0,15628,15628,15628,15628,15628,15628, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15628,15628,15628,15628,15628,15628,15632,15632, 0,15632, 15632,15632,15632,15632,15632, 0,15632,15632, 0, 0, 0, 0, 0, 0, 0, 0, 0,15632,15632,15632, 15632,15632,15632,15632, 0, 0, 0, 0, 0,15632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15632,15632,15632,15633, 15633, 0,15633,15633,15633,15633,15633,15633, 0,15633, 15633, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15633,15633,15633,15633,15633,15633,15633,15633, 0, 0, 0, 0,15633, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15633, 15633,15633,15671,15671, 0,15671,15671,15671,15671,15671, 15671, 0,15671,15671, 0, 0, 0, 0, 0, 0, 0, 0, 0,15671,15671,15671,15671,15671,15671,15671, 0, 0, 0, 0, 0,15671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15671,15671,15671, 0, 0, 0,15671,15672, 15672, 0,15672,15672,15672,15672,15672,15672, 0,15672, 15672, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15672,15672,15672,15672,15672,15672,15672,15672, 0, 0, 0, 0,15672, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15672, 15672,15672, 0, 0, 0,15672,15683,15683, 0,15683, 15683,15683,15683,15683,15683, 0,15683,15683, 0, 0, 0, 0, 0, 0, 0, 0, 0,15683,15683,15683, 15683,15683,15683,15683, 0, 0, 0, 0, 0,15683, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15683,15683,15683, 0, 0, 0,15683,15684,15684, 0,15684,15684,15684,15684, 15684,15684, 0,15684,15684, 0, 0, 0, 0, 0, 0, 0, 0, 0,15684,15684,15684,15684,15684,15684, 15684,15684, 0, 0, 0, 0,15684, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15684,15684,15684, 0, 0, 0,15684, 15713,15713, 0,15713,15713,15713,15713,15713,15713, 0, 15713,15713, 0, 0, 0, 0, 0, 0, 0, 0, 0,15713,15713,15713,15713,15713,15713,15713, 0, 0, 0, 0, 0,15713, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15713,15713,15713, 0, 0, 0,15713,15714,15714, 0, 15714,15714,15714,15714,15714,15714, 0,15714,15714, 0, 0, 0, 0, 0, 0, 0, 0, 0,15714,15714, 15714,15714,15714,15714,15714,15714, 0, 0, 0, 0, 15714, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15714,15714,15714, 0, 0, 0,15714,15738,15738, 0,15738,15738,15738, 15738,15738,15738, 0,15738,15738, 0, 0, 0, 0, 0, 0, 0, 0, 0,15738,15738,15738,15738,15738, 15738,15738, 0, 0, 0, 0, 0,15738, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15738,15738,15738, 0, 0, 0, 15738,15739,15739, 0,15739,15739,15739,15739,15739,15739, 0,15739,15739, 0, 0, 0, 0, 0, 0, 0, 0, 0,15739,15739,15739,15739,15739,15739,15739,15739, 0, 0, 0, 0,15739, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15739,15739,15739, 0, 0, 0,15739,15779,15779, 0,15779,15779,15779,15779,15779,15779,15779,15779,15779, 0, 0, 0, 0, 0, 0, 0, 0, 0,15779, 15779,15779,15779,15779,15779,15779, 0, 0, 0, 0, 0,15779, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15779,15779, 15779,15779, 0, 0,15779,15781,15781, 0,15781,15781, 15781,15781,15781,15781, 0,15781,15781, 0, 0, 0, 0, 0, 0, 0, 0, 0,15781,15781,15781,15781, 15781,15781,15781, 0, 0, 0, 0, 0,15781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15781,15781,15781, 0, 0, 0,15781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15781,15784, 0, 0, 0, 0, 0, 0, 0, 0, 0,15784,15784, 15784,15784,15784,15784,15784,15784,15784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15784, 15784,15800,15800, 0,15800,15800,15800,15800, 0,15800, 15800,15800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15800,15800,15800,15800,15800,15800,15800, 0, 0, 0, 0, 0,15800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15800,15800,15800,15800,15801,15801, 0,15801,15801, 15801,15801, 0,15801,15801,15801, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15801,15801,15801,15801, 15801,15801,15801,15801, 0, 0, 0, 0,15801, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15801,15801,15801,15801,15805, 15805,15805,15805,15805,15805,15805,15805,15805, 0, 0, 0, 0, 0, 0, 0,15805,15805,15805,15805,15805, 15805, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15805,15805,15805,15805,15805,15805,15851,15851, 0, 0, 0, 0,15851, 0, 0, 0,15851,15851,15851, 15851,15851,15851,15851,15851,15851,15852,15852, 0, 0, 0, 0,15852, 0, 0, 0, 0, 0, 0, 0, 15852, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15852, 0,15852, 0, 0, 0, 0,15852, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15852, 0, 15852, 0,15852, 0, 0,15852, 0, 0, 0, 0, 15852, 0, 0,15852, 0,15852, 0,15852, 0,15852, 15852,15852,15853,15853,15853, 0, 0, 0,15853, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15853, 0, 0, 0, 0, 0, 0, 15853, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15853, 0,15853, 0,15853, 0, 0,15853, 0, 0, 0, 0,15853, 0, 0,15853, 0,15853, 0,15853, 0,15853,15853,15853,15854, 0, 0,15854, 0, 0, 0,15854, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15854, 0,15854, 0,15854, 0, 0,15854, 0, 0, 0, 0,15854, 0, 0,15854, 0,15854, 0,15854, 0, 15854,15854,15854,15855, 0, 0, 0, 0, 0, 0, 15855, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15855, 0,15855, 0,15855, 0, 0,15855,15855, 0, 0, 0,15855, 0, 0,15855, 0,15855, 0,15855, 0,15855,15855,15855,15855,15856, 0, 0, 0, 0, 0, 0,15856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15856, 0,15856, 0,15856, 0, 0,15856, 0, 0, 0, 0,15856, 0, 0,15856, 0,15856, 0,15856, 0,15856,15856,15856,15857,15857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15857, 0, 0, 0, 0, 0, 0,15857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15857, 0, 15857, 0,15857, 0, 0,15857, 0, 0, 0, 0, 15857, 0, 0,15857, 0,15857, 0,15857, 0,15857, 15857,15857,15858, 0, 0, 0, 0, 0, 0,15858, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15858, 0,15858, 0,15858, 0,15858, 15858, 0, 0, 0, 0,15858, 0, 0,15858, 0, 15858, 0,15858, 0,15858,15858,15858,15859, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15859, 0, 0, 0, 0, 0, 0,15859, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15859, 0,15859, 0,15859, 0, 0,15859, 0, 0, 0, 0,15859, 0, 0,15859, 0,15859, 0, 15859, 0,15859,15859,15859,15860, 0, 0, 0, 0, 0, 0,15860, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15860, 0,15860, 0, 15860, 0, 0,15860, 0, 0, 0, 0,15860, 0, 0,15860, 0,15860, 0,15860, 0,15860,15860,15860, 15865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15865, 0, 0, 0, 0, 0, 0,15865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15865, 0,15865, 0,15865, 0, 0, 15865, 0, 0, 0, 0,15865, 0, 0,15865, 0, 15865, 0,15865, 0,15865,15865,15865,15866, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15866, 0, 0,15866, 0, 0, 0,15866, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15866, 0,15866, 0,15866, 0, 0,15866, 0, 0, 0, 0,15866, 0, 0,15866, 0,15866, 0,15866, 0,15866,15866,15866,15867, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15867, 0, 0, 0, 0,15867, 0, 0, 0, 0, 0, 0,15867, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15867, 0,15867, 0,15867, 0, 0,15867, 0, 0, 0, 0,15867, 0, 0,15867, 0,15867, 0,15867, 0,15867,15867, 15867,15868, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15868, 0, 0, 0, 0, 0, 0, 15868, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15868, 0,15868, 0,15868, 0, 0,15868, 0, 0, 0, 0,15868, 0, 0,15868, 0,15868, 0,15868, 0,15868,15868,15868,15869, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15869, 0, 0, 0, 0, 0, 0,15869, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15869, 0,15869, 0,15869, 0, 0,15869,15869, 0, 0, 0,15869, 0, 0,15869, 0,15869, 0, 15869, 0,15869,15869,15869,15870, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15870, 0, 0, 0, 0, 0, 0,15870, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15870, 0, 15870, 0,15870, 0, 0,15870, 0, 0, 0, 0, 15870, 0, 0,15870, 0,15870, 0,15870, 0,15870, 15870,15870,15871, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15871, 0, 0, 0, 0, 0, 0,15871, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15871, 0,15871, 0,15871, 0, 0,15871, 0, 0, 0, 0,15871, 0, 0, 15871, 0,15871, 0,15871, 0,15871,15871,15871,15872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15872, 0, 0, 0, 0, 0, 0,15872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15872, 0,15872,15872,15872, 0, 0,15872, 15872, 0, 0, 0,15872, 0, 0,15872, 0,15872, 0,15872, 0,15872,15872,15872,15882,15882, 0, 0, 0, 0,15882, 0, 0,15882, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15882, 0, 0, 0, 0, 0, 0,15882, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15882, 0, 15882, 0,15882, 0, 0,15882, 0, 0, 0, 0, 15882, 0, 0,15882, 0,15882, 0,15882, 0,15882, 15882,15882,15883,15883, 0, 0, 0, 0,15883, 0, 0,15883,15883,15883,15883,15883,15883,15883,15883,15883, 15883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15883, 0, 0, 0, 0, 0, 0, 15883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15883, 0,15883, 0,15883, 0, 0,15883, 0, 0, 0, 0,15883, 0, 0,15883, 0,15883, 0,15883, 0,15883,15883,15883,15884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15884, 0, 0, 0, 0, 0, 0,15884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15884, 0,15884, 0,15884, 0, 0,15884,15884, 0, 0, 0,15884, 0, 0,15884, 0,15884, 0, 15884, 0,15884,15884,15884,15885, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15885,15885, 0, 0, 0, 0, 0,15885, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15885, 0, 15885, 0,15885, 0, 0,15885, 0, 0, 0, 0, 15885, 0, 0,15885, 0,15885, 0,15885, 0,15885, 15885,15885,15888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15888, 0, 0, 0, 0, 0, 0,15888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15888, 0,15888, 0,15888, 0, 0,15888, 0, 0, 0, 0,15888, 0, 0, 15888, 0,15888, 0,15888, 0,15888,15888,15888,15889, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15889, 0, 0, 0, 0, 0, 0,15889, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15889,15889,15889, 0,15889, 0, 0,15889, 0, 0, 0, 0,15889, 0, 0,15889, 0,15889, 0,15889, 0,15889,15889,15889,15891, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15891, 0, 0, 0, 0, 0, 0,15891, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15891, 0,15891, 0,15891, 0, 0,15891, 0, 0, 0, 0,15891,15891, 0,15891, 0,15891, 0,15891, 0, 15891,15891,15891,15892, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15892, 0, 0, 0, 0, 0, 0,15892, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15892, 0,15892, 0, 15892, 0, 0,15892,15892, 0, 0, 0,15892, 0, 0,15892, 0,15892, 0,15892, 0,15892,15892,15892, 15893, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15893, 0, 0, 0, 0, 0, 0,15893, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15893, 0,15893, 0,15893, 0, 0, 15893, 0, 0, 0, 0,15893,15893, 0,15893, 0, 15893, 0,15893, 0,15893,15893,15893,15894, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15894, 0, 0, 0, 0, 0, 0,15894, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15894, 0,15894, 0,15894, 0, 0,15894, 0, 0, 0, 0,15894, 0, 0,15894, 0,15894, 0,15894, 15894,15894,15894,15894,15897,15897,15897,15897,15897,15897, 15897,15897,15897, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15897, 0, 0, 0, 0, 0, 0, 0,15897, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15897,15903,15903, 0, 0, 0, 0,15903, 0, 0, 15903,15903, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15903, 0, 0, 0, 0, 0, 0,15903, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15903, 0,15903, 0,15903, 0, 0, 15903, 0, 0, 0, 0,15903, 0, 0,15903, 0, 15903, 0,15903, 0,15903,15903,15903,15904,15904, 0, 0, 0, 0,15904, 0, 0,15904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15904, 0, 0, 0, 0, 0, 0,15904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15904, 0,15904, 0,15904, 0, 0,15904, 0, 0, 0, 0,15904, 0, 0,15904, 0,15904, 0,15904, 0, 15904,15904,15904,15913,15913,15913,15913,15913,15913,15913, 15913,15913,15913, 0, 0, 0, 0, 0, 0,15913, 15913,15913,15913,15913,15913, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15913,15913,15913,15913,15913, 15913,15917, 0, 0, 0, 0, 0, 0, 0, 0, 15917,15917,15917,15917,15917,15917,15917,15917,15917, 0, 0, 0, 0, 0, 0, 0,15917,15917,15917,15917, 15917,15917, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15917,15917,15917,15917,15917,15917,15923,15923, 15923,15923,15923,15923,15923,15923,15923, 0, 0, 0, 0, 0, 0, 0,15923,15923,15923,15923,15923,15923, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15923,15923,15923,15923,15923,15923,15926,15926,15926,15926, 15926,15926,15926,15926,15926,15926, 0, 0, 0, 0, 0, 0,15926,15926,15926,15926,15926,15926, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15926,15926, 15926,15926,15926,15926,15930,15930,15930,15930,15930,15930, 15930,15930,15930, 0, 0, 0, 0, 0, 0, 0, 15930,15930,15930,15930,15930,15930, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15930,15930,15930,15930, 15930,15930,15933, 0,15933,15933,15933,15933,15933,15933, 15933,15933,15933,15933, 0, 0, 0, 0, 0, 0, 15933,15933,15933,15933,15933,15933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15933,15933,15933,15933, 15933,15933,15940,15940,15940,15940,15940,15940,15940,15940, 15940, 0, 0, 0, 0, 0, 0, 0,15940,15940, 15940,15940,15940,15940, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15940,15940,15940,15940,15940,15940, 15943,15943,15943,15943,15943,15943,15943,15943,15943,15943, 0, 0, 0, 0, 0, 0,15943,15943,15943,15943, 15943,15943, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15943,15943,15943,15943,15943,15943,15947,15947, 15947,15947,15947,15947,15947,15947,15947,15947, 0, 0, 0, 0, 0, 0,15947,15947,15947,15947,15947,15947, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15947,15947,15947,15947,15947,15947,15951,15951,15951,15951, 15951,15951,15951,15951,15951, 0, 0, 0, 0, 0, 0, 0,15951,15951,15951,15951,15951,15951, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15951,15951, 15951,15951,15951,15951,15954,15954,15954,15954,15954,15954, 15954,15954,15954,15954, 0, 0, 0, 0, 0, 0, 15954,15954,15954,15954,15954,15954, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15954,15954,15954,15954, 15954,15954,15958,15958,15958,15958,15958,15958,15958,15958, 15958,15958, 0, 0, 0, 0, 0, 0,15958,15958, 15958,15958,15958,15958, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15958,15958,15958,15958,15958,15958, 15962,15962,15962,15962,15962,15962,15962,15962,15962, 0, 0, 0, 0, 0, 0, 0,15962,15962,15962,15962, 15962,15962, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15962,15962,15962,15962,15962,15962,15965,15965, 15965,15965,15965,15965,15965,15965,15965,15965, 0, 0, 0, 0, 0, 0,15965,15965,15965,15965,15965,15965, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15965,15965,15965,15965,15965,15965,15969,15969,15969,15969, 15969,15969,15969,15969,15969,15969, 0, 0, 0, 0, 0, 0,15969,15969,15969,15969,15969,15969, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15969,15969, 15969,15969,15969,15969,15970,15970,15970,15970,15970,15970, 15970,15970,15970,15970, 0, 0, 0, 0, 0, 0, 15970,15970,15970,15970,15970,15970, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15970,15970,15970,15970, 15970,15970,15972,15972,15972,15972,15972,15972,15972,15972, 15972, 0, 0, 0, 0, 0, 0, 0,15972,15972, 15972,15972,15972,15972, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15972,15972,15972,15972,15972,15972, 15975,15975,15975,15975,15975,15975,15975,15975,15975, 0, 0, 0, 0, 0, 0, 0,15975,15975,15975,15975, 15975,15975, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15975,15975,15975,15975,15975,15975,15976,15976, 15976,15976,15976,15976,15976,15976,15976,15976, 0, 0, 0, 0, 0, 0,15976,15976,15976,15976,15976,15976, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15976,15976,15976,15976,15976,15976,15980,15980, 0,15980, 15980,15980,15980,15980,15980, 0,15980,15980, 0, 0, 0, 0, 0, 0, 0, 0, 0,15980,15980,15980, 15980,15980,15980,15980, 0, 0, 0, 0, 0,15980, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15980,15980,15980,15981, 15981, 0,15981,15981,15981,15981,15981,15981, 0,15981, 15981, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15981,15981,15981,15981,15981,15981,15981,15981, 0, 0, 0, 0,15981, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15981, 15981,15981,15995,15995,15995,15995,15995,15995,15995,15995, 15995,15995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15995, 0,15995,15997,15997, 0,15997,15997,15997,15997, 15997,15997, 0,15997,15997, 0, 0, 0, 0, 0, 0, 0, 0, 0,15997,15997,15997,15997,15997,15997, 15997, 0, 0, 0, 0, 0,15997, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15997,15997,15997,15998,15998, 0,15998, 15998,15998,15998,15998,15998, 0,15998,15998, 0, 0, 0, 0, 0, 0, 0, 0, 0,15998,15998,15998, 15998,15998,15998,15998,15998, 0, 0, 0, 0,15998, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15998,15998,15998,15999, 15999, 0,15999,15999,15999,15999,15999,15999, 0,15999, 15999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15999,15999,15999,15999,15999,15999,15999, 0, 0, 0, 0, 0,15999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15999, 15999,15999,16000,16000, 0,16000,16000,16000,16000,16000, 16000, 0,16000,16000, 0, 0, 0, 0, 0, 0, 0, 0, 0,16000,16000,16000,16000,16000,16000,16000, 16000, 0, 0, 0, 0,16000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16000,16000,16000,16004,16004, 0,16004,16004, 16004,16004,16004,16004, 0,16004,16004, 0, 0, 0, 0, 0, 0, 0, 0, 0,16004,16004,16004,16004, 16004,16004,16004, 0, 0, 0, 0, 0,16004, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16004,16004,16004,16005,16005, 0,16005,16005,16005,16005,16005,16005, 0,16005,16005, 0, 0, 0, 0, 0, 0, 0, 0, 0,16005, 16005,16005,16005,16005,16005,16005,16005, 0, 0, 0, 0,16005, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16005,16005, 16005,16007,16007, 0,16007,16007,16007,16007,16007,16007, 0,16007,16007, 0, 0, 0, 0, 0, 0, 0, 0, 0,16007,16007,16007,16007,16007,16007,16007, 0, 0, 0, 0, 0,16007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16007,16007,16007,16008,16008, 0,16008,16008,16008, 16008,16008,16008, 0,16008,16008, 0, 0, 0, 0, 0, 0, 0, 0, 0,16008,16008,16008,16008,16008, 16008,16008,16008, 0, 0, 0, 0,16008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16008,16008,16008,16010,16010, 0, 16010,16010,16010,16010,16010,16010, 0,16010,16010, 0, 0, 0, 0, 0, 0, 0, 0, 0,16010,16010, 16010,16010,16010,16010,16010, 0, 0, 0, 0, 0, 16010, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16010,16010,16010, 16011,16011, 0,16011,16011,16011,16011,16011,16011, 0, 16011,16011, 0, 0, 0, 0, 0, 0, 0, 0, 0,16011,16011,16011,16011,16011,16011,16011,16011, 0, 0, 0, 0,16011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16011,16011,16011,16012,16012, 0,16012,16012,16012,16012, 16012,16012, 0,16012,16012, 0, 0, 0, 0, 0, 0, 0, 0, 0,16012,16012,16012,16012,16012,16012, 16012, 0, 0, 0, 0, 0,16012, 0,16012, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16012,16012,16012, 0, 0, 0, 0, 0, 0, 0, 0,16012,16015,16015, 0,16015,16015, 16015,16015,16015,16015, 0,16015,16015, 0, 0, 0, 0, 0, 0, 0, 0, 0,16015,16015,16015,16015, 16015,16015,16015, 0, 0, 0, 0, 0,16015, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16015,16015,16015,16016,16016, 0,16016,16016,16016,16016,16016,16016, 0,16016,16016, 0, 0, 0, 0, 0, 0, 0, 0, 0,16016, 16016,16016,16016,16016,16016,16016,16016, 0, 0, 0, 0,16016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16016,16016, 16016,16020,16020, 0,16020,16020,16020,16020,16020,16020, 0,16020,16020, 0, 0, 0, 0, 0, 0, 0, 0, 0,16020,16020,16020,16020,16020,16020,16020, 0, 0, 0, 0, 0,16020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16020,16020,16020,16021,16021, 0,16021,16021,16021, 16021,16021,16021, 0,16021,16021, 0, 0, 0, 0, 0, 0, 0, 0, 0,16021,16021,16021,16021,16021, 16021,16021,16021, 0, 0, 0, 0,16021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16021,16021,16021,16024,16024, 0, 16024,16024,16024,16024,16024,16024, 0,16024,16024, 0, 0, 0, 0, 0, 0, 0, 0, 0,16024,16024, 16024,16024,16024,16024,16024, 0, 0, 0, 0, 0, 16024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16024,16024,16024, 16025,16025, 0,16025,16025,16025,16025,16025,16025, 0, 16025,16025, 0, 0, 0, 0, 0, 0, 0, 0, 0,16025,16025,16025,16025,16025,16025,16025,16025, 0, 0, 0, 0,16025, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16025,16025,16025,16027,16027, 0,16027,16027,16027,16027, 16027,16027, 0,16027,16027, 0, 0, 0, 0, 0, 0, 0, 0, 0,16027,16027,16027,16027,16027,16027, 16027, 0, 0, 0, 0, 0,16027, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16027,16027,16027,16028,16028, 0,16028, 16028,16028,16028,16028,16028, 0,16028,16028, 0, 0, 0, 0, 0, 0, 0, 0, 0,16028,16028,16028, 16028,16028,16028,16028,16028, 0, 0, 0, 0,16028, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16028,16028,16028,16029, 16029, 0,16029,16029,16029,16029,16029,16029,16029,16029, 16029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16029,16029,16029,16029,16029,16029,16029,16029, 0, 0, 0, 0,16029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16029, 16029,16029,16029,16029,16030,16030, 0,16030,16030,16030, 16030,16030,16030, 0,16030,16030, 0, 0, 0, 0, 0, 0, 0, 0, 0,16030,16030,16030,16030,16030, 16030,16030, 0, 0, 0, 0, 0,16030, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16030,16030,16030,16031,16031, 0, 16031,16031,16031,16031,16031,16031, 0,16031,16031, 0, 0, 0, 0, 0, 0, 0, 0, 0,16031,16031, 16031,16031,16031,16031,16031,16031, 0, 0, 0, 0, 16031, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16031,16031,16031, 16034,16034, 0,16034,16034,16034,16034,16034,16034, 0, 16034,16034, 0, 0, 0, 0, 0, 0, 0, 0, 0,16034,16034,16034,16034,16034,16034,16034, 0, 0, 0, 0, 0,16034, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16034,16034,16034,16035,16035, 0,16035,16035,16035,16035, 16035,16035, 0,16035,16035, 0, 0, 0, 0, 0, 0, 0, 0, 0,16035,16035,16035,16035,16035,16035, 16035,16035, 0, 0, 0, 0,16035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16035,16035,16035,16037,16037, 0,16037, 16037,16037,16037,16037,16037, 0,16037,16037, 0, 0, 0, 0, 0, 0, 0, 0, 0,16037,16037,16037, 16037,16037,16037,16037, 0, 0, 0, 0, 0,16037, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16037,16037,16037,16038, 16038, 0,16038,16038,16038,16038,16038,16038, 0,16038, 16038, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16038,16038,16038,16038,16038,16038,16038,16038, 0, 0, 0, 0,16038, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16038, 16038,16038,16039,16039, 0,16039,16039,16039,16039,16039, 16039,16039,16039,16039, 0, 0, 0, 0, 0, 0, 0, 0, 0,16039,16039,16039,16039,16039,16039,16039, 16039, 0, 0, 0, 0,16039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16039,16039,16039,16039,16039,16050,16050,16050, 16050,16050,16050,16050,16050,16050,16050, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16050, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16050, 0,16050,16052, 16052, 0,16052,16052,16052,16052,16052,16052, 0,16052, 16052, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16052,16052,16052,16052,16052,16052,16052, 0, 0, 0, 0, 0,16052, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16052, 16052,16052,16053,16053, 0,16053,16053,16053,16053,16053, 16053, 0,16053,16053, 0, 0, 0, 0, 0, 0, 0, 0, 0,16053,16053,16053,16053,16053,16053,16053, 16053, 0, 0, 0, 0,16053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16053,16053,16053,16066, 0, 0, 0, 0, 0, 0, 0, 0,16066,16066,16066,16066,16066,16066, 16066,16066,16066, 0, 0, 0, 0, 0, 0, 0, 16066,16066,16066,16066,16066,16066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16066,16066,16066,16066, 16066,16066,16069,16069,16069,16069,16069,16069,16069,16069, 16069, 0, 0, 0, 0, 0, 0, 0,16069,16069, 16069,16069,16069,16069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16069,16069,16069,16069,16069,16069, 16072, 0,16072,16072,16072,16072,16072,16072,16072,16072, 16072,16072, 0, 0, 0, 0, 0, 0,16072,16072, 16072,16072,16072,16072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16072,16072,16072,16072,16072,16072, 16076,16076,16076,16076,16076,16076,16076,16076,16076, 0, 0, 0, 0, 0, 0, 0,16076,16076,16076,16076, 16076,16076, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16076,16076,16076,16076,16076,16076,16079, 0, 16079,16079,16079,16079,16079,16079,16079,16079,16079,16079, 0, 0, 0, 0, 0, 0,16079,16079,16079,16079, 16079,16079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16079,16079,16079,16079,16079,16079,16082,16082, 16082,16082,16082,16082,16082,16082,16082, 0, 0, 0, 0, 0, 0, 0,16082,16082,16082,16082,16082,16082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16082,16082,16082,16082,16082,16082,16085,16085,16085,16085, 16085,16085,16085,16085,16085,16085, 0, 0, 0, 0, 0, 0,16085,16085,16085,16085,16085,16085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16085,16085, 16085,16085,16085,16085,16088,16088,16088,16088,16088,16088, 16088,16088,16088, 0, 0, 0, 0, 0, 0, 0, 16088,16088,16088,16088,16088,16088, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16088,16088,16088,16088, 16088,16088,16091,16091,16091,16091,16091,16091,16091,16091, 16091,16091, 0, 0, 0, 0, 0, 0,16091,16091, 16091,16091,16091,16091, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16091,16091,16091,16091,16091,16091, 16094,16094,16094,16094,16094,16094,16094,16094,16094, 0, 0, 0, 0, 0, 0, 0,16094,16094,16094,16094, 16094,16094, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16094,16094,16094,16094,16094,16094,16097,16097, 16097,16097,16097,16097,16097,16097,16097,16097, 0, 0, 0, 0, 0, 0,16097,16097,16097,16097,16097,16097, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16097,16097,16097,16097,16097,16097,16103,16103,16103,16103, 16103,16103,16103,16103,16103, 0, 0, 0, 0, 0, 0, 0,16103,16103,16103,16103,16103,16103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16103,16103, 16103,16103,16103,16103,16106,16106,16106,16106,16106,16106, 16106,16106,16106,16106, 0, 0, 0, 0, 0, 0, 16106,16106,16106,16106,16106,16106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16106,16106,16106,16106, 16106,16106,16110,16110,16110,16110,16110,16110,16110,16110, 16110,16110, 0, 0, 0, 0, 0, 0,16110,16110, 16110,16110,16110,16110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16110,16110,16110,16110,16110,16110, 16111,16111, 0,16111,16111,16111,16111,16111,16111, 0, 16111,16111, 0, 0, 0, 0, 0, 0, 0, 0, 0,16111,16111,16111,16111,16111,16111,16111, 0, 0, 0, 0, 0,16111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16111,16111,16111,16112,16112, 0,16112,16112,16112,16112, 16112,16112, 0,16112,16112, 0, 0, 0, 0, 0, 0, 0, 0, 0,16112,16112,16112,16112,16112,16112, 16112,16112, 0, 0, 0, 0,16112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16112,16112,16112,16138,16138, 0,16138, 16138,16138,16138,16138,16138, 0,16138,16138, 0, 0, 0, 0, 0, 0, 0, 0, 0,16138,16138,16138, 16138,16138,16138,16138, 0, 0, 0, 0, 0,16138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16138,16138,16138, 0, 0, 0,16138,16139,16139, 0,16139,16139,16139,16139, 16139,16139, 0,16139,16139, 0, 0, 0, 0, 0, 0, 0, 0, 0,16139,16139,16139,16139,16139,16139, 16139,16139, 0, 0, 0, 0,16139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16139,16139,16139, 0, 0, 0,16139, 16169,16169,16169,16169,16169,16169,16169,16169,16169,16169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16169, 0, 16169, 0, 0, 0,16169,16173,16173, 0,16173,16173, 16173,16173,16173,16173, 0,16173,16173, 0, 0, 0, 0, 0, 0, 0, 0, 0,16173,16173,16173,16173, 16173,16173,16173, 0, 0, 0, 0, 0,16173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16173,16173,16173, 0, 0, 0,16173, 0,16173,16174,16174, 0,16174,16174,16174, 16174,16174,16174, 0,16174,16174, 0, 0, 0, 0, 0, 0, 0, 0, 0,16174,16174,16174,16174,16174, 16174,16174, 0, 0, 0, 0, 0,16174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16174,16174,16174, 0, 0, 0, 16174,16175,16175, 0,16175,16175,16175,16175,16175,16175, 0,16175,16175, 0, 0, 0, 0, 0, 0, 0, 0, 0,16175,16175,16175,16175,16175,16175,16175,16175, 0, 0, 0, 0,16175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16175,16175,16175, 0, 0, 0,16175,16178,16178, 0,16178,16178,16178,16178,16178,16178, 0,16178,16178, 0, 0, 0, 0, 0, 0, 0, 0, 0,16178, 16178,16178,16178,16178,16178,16178, 0, 0, 0, 0, 0,16178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16178,16178, 16178, 0, 0, 0,16178,16180, 0, 0, 0, 0, 0, 0, 0, 0, 0,16180,16180,16180,16180,16180, 16180,16180,16180,16180, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16180, 0, 0,16180, 16194,16194, 0,16194,16194,16194,16194, 0,16194,16194, 16194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16194,16194,16194,16194,16194,16194,16194, 0, 0, 0, 0, 0,16194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16194,16194,16194,16194,16195,16195, 0,16195,16195,16195, 16195, 0,16195,16195,16195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16195,16195,16195,16195,16195, 16195,16195,16195, 0, 0, 0, 0,16195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16195,16195,16195,16195,16242,16242, 0, 0, 0, 0,16242, 0, 0, 0,16242,16242, 16242,16242,16242,16242,16242,16242,16242, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16242, 0, 0, 0, 0, 0, 0,16242, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16242, 0,16242, 0,16242, 0, 0,16242, 0, 0, 0, 0,16242, 0, 0,16242, 0,16242, 0,16242, 0,16242,16242,16242,16243, 0, 0, 0, 0, 0, 0,16243,16243, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16243, 0,16243, 0,16243, 0, 0,16243, 0, 0, 0, 0,16243, 0, 0, 16243, 0,16243, 0,16243, 0,16243,16243,16243,16244, 0, 0, 0, 0, 0, 0,16244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16244, 0,16244, 0,16244, 0, 0,16244, 0, 0, 0, 0,16244,16244, 0,16244, 0,16244, 0,16244, 0,16244,16244,16244,16245, 0, 0, 0, 0, 0, 0,16245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16245, 0,16245, 0,16245, 0, 0,16245, 0, 0, 0, 0,16245, 0, 0, 16245, 0,16245, 0,16245, 0,16245,16245,16245,16246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16246, 0, 0, 0, 0, 0, 0,16246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16246, 0,16246, 0,16246, 0, 0, 16246, 0, 0, 0, 0,16246, 0, 0,16246, 0, 16246, 0,16246, 0,16246,16246,16246,16247,16247, 0, 0, 0, 0,16247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16247, 0, 0, 0, 0, 0, 0,16247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16247, 0,16247, 0,16247, 0, 0,16247, 0, 0, 0, 0,16247, 0, 0,16247, 0,16247, 0,16247, 0, 16247,16247,16247,16250, 0,16250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16250, 0, 0, 0, 0, 0, 0,16250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16250, 0, 16250, 0,16250, 0, 0,16250, 0, 0, 0, 0, 16250, 0, 0,16250, 0,16250, 0,16250, 0,16250, 16250,16250,16251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16251, 0, 0, 0, 0, 0, 16251,16251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16251, 0,16251, 0,16251, 0, 0,16251, 0, 0, 0, 0,16251, 0, 0, 16251, 0,16251, 0,16251, 0,16251,16251,16251,16252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16252, 0, 0, 0, 0, 0, 0,16252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16252, 0,16252,16252,16252, 0, 0,16252, 0, 0, 0, 0,16252, 0, 0,16252, 0,16252, 0,16252, 0,16252,16252,16252,16253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16253, 0, 0, 0, 0, 0, 0,16253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16253, 0,16253,16253,16253, 0, 0,16253, 0, 0, 0, 0,16253, 0, 0,16253, 0,16253, 0,16253, 0, 16253,16253,16253,16254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16254, 0, 0, 0, 0, 0, 0,16254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16254, 0,16254, 0, 16254, 0, 0,16254,16254, 0, 0, 0,16254, 0, 0,16254, 0,16254, 0,16254, 0,16254,16254,16254, 16254,16261,16261, 0, 0, 0, 0,16261, 0, 0, 16261, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16261, 0, 0, 0, 0, 0, 0,16261, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16261, 0,16261,16261,16261, 0, 0, 16261,16261, 0, 0, 0,16261, 0, 0,16261, 0, 16261, 0,16261, 0,16261,16261,16261,16267,16267, 0, 0, 0, 0,16267, 0, 0,16267, 0, 0, 0, 0,16267, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16267, 0, 16267, 0, 0, 0, 0,16267, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16267, 0,16267, 0,16267, 0, 0,16267, 0, 0, 0, 0,16267, 0, 0,16267, 0,16267, 0,16267, 0, 16267,16267,16267,16268,16268,16268, 0, 0, 0,16268, 0, 0,16268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16268, 0, 0, 0, 0, 0, 0,16268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16268, 0,16268, 0,16268, 0, 0,16268, 0, 0, 0, 0,16268, 0, 0, 16268, 0,16268, 0,16268, 0,16268,16268,16268,16269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16269, 0, 0, 0, 0, 0, 0,16269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16269, 0,16269, 0,16269, 0, 0,16269, 0, 0, 0, 0,16269,16269, 0,16269, 0,16269, 0,16269, 0,16269,16269,16269,16270, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16270, 0, 0,16270, 0, 0, 0,16270, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16270, 0,16270, 0,16270, 0, 0,16270, 0, 0, 0, 0,16270, 0, 0,16270, 0,16270, 0,16270, 0, 16270,16270,16270,16271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16271, 0, 0, 0, 0, 0, 0,16271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16271, 0,16271, 0, 16271, 0, 0,16271,16271, 0, 0, 0,16271, 0, 0,16271, 0,16271, 0,16271, 0,16271,16271,16271, 16271,16282,16282, 0, 0, 0, 0,16282, 0, 0, 16282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16282, 0, 0, 0, 0, 0, 0,16282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16282, 0,16282, 0,16282, 0, 0, 16282, 0, 0, 0, 0,16282, 0, 0,16282, 0, 16282, 0,16282, 0,16282,16282,16282,16295, 0, 0, 0, 0, 0, 0, 0, 0,16295,16295,16295,16295, 16295,16295,16295,16295,16295, 0, 0, 0, 0, 0, 0, 0,16295,16295,16295,16295,16295,16295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16295,16295, 16295,16295,16295,16295,16298,16298,16298,16298,16298,16298, 16298,16298,16298, 0, 0, 0, 0, 0, 0, 0, 16298,16298,16298,16298,16298,16298, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16298,16298,16298,16298, 16298,16298,16301, 0,16301,16301,16301,16301,16301,16301, 16301,16301,16301,16301, 0, 0, 0, 0, 0, 0, 16301,16301,16301,16301,16301,16301, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16301,16301,16301,16301, 16301,16301,16305,16305,16305,16305,16305,16305,16305,16305, 16305, 0, 0, 0, 0, 0, 0, 0,16305,16305, 16305,16305,16305,16305, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16305,16305,16305,16305,16305,16305, 16308, 0,16308,16308,16308,16308,16308,16308,16308,16308, 16308,16308, 0, 0, 0, 0, 0, 0,16308,16308, 16308,16308,16308,16308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16308,16308,16308,16308,16308,16308, 16311,16311,16311,16311,16311,16311,16311,16311,16311, 0, 0, 0, 0, 0, 0, 0,16311,16311,16311,16311, 16311,16311, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16311,16311,16311,16311,16311,16311,16314,16314, 16314,16314,16314,16314,16314,16314,16314,16314, 0, 0, 0, 0, 0, 0,16314,16314,16314,16314,16314,16314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16314,16314,16314,16314,16314,16314,16317,16317,16317,16317, 16317,16317,16317,16317,16317, 0, 0, 0, 0, 0, 0, 0,16317,16317,16317,16317,16317,16317, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16317,16317, 16317,16317,16317,16317,16320,16320,16320,16320,16320,16320, 16320,16320,16320,16320, 0, 0, 0, 0, 0, 0, 16320,16320,16320,16320,16320,16320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16320,16320,16320,16320, 16320,16320,16323,16323,16323,16323,16323,16323,16323,16323, 16323, 0, 0, 0, 0, 0, 0, 0,16323,16323, 16323,16323,16323,16323, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16323,16323,16323,16323,16323,16323, 16326,16326,16326,16326,16326,16326,16326,16326,16326,16326, 0, 0, 0, 0, 0, 0,16326,16326,16326,16326, 16326,16326, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16326,16326,16326,16326,16326,16326,16332,16332, 16332,16332,16332,16332,16332,16332,16332, 0, 0, 0, 0, 0, 0, 0,16332,16332,16332,16332,16332,16332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16332,16332,16332,16332,16332,16332,16335,16335,16335,16335, 16335,16335,16335,16335,16335,16335, 0, 0, 0, 0, 0, 0,16335,16335,16335,16335,16335,16335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16335,16335, 16335,16335,16335,16335,16339,16339,16339,16339,16339,16339, 16339,16339,16339,16339, 0, 0, 0, 0, 0, 0, 16339,16339,16339,16339,16339,16339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16339,16339,16339,16339, 16339,16339,16340,16340, 0,16340,16340,16340,16340,16340, 16340, 0,16340,16340, 0, 0, 0, 0, 0, 0, 0, 0, 0,16340,16340,16340,16340,16340,16340,16340, 0, 0, 0, 0, 0,16340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16340,16340,16340,16341,16341, 0,16341,16341, 16341,16341,16341,16341, 0,16341,16341, 0, 0, 0, 0, 0, 0, 0, 0, 0,16341,16341,16341,16341, 16341,16341,16341,16341, 0, 0, 0, 0,16341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16341,16341,16341,16345,16345, 0,16345,16345,16345,16345,16345,16345, 0,16345,16345, 0, 0, 0, 0, 0, 0, 0, 0, 0,16345, 16345,16345,16345,16345,16345,16345, 0, 0, 0, 0, 0,16345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16345,16345, 16345,16346,16346, 0,16346,16346,16346,16346,16346,16346, 0,16346,16346, 0, 0, 0, 0, 0, 0, 0, 0, 0,16346,16346,16346,16346,16346,16346,16346,16346, 0, 0, 0, 0,16346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16346,16346,16346,16348,16348, 0,16348,16348,16348, 16348,16348,16348, 0,16348,16348, 0, 0, 0, 0, 0, 0, 0, 0, 0,16348,16348,16348,16348,16348, 16348,16348, 0, 0, 0, 0, 0,16348, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16348,16348,16348,16349,16349, 0, 16349,16349,16349,16349,16349,16349, 0,16349,16349, 0, 0, 0, 0, 0, 0, 0, 0, 0,16349,16349, 16349,16349,16349,16349,16349,16349, 0, 0, 0, 0, 16349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16349,16349,16349, 16353,16353, 0,16353,16353,16353,16353,16353,16353, 0, 16353,16353, 0, 0, 0, 0, 0, 0, 0, 0, 0,16353,16353,16353,16353,16353,16353,16353, 0, 0, 0, 0, 0,16353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16353,16353,16353,16354,16354, 0,16354,16354,16354,16354, 16354,16354, 0,16354,16354, 0, 0, 0, 0, 0, 0, 0, 0, 0,16354,16354,16354,16354,16354,16354, 16354,16354, 0, 0, 0, 0,16354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16354,16354,16354,16357,16357, 0,16357, 16357,16357,16357,16357,16357, 0,16357,16357, 0, 0, 0, 0, 0, 0, 0, 0, 0,16357,16357,16357, 16357,16357,16357,16357, 0, 0, 0, 0, 0,16357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16357,16357,16357,16358, 16358, 0,16358,16358,16358,16358,16358,16358, 0,16358, 16358, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16358,16358,16358,16358,16358,16358,16358,16358, 0, 0, 0, 0,16358, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16358, 16358,16358,16361,16361, 0,16361,16361,16361,16361,16361, 16361, 0,16361,16361, 0, 0, 0, 0, 0, 0, 0, 0, 0,16361,16361,16361,16361,16361,16361,16361, 0, 0, 0, 0, 0,16361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16361,16361,16361,16362,16362, 0,16362,16362, 16362,16362,16362,16362, 0,16362,16362, 0, 0, 0, 0, 0, 0, 0, 0, 0,16362,16362,16362,16362, 16362,16362,16362,16362, 0, 0, 0, 0,16362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16362,16362,16362,16364,16364, 0,16364,16364,16364,16364,16364,16364, 0,16364,16364, 0, 0, 0, 0, 0, 0, 0, 0, 0,16364, 16364,16364,16364,16364,16364,16364, 0, 0, 0, 0, 0,16364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16364,16364, 16364,16365,16365, 0,16365,16365,16365,16365,16365,16365, 0,16365,16365, 0, 0, 0, 0, 0, 0, 0, 0, 0,16365,16365,16365,16365,16365,16365,16365,16365, 0, 0, 0, 0,16365, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16365,16365,16365,16366,16366, 0,16366,16366,16366, 16366,16366,16366, 0,16366,16366, 0, 0, 0, 0, 0, 0, 0, 0, 0,16366,16366,16366,16366,16366, 16366,16366, 0, 0, 0, 0, 0,16366,16366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16366,16366,16366, 0, 0, 0, 0, 0, 0, 0,16366,16367,16367, 0,16367,16367, 16367,16367,16367,16367, 0,16367,16367, 0,16367,16367, 16367,16367,16367,16367,16367,16367,16367,16367,16367,16367, 16367,16367,16367, 0, 0, 0, 0, 0,16367, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16367,16367,16367,16368,16368, 0,16368,16368,16368,16368,16368,16368, 0,16368,16368, 0, 0, 0, 0, 0, 0, 0, 0, 0,16368, 16368,16368,16368,16368,16368,16368, 0, 0, 0, 0, 0,16368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16368,16368, 16368,16369,16369, 0,16369,16369,16369,16369,16369,16369, 0,16369,16369, 0, 0, 0, 0, 0, 0, 0, 0, 0,16369,16369,16369,16369,16369,16369,16369, 0, 0, 0, 0, 0,16369,16369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16369,16369,16369, 0, 0, 0, 0, 0, 0, 0,16369,16371,16371, 0,16371,16371,16371,16371,16371, 16371, 0,16371,16371, 0, 0, 0, 0, 0, 0, 0, 0, 0,16371,16371,16371,16371,16371,16371,16371, 0, 0, 0, 0, 0,16371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16371,16371,16371,16372,16372, 0,16372,16372, 16372,16372,16372,16372, 0,16372,16372, 0, 0, 0, 0, 0, 0, 0, 0, 0,16372,16372,16372,16372, 16372,16372,16372,16372, 0, 0, 0, 0,16372, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16372,16372,16372,16376,16376, 0,16376,16376,16376,16376,16376,16376, 0,16376,16376, 0, 0, 0, 0, 0, 0, 0, 0, 0,16376, 16376,16376,16376,16376,16376,16376, 0, 0, 0, 0, 0,16376, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16376,16376, 16376,16377,16377, 0,16377,16377,16377,16377,16377,16377, 0,16377,16377, 0, 0, 0, 0, 0, 0, 0, 0, 0,16377,16377,16377,16377,16377,16377,16377,16377, 0, 0, 0, 0,16377, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16377,16377,16377,16381,16381, 0,16381,16381,16381, 16381,16381,16381, 0,16381,16381, 0, 0, 0, 0, 0, 0, 0, 0, 0,16381,16381,16381,16381,16381, 16381,16381, 0, 0, 0, 0, 0,16381, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16381,16381,16381,16382,16382, 0, 16382,16382,16382,16382,16382,16382, 0,16382,16382, 0, 0, 0, 0, 0, 0, 0, 0, 0,16382,16382, 16382,16382,16382,16382,16382,16382, 0, 0, 0, 0, 16382, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16382,16382,16382, 16385,16385, 0,16385,16385,16385,16385,16385,16385, 0, 16385,16385, 0, 0, 0, 0, 0, 0, 0, 0, 0,16385,16385,16385,16385,16385,16385,16385, 0, 0, 0, 0, 0,16385, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16385,16385,16385,16386,16386, 0,16386,16386,16386,16386, 16386,16386, 0,16386,16386, 0, 0, 0, 0, 0, 0, 0, 0, 0,16386,16386,16386,16386,16386,16386, 16386,16386, 0, 0, 0, 0,16386, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16386,16386,16386,16388,16388, 0,16388, 16388,16388,16388,16388,16388, 0,16388,16388, 0, 0, 0, 0, 0, 0, 0, 0, 0,16388,16388,16388, 16388,16388,16388,16388, 0, 0, 0, 0, 0,16388, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16388, 0, 0, 0, 0, 0,16388,16388,16388, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16388,16389,16389, 0,16389,16389,16389,16389,16389,16389, 0,16389,16389, 0, 0, 0, 0, 0, 0, 0, 0, 0,16389, 16389,16389,16389,16389,16389,16389, 0, 0, 0, 0, 0,16389, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16389,16389, 16389,16390,16390, 0,16390,16390,16390,16390,16390,16390, 0,16390,16390, 0, 0, 0, 0, 0, 0, 0, 0, 0,16390,16390,16390,16390,16390,16390,16390,16390, 0, 0, 0, 0,16390, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16390,16390,16390,16391,16391, 0,16391,16391,16391, 16391,16391,16391, 0,16391,16391, 0, 0, 0, 0, 0, 0, 0, 0, 0,16391,16391,16391,16391,16391, 16391,16391, 0, 0, 0, 0, 0,16391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16391,16391,16391,16392,16392, 0, 16392,16392,16392,16392,16392,16392, 0,16392,16392, 0, 0, 0, 0, 0, 0, 0, 0, 0,16392,16392, 16392,16392,16392,16392,16392,16392, 0, 0, 0, 0, 16392, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16392,16392,16392, 16396,16396, 0,16396,16396,16396,16396,16396,16396, 0, 16396,16396, 0, 0, 0, 0, 0, 0, 0, 0, 0,16396,16396,16396,16396,16396,16396,16396, 0, 0, 0, 0, 0,16396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16396,16396,16396,16397,16397, 0,16397,16397,16397,16397, 16397,16397, 0,16397,16397, 0, 0, 0, 0, 0, 0, 0, 0, 0,16397,16397,16397,16397,16397,16397, 16397,16397, 0, 0, 0, 0,16397, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16397,16397,16397,16400,16400, 0,16400, 16400,16400,16400,16400,16400, 0,16400,16400, 0, 0, 0, 0, 0, 0, 0, 0, 0,16400,16400,16400, 16400,16400,16400,16400, 0, 0, 0, 0, 0,16400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16400,16400,16400,16401, 16401, 0,16401,16401,16401,16401,16401,16401, 0,16401, 16401, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16401,16401,16401,16401,16401,16401,16401,16401, 0, 0, 0, 0,16401, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16401, 16401,16401,16403,16403, 0,16403,16403,16403,16403,16403, 16403, 0,16403,16403, 0, 0, 0, 0, 0, 0, 0, 0, 0,16403,16403,16403,16403,16403,16403,16403, 0, 0, 0, 0, 0,16403, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16403, 0, 0, 0, 0, 0,16403,16403,16403, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16403,16404,16404, 0,16404,16404,16404, 16404,16404,16404, 0,16404,16404, 0, 0, 0, 0, 0, 0, 0, 0, 0,16404,16404,16404,16404,16404, 16404,16404, 0, 0, 0, 0, 0,16404, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16404,16404,16404,16405,16405, 0, 16405,16405,16405,16405,16405,16405, 0,16405,16405, 0, 0, 0, 0, 0, 0, 0, 0, 0,16405,16405, 16405,16405,16405,16405,16405,16405, 0, 0, 0, 0, 16405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16405,16405,16405, 16406,16406, 0,16406,16406,16406,16406,16406,16406, 0, 16406,16406, 0, 0, 0, 0, 0, 0, 0, 0, 0,16406,16406,16406,16406,16406,16406,16406, 0, 0, 0, 0, 0,16406, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16406,16406,16406,16407,16407, 0,16407,16407,16407,16407, 16407,16407, 0,16407,16407, 0, 0, 0, 0, 0, 0, 0, 0, 0,16407,16407,16407,16407,16407,16407, 16407,16407, 0, 0, 0, 0,16407, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16407,16407,16407,16417, 0,16417,16417, 16417,16417,16417,16417,16417,16417,16417,16417, 0, 0, 0, 0, 0, 0,16417,16417,16417,16417,16417,16417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16417,16417,16417,16417,16417,16417,16423, 0, 0, 0, 0, 0, 0, 0, 0,16423,16423,16423,16423,16423, 16423,16423,16423,16423,16423, 0, 0, 0, 0, 0, 0,16423,16423,16423,16423,16423,16423, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16423,16423,16423, 16423,16423,16423,16427,16427,16427,16427,16427,16427,16427, 16427,16427,16427, 0, 0, 0, 0, 0, 0,16427, 16427,16427,16427,16427,16427, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16427,16427,16427,16427,16427, 16427,16431,16431,16431,16431,16431,16431,16431,16431,16431, 16431, 0, 0, 0, 0, 0, 0,16431,16431,16431, 16431,16431,16431, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16431,16431,16431,16431,16431,16431,16435, 16435,16435,16435,16435,16435,16435,16435,16435,16435, 0, 0, 0, 0, 0, 0,16435,16435,16435,16435,16435, 16435, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16435,16435,16435,16435,16435,16435,16436, 0, 0, 0, 0, 0, 0, 0, 0,16436,16436,16436,16436, 16436,16436,16436,16436,16436, 0, 0, 0, 0, 0, 0, 0,16436,16436,16436,16436,16436,16436, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16436,16436, 16436,16436,16436,16436,16439,16439,16439,16439,16439,16439, 16439,16439,16439,16439, 0, 0, 0, 0, 0, 0, 16439,16439,16439,16439,16439,16439, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16439,16439,16439,16439, 16439,16439,16442,16442, 0,16442,16442,16442,16442,16442, 16442, 0,16442,16442, 0, 0, 0, 0, 0, 0, 0, 0, 0,16442,16442,16442,16442,16442,16442,16442, 0, 0, 0, 0, 0,16442, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16442,16442,16442,16443,16443, 0,16443,16443, 16443,16443,16443,16443, 0,16443,16443, 0, 0, 0, 0, 0, 0, 0, 0, 0,16443,16443,16443,16443, 16443,16443,16443,16443, 0, 0, 0, 0,16443, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16443,16443,16443,16456, 0, 0, 0,16456, 0,16456, 0, 0,16456,16456,16456, 16456,16456,16456,16456,16456,16456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16456, 0, 0,16456,16468,16468, 0,16468,16468,16468,16468,16468,16468, 0,16468,16468, 0, 0, 0, 0, 0, 0, 0, 0, 0,16468, 16468,16468,16468,16468,16468,16468, 0, 0, 0, 0, 0,16468, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16468,16468, 16468, 0, 0, 0,16468,16469,16469, 0,16469,16469, 16469,16469,16469,16469, 0,16469,16469, 0, 0, 0, 0, 0, 0, 0, 0, 0,16469,16469,16469,16469, 16469,16469,16469,16469, 0, 0, 0, 0,16469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16469,16469,16469, 0, 0, 0,16469,16482,16482, 0,16482,16482,16482,16482,16482, 16482, 0,16482,16482, 0, 0, 0, 0, 0, 0, 0, 0, 0,16482,16482,16482,16482,16482,16482,16482, 0, 0, 0, 0, 0,16482, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16482,16482,16482, 0, 0, 0,16482, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16482,16483,16483, 0,16483,16483, 16483,16483,16483,16483, 0,16483,16483, 0, 0, 0, 0, 0, 0, 0, 0, 0,16483,16483,16483,16483, 16483,16483,16483, 0, 0, 0, 0, 0,16483, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16483,16483,16483, 0, 0, 0,16483,16484,16484, 0,16484,16484,16484,16484,16484, 16484, 0,16484,16484, 0, 0, 0, 0, 0, 0, 0, 0, 0,16484,16484,16484,16484,16484,16484,16484, 16484, 0, 0, 0, 0,16484, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16484,16484,16484, 0, 0, 0,16484,16488, 16488, 0,16488,16488,16488,16488,16488,16488, 0,16488, 16488, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16488,16488,16488,16488,16488,16488,16488, 0, 0, 0, 0, 0,16488, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16488, 0, 0, 0, 0,16488, 16488,16488, 0, 0, 0,16488, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16488,16490, 0, 0, 0, 0, 0, 0, 0, 0, 0,16490,16490,16490,16490,16490,16490,16490,16490, 16490, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16490, 0, 0, 0, 0, 0, 0, 0,16490,16503,16503, 0,16503,16503,16503,16503, 0, 16503,16503,16503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16503,16503,16503,16503,16503,16503,16503, 0, 0, 0, 0, 0,16503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16503,16503,16503,16503,16504,16504, 0,16504, 16504,16504,16504, 0,16504,16504,16504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16504,16504,16504, 16504,16504,16504,16504,16504, 0, 0, 0, 0,16504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16504,16504,16504,16504, 16508,16508,16508,16508,16508,16508,16508,16508,16508, 0, 0, 0, 0, 0, 0, 0,16508,16508,16508,16508, 16508,16508, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16508,16508,16508,16508,16508,16508,16545,16545, 0, 0, 0, 0,16545, 0, 0, 0,16545,16545, 16545,16545,16545,16545,16545,16545,16545,16546,16546, 0, 0, 0, 0,16546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16546, 0, 0, 0, 0, 0, 0,16546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16546, 0,16546, 0,16546, 0, 0,16546, 0, 0, 0, 0,16546, 0, 0,16546, 0,16546, 0,16546, 0, 16546,16546,16546,16547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16547, 0, 0, 0, 0, 0, 0,16547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16547, 0,16547, 0, 16547, 0, 0,16547, 0, 0, 0, 0,16547, 0, 0,16547, 0,16547, 0,16547, 0,16547,16547,16547, 16548,16548, 0, 0, 0, 0,16548, 0, 0,16548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16548, 0, 0, 0, 0, 0, 0,16548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16548, 0,16548, 0,16548, 0, 0,16548, 0, 0, 0, 0,16548, 0, 0,16548, 0,16548, 0,16548, 0,16548,16548,16548,16549, 0, 0, 0, 0, 0, 0,16549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16549, 0,16549, 0,16549, 0, 0,16549, 0, 0, 0, 0,16549, 0, 0,16549, 0,16549, 0,16549, 0,16549,16549, 16549,16552, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16552, 0, 0, 0, 0, 0, 0, 16552, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16552, 0,16552, 0,16552, 0, 0,16552, 0, 0, 0,16552,16552, 0, 0,16552, 0,16552,16552,16552, 0,16552,16552,16552,16553, 0, 0, 0, 0, 0, 0, 0,16553, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16553, 0, 0, 0, 0, 0, 0,16553, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16553, 0,16553, 0,16553, 0, 0,16553, 0, 0, 0, 0,16553, 0, 0,16553, 0,16553, 0,16553, 0, 16553,16553,16553,16554, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16554, 0, 0, 0, 0, 0, 0,16554, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16554, 0,16554, 0, 16554, 0, 0,16554, 0, 0, 0, 0,16554, 0, 0,16554, 0,16554, 0,16554, 0,16554,16554,16554, 16555, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16555, 0, 0, 0, 0, 0, 0,16555, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16555, 0,16555, 0,16555, 0, 0, 16555, 0, 0, 0, 0,16555, 0, 0,16555, 0, 16555, 0,16555, 0,16555,16555,16555,16556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16556, 0, 0, 0, 0, 0, 0,16556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16556, 0,16556, 0,16556, 0, 0,16556, 0, 0, 0, 0,16556,16556, 0,16556, 0,16556, 0,16556, 0,16556,16556,16556,16557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16557, 0, 0, 0, 0, 0, 0,16557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16557,16557,16557, 0,16557, 0, 0,16557, 0, 0, 0, 0,16557, 0, 0,16557, 0,16557, 0,16557, 0,16557,16557, 16557,16558, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16558, 0, 0, 0, 0, 0, 0, 16558, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16558, 0,16558, 0,16558, 0, 0,16558, 0, 0, 0, 0,16558, 0, 0,16558, 0,16558, 0,16558, 0,16558,16558,16558,16559,16559, 0, 0, 0, 0,16559, 0, 0,16559, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16559, 0, 0, 0, 0, 0, 0,16559, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16559, 0,16559, 0,16559, 0, 0,16559, 0, 0, 0, 0,16559, 0, 0,16559, 0,16559, 0,16559, 0,16559,16559,16559,16560, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16560, 0, 0, 0, 0, 0, 0,16560, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16560, 0,16560, 0,16560, 0, 0,16560, 0, 0, 0,16560,16560, 0, 0,16560, 0,16560, 0,16560, 0,16560,16560, 16560,16561,16561, 0, 0, 0, 0,16561, 0, 0, 16561, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16561, 0, 0, 0, 0, 0, 0,16561, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16561, 0,16561, 0,16561, 0, 0, 16561, 0, 0, 0, 0,16561, 0, 0,16561, 0, 16561, 0,16561, 0,16561,16561,16561,16579, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16579, 0, 0, 0, 0, 0, 0,16579, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16579, 0,16579,16579,16579, 0, 0,16579, 0, 0, 0, 0,16579, 0, 0,16579, 0,16579, 0,16579, 0,16579,16579,16579,16580, 0, 0, 0,16580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16580, 0, 0, 0, 0, 0, 0,16580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16580, 0,16580, 0,16580, 0, 0,16580, 0, 0, 0, 0,16580, 0, 0,16580, 0,16580, 0,16580, 0,16580,16580, 16580,16581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16581, 0, 0, 0, 0, 0, 0, 16581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16581, 0,16581, 0,16581, 0, 0,16581, 0, 0, 0, 0,16581, 0, 0,16581, 0,16581, 0,16581, 0,16581,16581,16581,16581,16582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16582, 0, 0, 0, 0, 0, 0,16582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16582, 0,16582,16582,16582, 0, 0,16582, 0, 0, 0, 0,16582, 0, 0,16582, 0,16582, 0,16582, 0,16582,16582,16582,16583, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16583, 0, 0, 0, 0, 0, 0,16583, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16583, 0,16583, 0,16583, 0,16583,16583, 0, 0, 0, 0,16583, 0,16583,16583, 0,16583, 0,16583, 0, 16583,16583,16583,16587,16587, 0, 0, 0, 0,16587, 0, 0,16587,16587,16587,16587,16587,16587,16587,16587, 16587,16587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16587, 0, 0, 0, 0, 0, 0,16587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16587, 0,16587, 0,16587, 0, 0,16587, 0, 0, 0, 0,16587, 0, 0, 16587, 0,16587, 0,16587, 0,16587,16587,16587,16588, 0, 0, 0, 0, 0, 0,16588,16588, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16588, 0, 0, 0, 0, 0, 0,16588, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16588, 0,16588, 0,16588, 0, 0,16588, 0, 0, 0, 0,16588, 0, 0,16588, 0,16588, 0,16588, 0,16588,16588,16588,16589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16589, 0, 0, 0, 0, 0, 0,16589,16589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16589, 0,16589, 0,16589, 0, 0,16589, 0, 0, 0, 0,16589, 0, 0,16589, 0,16589, 0,16589, 0,16589,16589, 16589,16590, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16590, 0, 0, 0, 0, 0, 0, 16590, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16590, 0,16590, 0,16590, 0, 0,16590, 0, 0, 0, 0,16590,16590, 0,16590, 0,16590, 0,16590, 0,16590,16590,16590,16591, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16591, 0, 0, 0, 0, 0, 0,16591, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16591, 0,16591, 0,16591, 0, 0,16591, 0, 0, 0, 0,16591, 0, 0,16591, 0,16591, 0, 16591, 0,16591,16591,16591,16592,16592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16592, 0, 0, 0, 0, 0, 0,16592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16592, 0,16592, 0,16592, 0, 0,16592, 0, 0, 0, 0,16592, 0, 0,16592, 0,16592, 0,16592, 0, 16592,16592,16592,16593,16593, 0, 0, 0, 0,16593, 0, 0,16593, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16593, 0,16593, 0, 0, 0, 0,16593, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16593, 0,16593, 0,16593, 0, 0,16593, 0, 0, 0, 0,16593, 0, 0, 16593, 0,16593, 0,16593, 0,16593,16593,16593,16611, 0,16611,16611,16611,16611,16611,16611,16611,16611,16611, 16611, 0, 0, 0, 0, 0, 0,16611,16611,16611, 16611,16611,16611, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16611,16611,16611,16611,16611,16611,16617, 0, 0, 0, 0, 0, 0, 0, 0,16617,16617, 16617,16617,16617,16617,16617,16617,16617,16617, 0, 0, 0, 0, 0, 0,16617,16617,16617,16617,16617,16617, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16617,16617,16617,16617,16617,16617,16621,16621,16621,16621, 16621,16621,16621,16621,16621,16621, 0, 0, 0, 0, 0, 0,16621,16621,16621,16621,16621,16621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16621,16621, 16621,16621,16621,16621,16625,16625,16625,16625,16625,16625, 16625,16625,16625,16625, 0, 0, 0, 0, 0, 0, 16625,16625,16625,16625,16625,16625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16625,16625,16625,16625, 16625,16625,16629,16629,16629,16629,16629,16629,16629,16629, 16629,16629, 0, 0, 0, 0, 0, 0,16629,16629, 16629,16629,16629,16629, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16629,16629,16629,16629,16629,16629, 16630, 0, 0, 0, 0, 0, 0, 0, 0,16630, 16630,16630,16630,16630,16630,16630,16630,16630, 0, 0, 0, 0, 0, 0, 0,16630,16630,16630,16630,16630, 16630, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16630,16630,16630,16630,16630,16630,16633,16633,16633, 16633,16633,16633,16633,16633,16633,16633, 0, 0, 0, 0, 0, 0,16633,16633,16633,16633,16633,16633, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16633, 16633,16633,16633,16633,16633,16636,16636, 0,16636,16636, 16636,16636,16636,16636, 0,16636,16636, 0, 0, 0, 0, 0, 0, 0, 0, 0,16636,16636,16636,16636, 16636,16636,16636, 0, 0, 0, 0, 0,16636, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16636,16636,16636,16637,16637, 0,16637,16637,16637,16637,16637,16637, 0,16637,16637, 0, 0, 0, 0, 0, 0, 0, 0, 0,16637, 16637,16637,16637,16637,16637,16637,16637, 0, 0, 0, 0,16637, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16637,16637, 16637,16641,16641, 0,16641,16641,16641,16641,16641,16641, 16641,16641,16641, 0, 0, 0, 0, 0, 0, 0, 0, 0,16641,16641,16641,16641,16641,16641,16641, 0, 0, 0, 0, 0,16641, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16641,16641,16641,16641,16642,16642, 0,16642,16642, 16642,16642,16642,16642, 0,16642,16642, 0, 0, 0, 0, 0, 0, 0, 0, 0,16642,16642,16642,16642, 16642,16642,16642, 0, 0, 0, 0, 0,16642, 0, 0, 0, 0, 0,16642, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16642,16642,16642,16643,16643, 0,16643,16643,16643,16643,16643,16643, 0,16643,16643, 0, 0, 0, 0, 0, 0, 0, 0, 0,16643, 16643,16643,16643,16643,16643,16643, 0, 0, 0, 0, 0,16643, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16643,16643, 16643,16644,16644, 0,16644,16644,16644,16644,16644,16644, 0,16644,16644, 0, 0, 0, 0, 0, 0, 0, 0, 0,16644,16644,16644,16644,16644,16644,16644,16644, 0, 0, 0, 0,16644, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16644,16644,16644,16648,16648, 0,16648,16648,16648, 16648,16648,16648, 0,16648,16648, 0, 0, 0, 0, 0, 0, 0, 0, 0,16648,16648,16648,16648,16648, 16648,16648, 0, 0, 0, 0, 0,16648, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16648,16648,16648,16649,16649, 0, 16649,16649,16649,16649,16649,16649, 0,16649,16649, 0, 0, 0, 0, 0, 0, 0, 0, 0,16649,16649, 16649,16649,16649,16649,16649,16649, 0, 0, 0, 0, 16649, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16649,16649,16649, 16653,16653, 0,16653,16653,16653,16653,16653,16653, 0, 16653,16653, 0, 0, 0, 0, 0, 0, 0, 0, 0,16653,16653,16653,16653,16653,16653,16653, 0, 0, 0, 0, 0,16653, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16653,16653,16653,16654,16654, 0,16654,16654,16654,16654, 16654,16654, 0,16654,16654, 0, 0, 0, 0, 0, 0, 0, 0, 0,16654,16654,16654,16654,16654,16654, 16654,16654, 0, 0, 0, 0,16654, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16654,16654,16654,16658,16658, 0,16658, 16658,16658,16658,16658,16658, 0,16658,16658, 0, 0, 0, 0, 0, 0, 0, 0, 0,16658,16658,16658, 16658,16658,16658,16658, 0, 0, 0, 0, 0,16658, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16658,16658,16658,16659, 16659, 0,16659,16659,16659,16659,16659,16659, 0,16659, 16659, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16659,16659,16659,16659,16659,16659,16659,16659, 0, 0, 0, 0,16659, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16659, 16659,16659,16662,16662, 0,16662,16662,16662,16662,16662, 16662, 0,16662,16662, 0, 0, 0, 0, 0, 0, 0, 0, 0,16662,16662,16662,16662,16662,16662,16662, 0, 0, 0, 0, 0,16662, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16662,16662,16662,16663,16663, 0,16663,16663, 16663,16663,16663,16663, 0,16663,16663, 0, 0, 0, 0, 0, 0, 0, 0, 0,16663,16663,16663,16663, 16663,16663,16663,16663, 0, 0, 0, 0,16663, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16663,16663,16663,16665,16665, 0,16665,16665,16665,16665,16665,16665, 0,16665,16665, 0, 0, 0, 0, 0, 0, 0, 0, 0,16665, 16665,16665,16665,16665,16665,16665, 0, 0, 0, 0, 0,16665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16665,16665, 16665,16666,16666, 0,16666,16666,16666,16666,16666,16666, 0,16666,16666, 0, 0, 0, 0, 0, 0, 0, 0, 0,16666,16666,16666,16666,16666,16666,16666,16666, 0, 0, 0, 0,16666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16666,16666,16666,16667,16667, 0,16667,16667,16667, 16667,16667,16667, 0,16667,16667, 0, 0, 0, 0, 0, 0, 0, 0, 0,16667,16667,16667,16667,16667, 16667,16667, 0, 0, 0, 0, 0,16667, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16667, 0, 0,16667,16667,16667, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16667,16668, 16668, 0,16668,16668,16668,16668,16668,16668, 0,16668, 16668, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16668,16668,16668,16668,16668,16668,16668, 0, 0, 0, 0, 0,16668, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16668, 16668,16668,16669,16669, 0,16669,16669,16669,16669,16669, 16669, 0,16669,16669,16669,16669,16669,16669,16669,16669, 16669,16669,16669,16669,16669,16669,16669,16669,16669,16669, 0, 0, 0, 0, 0,16669, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16669,16669,16669,16671,16671, 0,16671,16671, 16671,16671,16671,16671, 0,16671,16671, 0, 0, 0, 0, 0, 0, 0, 0, 0,16671,16671,16671,16671, 16671,16671,16671, 0, 0, 0, 0, 0,16671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16671,16671,16671,16672,16672, 0,16672,16672,16672,16672,16672,16672, 0,16672,16672, 0, 0, 0, 0, 0, 0, 0, 0, 0,16672, 16672,16672,16672,16672,16672,16672,16672, 0, 0, 0, 0,16672, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16672,16672, 16672,16673,16673, 0,16673,16673,16673,16673,16673,16673, 0,16673,16673, 0, 0, 0, 0, 0, 0, 0, 0, 0,16673,16673,16673,16673,16673,16673,16673, 0, 0, 0, 0, 0,16673, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16673, 0, 0,16673,16673,16673, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16673,16684,16684, 0,16684, 16684,16684,16684,16684,16684, 0,16684,16684, 0, 0, 0, 0, 0, 0, 0, 0, 0,16684,16684,16684, 16684,16684,16684,16684, 0, 0, 0, 0, 0,16684, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16684,16684,16684,16685, 16685, 0,16685,16685,16685,16685,16685,16685, 0,16685, 16685, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16685,16685,16685,16685,16685,16685,16685,16685, 0, 0, 0, 0,16685, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16685, 16685,16685,16699,16699, 0,16699,16699,16699,16699,16699, 16699, 0,16699,16699, 0, 0, 0, 0, 0, 0, 0, 0, 0,16699,16699,16699,16699,16699,16699,16699, 0, 0, 0, 0, 0,16699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16699,16699,16699,16700,16700, 0,16700,16700, 16700,16700,16700,16700, 0,16700,16700, 0, 0, 0, 0, 0, 0, 0, 0, 0,16700,16700,16700,16700, 16700,16700,16700,16700, 0, 0, 0, 0,16700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16700,16700,16700,16720,16720, 0,16720,16720,16720,16720,16720,16720, 0,16720,16720, 0, 0, 0, 0, 0, 0, 0, 0, 0,16720, 16720,16720,16720,16720,16720,16720, 0, 0, 0, 0, 0,16720, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16720,16720, 16720,16721,16721, 0,16721,16721,16721,16721,16721,16721, 0,16721,16721, 0, 0, 0, 0, 0, 0, 0, 0, 0,16721,16721,16721,16721,16721,16721,16721,16721, 0, 0, 0, 0,16721, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16721,16721,16721,16725, 0,16725,16725,16725,16725, 16725,16725,16725,16725,16725,16725, 0, 0, 0, 0, 0, 0,16725,16725,16725,16725,16725,16725, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16725,16725, 16725,16725,16725,16725,16729, 0, 0, 0, 0, 0, 0,16729, 0,16729,16729,16729,16729,16729,16729,16729, 16729,16729,16729, 0, 0, 0, 0, 0, 0,16729, 16729,16729,16729,16729,16729, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16729,16729,16729,16729,16729, 16729,16747,16747, 0,16747,16747,16747,16747,16747,16747, 0,16747,16747, 0, 0, 0, 0, 0, 0, 0, 0, 0,16747,16747,16747,16747,16747,16747,16747, 0, 0, 0, 0, 0,16747, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16747,16747,16747, 0, 0, 0,16747,16748,16748, 0,16748,16748,16748,16748,16748,16748, 0,16748,16748, 0, 0, 0, 0, 0, 0, 0, 0, 0,16748, 16748,16748,16748,16748,16748,16748,16748, 0, 0, 0, 0,16748, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16748,16748, 16748, 0, 0, 0,16748,16762,16762, 0,16762,16762, 16762,16762,16762,16762, 0,16762,16762, 0, 0, 0, 0, 0, 0, 0, 0, 0,16762,16762,16762,16762, 16762,16762,16762, 0, 0, 0, 0, 0,16762, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16762,16762,16762, 0, 0, 0,16762, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16762,16763,16763, 0,16763,16763,16763,16763,16763,16763,16763,16763,16763, 0, 0, 0, 0, 0, 0, 0, 0, 0,16763, 16763,16763,16763,16763,16763,16763, 0, 0, 0, 0, 0,16763, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16763,16763, 16763,16763, 0, 0,16763,16764,16764, 0,16764,16764, 16764,16764,16764,16764, 0,16764,16764, 0, 0, 0, 0, 0, 0, 0, 0, 0,16764,16764,16764,16764, 16764,16764,16764, 0, 0, 0, 0, 0,16764, 0, 0, 0, 0, 0,16764, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16764,16764,16764, 0, 0, 0,16764,16765,16765, 0,16765,16765,16765,16765,16765, 16765, 0,16765,16765, 0, 0, 0, 0, 0, 0, 0, 0, 0,16765,16765,16765,16765,16765,16765,16765, 0, 0, 0, 0, 0,16765, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16765,16765,16765, 0, 0, 0,16765, 0, 16765,16766,16766, 0,16766,16766,16766,16766,16766,16766, 0,16766,16766, 0, 0, 0, 0, 0, 0, 0, 0, 0,16766,16766,16766,16766,16766,16766,16766,16766, 0, 0, 0, 0,16766, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16766,16766,16766, 0, 0, 0,16766,16768, 0, 0, 0, 0, 0, 0, 0, 0, 0,16768,16768, 16768,16768,16768,16768,16768,16768,16768,16768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16768, 16783,16783, 0,16783,16783,16783,16783, 0,16783,16783, 16783, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16783,16783,16783,16783,16783,16783,16783, 0, 0, 0, 0, 0,16783, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16783,16783,16783,16783,16784,16784, 0,16784,16784,16784, 16784, 0,16784,16784,16784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16784,16784,16784,16784,16784, 16784,16784,16784, 0, 0, 0, 0,16784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16784,16784,16784,16784,16788,16788, 16788,16788,16788,16788,16788,16788,16788, 0, 0, 0, 0, 0, 0, 0,16788,16788,16788,16788,16788,16788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16788,16788,16788,16788,16788,16788,16823, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16823, 0, 0, 0, 0, 0, 0,16823, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16823, 0,16823, 0,16823, 0, 0,16823, 0, 0, 0, 0,16823, 0, 0,16823, 0,16823, 0,16823, 0,16823,16823, 16823,16824, 0, 0, 0, 0, 0, 0,16824, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16824, 0,16824, 0,16824, 0, 0,16824, 0, 0, 0, 0,16824, 0,16824,16824, 0,16824, 0,16824, 0,16824,16824,16824,16825,16825, 0, 0, 0, 0,16825, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16825, 0, 0,16825, 0,16825, 0, 0, 0, 0,16825, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16825, 0, 16825, 0,16825, 0, 0,16825, 0, 0, 0, 0, 16825, 0, 0,16825, 0,16825, 0,16825, 0,16825, 16825,16825,16826,16826, 0, 0, 0, 0,16826, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16826, 0, 0, 0, 0, 0, 0, 16826, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16826, 0,16826, 0,16826, 0, 0,16826, 0, 0, 0, 0,16826, 0, 0,16826, 0,16826, 0,16826, 0,16826,16826,16826,16827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16827, 0, 0, 0, 0, 0, 0,16827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16827, 0,16827, 0,16827, 0, 0,16827, 0, 0, 0, 0,16827, 0,16827,16827, 0,16827, 0, 16827, 0,16827,16827,16827,16828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16828, 0, 0, 0, 0, 0,16828,16828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16828, 0, 16828, 0,16828, 0, 0,16828, 0, 0, 0, 0, 16828, 0, 0,16828, 0,16828, 0,16828, 0,16828, 16828,16828,16829, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16829, 0, 0, 0, 0, 0, 0,16829, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16829, 0,16829, 0,16829, 0, 0,16829,16829, 0, 0, 0,16829, 0, 0, 16829, 0,16829, 0,16829, 0,16829,16829,16829,16829, 16833,16833, 0, 0, 0, 0,16833, 0, 0,16833, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16833, 0, 0, 0, 0, 0, 0,16833, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16833, 0,16833, 0,16833, 0, 0,16833, 0, 0, 0, 0,16833, 0, 0,16833, 0,16833, 0,16833, 0,16833,16833,16833,16835,16835, 0, 0, 0, 0,16835, 0, 0,16835, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16835, 0, 0, 0, 0, 0, 0,16835, 0, 0, 0, 0, 0, 16835, 0, 0, 0, 0, 0, 0, 0,16835, 0, 16835, 0,16835, 0, 0,16835, 0, 0, 0, 0, 16835, 0, 0,16835, 0,16835, 0,16835, 0,16835, 16835,16835,16862,16862, 0, 0, 0, 0,16862, 0, 0,16862, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16862, 0, 0, 0, 0, 0, 0, 16862, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16862, 0,16862, 0,16862, 0, 0,16862, 0, 0, 0, 0,16862, 0, 0,16862, 0,16862, 0,16862, 0,16862,16862,16862,16863, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16863, 0,16863, 0, 0, 0, 0,16863, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16863, 0,16863, 0,16863, 0, 0,16863, 0, 0, 0, 0,16863, 0, 0,16863, 0,16863, 0, 16863, 0,16863,16863,16863,16864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16864, 0, 0, 0, 0, 0, 0,16864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16864, 0, 16864, 0,16864, 0, 0,16864, 0, 0, 0, 0, 16864, 0, 0,16864, 0,16864, 0,16864, 0,16864, 16864,16864,16865, 0, 0, 0, 0, 0, 0, 0, 0, 0,16865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16865, 0, 0, 0, 0, 0, 0,16865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16865, 0,16865, 0,16865, 0, 0,16865, 0, 0, 0, 0,16865, 0, 0, 16865, 0,16865, 0,16865, 0,16865,16865,16865,16866, 16866, 0, 0, 0, 0,16866, 0, 0,16866, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16866, 0, 0, 0, 0, 0, 0,16866, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16866, 0,16866, 0,16866, 0, 0,16866, 0, 0, 0, 0,16866, 0, 0,16866, 0,16866, 0, 16866, 0,16866,16866,16866,16867, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16867, 0, 0, 0, 0, 0, 0,16867, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16867, 0, 16867, 0,16867, 0, 0,16867, 0, 0, 0, 0, 16867, 0, 0,16867, 0,16867, 0,16867, 0,16867, 16867,16867,16880, 0,16880,16880,16880,16880,16880,16880, 16880,16880,16880,16880, 0, 0, 0, 0, 0, 0, 16880,16880,16880,16880,16880,16880, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16880,16880,16880,16880, 16880,16880,16884, 0, 0, 0, 0, 0, 0, 0, 0,16884,16884,16884,16884,16884,16884,16884,16884,16884, 16884, 0, 0, 0, 0, 0, 0,16884,16884,16884, 16884,16884,16884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16884,16884,16884,16884,16884,16884,16885, 16885, 0,16885,16885,16885,16885,16885,16885, 0,16885, 16885, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16885,16885,16885,16885,16885,16885,16885, 0, 0, 0, 0, 0,16885, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16885, 16885,16885,16886,16886, 0,16886,16886,16886,16886,16886, 16886, 0,16886,16886, 0, 0, 0, 0, 0, 0, 0, 0, 0,16886,16886,16886,16886,16886,16886,16886, 16886, 0, 0, 0, 0,16886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16886,16886,16886,16887,16887, 0,16887,16887, 16887,16887,16887,16887, 0,16887,16887, 0, 0, 0, 0, 0, 0, 0, 0, 0,16887,16887,16887,16887, 16887,16887,16887, 0, 0, 0, 0, 0,16887, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16887,16887,16887,16888,16888, 0,16888,16888,16888,16888,16888,16888, 0,16888,16888, 0, 0, 0, 0, 0, 0, 0, 0, 0,16888, 16888,16888,16888,16888,16888,16888, 0, 0, 0, 0, 0,16888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16888,16888, 16888,16889,16889, 0,16889,16889,16889,16889,16889,16889, 0,16889,16889, 0, 0, 0, 0, 0, 0, 0, 0, 0,16889,16889,16889,16889,16889,16889,16889,16889, 0, 0, 0, 0,16889, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16889,16889,16889,16893,16893, 0,16893,16893,16893, 16893,16893,16893, 0,16893,16893, 0, 0, 0, 0, 0, 0, 0, 0, 0,16893,16893,16893,16893,16893, 16893,16893, 0, 0, 0, 0, 0,16893, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16893,16893,16893,16894,16894, 0, 16894,16894,16894,16894,16894,16894, 0,16894,16894, 0, 0, 0, 0, 0, 0, 0, 0, 0,16894,16894, 16894,16894,16894,16894,16894,16894, 0, 0, 0, 0, 16894, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16894,16894,16894, 16898,16898, 0,16898,16898,16898,16898,16898,16898, 0, 16898,16898, 0, 0, 0, 0, 0, 0, 0, 0, 0,16898,16898,16898,16898,16898,16898,16898, 0, 0, 0, 0, 0,16898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16898,16898,16898,16899,16899, 0,16899,16899,16899,16899, 16899,16899, 0,16899,16899, 0, 0, 0, 0, 0, 0, 0, 0, 0,16899,16899,16899,16899,16899,16899, 16899,16899, 0, 0, 0, 0,16899, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16899,16899,16899,16903,16903, 0,16903, 16903,16903,16903,16903,16903, 0,16903,16903, 0, 0, 0, 0, 0, 0, 0, 0, 0,16903,16903,16903, 16903,16903,16903,16903, 0, 0, 0, 0, 0,16903, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16903,16903,16903,16904, 16904, 0,16904,16904,16904,16904,16904,16904, 0,16904, 16904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16904,16904,16904,16904,16904,16904,16904,16904, 0, 0, 0, 0,16904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16904, 16904,16904,16907,16907, 0,16907,16907,16907,16907,16907, 16907, 0,16907,16907, 0, 0, 0, 0, 0, 0, 0, 0, 0,16907,16907,16907,16907,16907,16907,16907, 0, 0, 0, 0, 0,16907, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16907,16907,16907,16908,16908, 0,16908,16908, 16908,16908,16908,16908, 0,16908,16908, 0, 0, 0, 0, 0, 0, 0, 0, 0,16908,16908,16908,16908, 16908,16908,16908,16908, 0, 0, 0, 0,16908, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16908,16908,16908,16910,16910, 0,16910,16910,16910,16910,16910,16910, 0,16910,16910, 0, 0, 0, 0, 0, 0, 0, 0, 0,16910, 16910,16910,16910,16910,16910,16910, 0, 0, 0, 0, 0,16910, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16910,16910, 16910,16911,16911, 0,16911,16911,16911,16911,16911,16911, 0,16911,16911, 0, 0, 0, 0, 0, 0, 0, 0, 0,16911,16911,16911,16911,16911,16911,16911,16911, 0, 0, 0, 0,16911, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16911,16911,16911,16912,16912, 0,16912,16912,16912, 16912,16912,16912,16912,16912,16912, 0, 0, 0, 0, 0, 0, 0, 0, 0,16912,16912,16912,16912,16912, 16912,16912,16912, 0, 0, 0, 0,16912, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16912,16912,16912,16912,16912,16913, 16913, 0,16913,16913,16913,16913,16913,16913, 0,16913, 16913, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16913,16913,16913,16913,16913,16913,16913, 0, 0, 0, 0, 0,16913, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16913, 16913,16913,16914,16914, 0,16914,16914,16914,16914,16914, 16914, 0,16914,16914, 0, 0, 0, 0, 0, 0, 0, 0, 0,16914,16914,16914,16914,16914,16914,16914, 16914, 0, 0, 0, 0,16914, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16914,16914,16914,16917,16917, 0,16917,16917, 16917,16917,16917,16917, 0,16917,16917, 0, 0, 0, 0, 0, 0, 0, 0, 0,16917,16917,16917,16917, 16917,16917,16917, 0, 0, 0, 0, 0,16917, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16917,16917,16917,16918,16918, 0,16918,16918,16918,16918,16918,16918, 0,16918,16918, 0, 0, 0, 0, 0, 0, 0, 0, 0,16918, 16918,16918,16918,16918,16918,16918,16918, 0, 0, 0, 0,16918, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16918,16918, 16918,16920,16920, 0,16920,16920,16920,16920,16920,16920, 0,16920,16920, 0, 0, 0, 0, 0, 0, 0, 0, 0,16920,16920,16920,16920,16920,16920,16920, 0, 0, 0, 0, 0,16920, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16920,16920,16920,16921,16921, 0,16921,16921,16921, 16921,16921,16921, 0,16921,16921, 0, 0, 0, 0, 0, 0, 0, 0, 0,16921,16921,16921,16921,16921, 16921,16921,16921, 0, 0, 0, 0,16921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16921,16921,16921,16922,16922, 0, 16922,16922,16922,16922,16922,16922,16922,16922,16922, 0, 0, 0, 0, 0, 0, 0, 0, 0,16922,16922, 16922,16922,16922,16922,16922,16922, 0, 0, 0, 0, 16922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16922,16922,16922, 16922,16922,16928,16928,16928,16928,16928,16928,16928,16928, 16928,16928,16928,16928, 0, 0, 0, 0, 0, 0, 16928,16928,16928,16928,16928,16928, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16928, 0, 0, 0,16928,16928,16928,16928, 16928,16928,16946,16946, 0,16946,16946,16946,16946,16946, 16946, 0,16946,16946, 0, 0, 0, 0, 0, 0, 0, 0, 0,16946,16946,16946,16946,16946,16946,16946, 0, 0, 0, 0, 0,16946, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16946,16946,16946, 0, 0, 0,16946, 0, 16946,16947,16947, 0,16947,16947,16947,16947,16947,16947, 0,16947,16947, 0, 0, 0, 0, 0, 0, 0, 0, 0,16947,16947,16947,16947,16947,16947,16947, 0, 0, 0, 0, 0,16947, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16947,16947,16947, 0, 0, 0,16947,16948,16948, 0,16948,16948,16948,16948,16948,16948, 0,16948,16948, 0, 0, 0, 0, 0, 0, 0, 0, 0,16948, 16948,16948,16948,16948,16948,16948, 0, 0, 0, 0, 0,16948, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16948,16948, 16948, 0, 0, 0,16948,16949,16949, 0,16949,16949, 16949,16949,16949,16949, 0,16949,16949, 0, 0, 0, 0, 0, 0, 0, 0, 0,16949,16949,16949,16949, 16949,16949,16949,16949, 0, 0, 0, 0,16949, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16949,16949,16949, 0, 0, 0,16949,16951,16951, 0,16951,16951,16951,16951,16951, 16951, 0,16951,16951, 0, 0, 0, 0, 0, 0, 0, 0, 0,16951,16951,16951,16951,16951,16951,16951, 0, 0, 0, 0, 0,16951, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16951,16951,16951, 0, 0, 0,16951,16952, 16952, 0,16952,16952,16952,16952,16952,16952, 0,16952, 16952, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16952,16952,16952,16952,16952,16952,16952, 0, 0, 0, 0, 0,16952, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16952, 16952,16952, 0, 0, 0,16952, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16952,16954,16954, 0, 0, 0, 0, 0, 0, 0, 0,16954,16954,16954, 16954,16954,16954,16954,16954,16954, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16954,16966, 16966, 0,16966,16966,16966,16966, 0,16966,16966,16966, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16966,16966,16966,16966,16966,16966,16966, 0, 0, 0, 0, 0,16966, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16966, 16966,16966,16966,16967,16967, 0,16967,16967,16967,16967, 0,16967,16967,16967, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16967,16967,16967,16967,16967,16967, 16967,16967, 0, 0, 0, 0,16967, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16967,16967,16967,16967,17006, 0, 0, 17006, 0, 0, 0, 0, 0, 0,17006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17006, 0,17006, 0,17006, 0, 0,17006, 0, 0, 0, 0,17006, 0, 0,17006, 0,17006, 0, 17006, 0,17006,17006,17006,17007,17007, 0, 0, 0, 0,17007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17007, 0, 0, 0, 0, 0, 0,17007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17007, 0,17007, 0,17007, 0, 0,17007, 0, 0, 0, 0,17007, 0, 0,17007, 0,17007, 0,17007, 0,17007,17007, 17007,17008,17008, 0, 0, 0, 0,17008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17008, 0, 0, 0, 0, 0, 0,17008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17008, 0,17008, 0,17008, 0, 0, 17008, 0, 0, 0,17008,17008, 0, 0,17008, 0, 17008, 0,17008, 0,17008,17008,17008,17009, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17009, 0, 0, 0, 0, 0, 0,17009, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17009, 0,17009, 0,17009, 0,17009,17009, 0, 0, 0, 0,17009, 0, 0,17009, 0,17009, 0,17009, 0,17009,17009,17009,17010, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17010, 0, 0, 0, 0, 0, 0,17010, 0,17010, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17010, 0,17010, 0,17010, 0, 0,17010, 0, 0, 0, 0,17010, 0, 0,17010, 0,17010, 0,17010, 0,17010,17010, 17010,17011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17011, 0, 0, 0, 0, 0, 0, 17011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17011, 0,17011, 0,17011, 0, 0,17011, 0, 0, 0, 0,17011,17011, 0,17011, 0,17011, 0,17011, 0,17011,17011,17011,17012, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17012, 0, 0, 0, 0, 0, 0,17012, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17012, 0,17012, 0,17012, 0, 0,17012, 0, 0, 0, 0,17012,17012, 0,17012, 0,17012, 0, 17012, 0,17012,17012,17012,17013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17013, 0, 0, 0, 0, 0, 0,17013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17013, 0, 17013, 0,17013, 0, 0,17013, 0, 0, 0, 0, 17013, 0, 0,17013, 0,17013, 0,17013, 0,17013, 17013,17013,17014, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17014, 0, 0, 0, 0, 0, 0,17014, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17014, 0,17014, 0,17014, 0, 0,17014, 0, 0, 0, 0,17014,17014, 0, 17014, 0,17014, 0,17014, 0,17014,17014,17014,17015, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17015, 0, 0, 0, 0, 0, 0,17015, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17015, 0,17015,17015,17015, 0, 0,17015, 0, 0, 0, 0,17015, 0, 0,17015, 0,17015, 0,17015, 0,17015,17015,17015,17016,17016, 0, 0, 0, 0,17016, 0, 0,17016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17016, 0, 0, 0, 0, 0, 0,17016, 0, 0, 0, 0, 0, 17016, 0, 0, 0, 0, 0, 0, 0,17016, 0, 17016, 0,17016, 0, 0,17016, 0, 0, 0, 0, 17016, 0, 0,17016, 0,17016, 0,17016, 0,17016, 17016,17016,17017,17017, 0, 0, 0, 0,17017,17017, 0,17017, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17017, 0, 0, 0, 0, 0, 0, 17017, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17017, 0,17017, 0,17017, 0, 0,17017, 0, 0, 0, 0,17017, 0, 0,17017, 0,17017, 0,17017, 0,17017,17017,17017,17033, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17033, 0, 0, 0, 0, 0, 0,17033, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17033, 0,17033, 0,17033, 0,17033,17033, 0, 0, 0, 0,17033, 0, 0,17033, 0,17033, 0, 17033,17033,17033,17033,17033,17039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17039, 0, 0, 0, 0, 0, 0,17039, 0, 0, 0, 0, 0, 17039, 0, 0, 0, 0, 0, 0, 0,17039, 0, 17039, 0,17039, 0, 0,17039, 0, 0, 0, 0, 17039, 0, 0,17039, 0,17039, 0,17039, 0,17039, 17039,17039,17040, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17040, 0, 0, 0, 0, 0, 0,17040, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17040, 0,17040, 0,17040, 0, 0,17040, 0, 0, 0, 0,17040, 0, 0, 17040, 0,17040, 0,17040, 0,17040,17040,17040,17041, 0, 0, 0, 0, 0, 0, 0,17041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17041, 0, 0, 0, 0, 0, 0,17041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17041, 0,17041, 0,17041, 0, 0,17041, 0, 0, 0, 0,17041, 0, 0,17041, 0,17041, 0,17041, 0,17041,17041,17041,17042, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17042, 0, 0, 0, 0, 0, 0,17042, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17042, 0,17042, 0,17042, 0, 0,17042, 0, 0, 0, 0,17042, 0,17042,17042, 0,17042, 0,17042, 0,17042,17042, 17042,17043,17043, 0, 0, 0, 0,17043, 0, 0, 17043, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17043, 0, 0, 0, 0, 0, 0,17043, 0, 0, 0, 0, 0,17043, 0, 0, 0, 0, 0, 0, 0,17043, 0,17043, 0,17043, 0, 0, 17043, 0, 0, 0, 0,17043, 0, 0,17043, 0, 17043, 0,17043, 0,17043,17043,17043,17044,17044, 0, 0, 0, 0,17044, 0, 0,17044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17044, 0, 0, 0, 0, 0, 0,17044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17044, 0,17044, 0,17044, 0, 0,17044, 0, 0, 0, 0,17044, 0,17044,17044, 0,17044, 0,17044, 0, 17044,17044,17044,17053,17053, 0,17053,17053,17053,17053, 17053,17053, 0,17053,17053, 0, 0, 0, 0, 0, 0, 0, 0, 0,17053,17053,17053,17053,17053,17053, 17053, 0, 0, 0, 0, 0,17053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17053,17053,17053,17054,17054, 0,17054, 17054,17054,17054,17054,17054, 0,17054,17054, 0, 0, 0, 0, 0, 0, 0, 0, 0,17054,17054,17054, 17054,17054,17054,17054,17054, 0, 0, 0, 0,17054, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17054,17054,17054,17056, 17056, 0,17056,17056,17056,17056,17056,17056, 0,17056, 17056, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17056,17056,17056,17056,17056,17056,17056, 0, 0, 0, 0, 0,17056, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17056, 17056,17056,17057,17057, 0,17057,17057,17057,17057,17057, 17057, 0,17057,17057, 0, 0, 0, 0, 0, 0, 0, 0, 0,17057,17057,17057,17057,17057,17057,17057, 17057, 0, 0, 0, 0,17057, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17057,17057,17057,17061,17061, 0,17061,17061, 17061,17061,17061,17061, 0,17061,17061, 0, 0, 0, 0, 0, 0, 0, 0, 0,17061,17061,17061,17061, 17061,17061,17061, 0, 0, 0, 0, 0,17061, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17061,17061,17061,17062,17062, 0,17062,17062,17062,17062,17062,17062, 0,17062,17062, 0, 0, 0, 0, 0, 0, 0, 0, 0,17062, 17062,17062,17062,17062,17062,17062,17062, 0, 0, 0, 0,17062, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17062,17062, 17062,17066,17066, 0,17066,17066,17066,17066,17066,17066, 0,17066,17066, 0, 0, 0, 0, 0, 0, 0, 0, 0,17066,17066,17066,17066,17066,17066,17066, 0, 0, 0, 0, 0,17066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17066,17066,17066,17067,17067, 0,17067,17067,17067, 17067,17067,17067, 0,17067,17067, 0, 0, 0, 0, 0, 0, 0, 0, 0,17067,17067,17067,17067,17067, 17067,17067,17067, 0, 0, 0, 0,17067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17067,17067,17067,17071,17071, 0, 17071,17071,17071,17071,17071,17071, 0,17071,17071, 0, 0, 0, 0, 0, 0, 0, 0, 0,17071,17071, 17071,17071,17071,17071,17071, 0, 0, 0, 0, 0, 17071, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17071,17071,17071, 17072,17072, 0,17072,17072,17072,17072,17072,17072, 0, 17072,17072, 0, 0, 0, 0, 0, 0, 0, 0, 0,17072,17072,17072,17072,17072,17072,17072,17072, 0, 0, 0, 0,17072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17072,17072,17072,17076,17076, 0,17076,17076,17076,17076, 17076,17076, 0,17076,17076, 0, 0, 0, 0, 0, 0, 0, 0, 0,17076,17076,17076,17076,17076,17076, 17076, 0, 0, 0, 0, 0,17076, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17076,17076,17076,17077,17077, 0,17077, 17077,17077,17077,17077,17077, 0,17077,17077, 0, 0, 0, 0, 0, 0, 0, 0, 0,17077,17077,17077, 17077,17077,17077,17077,17077, 0, 0, 0, 0,17077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17077,17077,17077,17080, 17080, 0,17080,17080,17080,17080,17080,17080, 0,17080, 17080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17080,17080,17080,17080,17080,17080,17080, 0, 0, 0, 0, 0,17080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17080, 17080,17080,17081,17081, 0,17081,17081,17081,17081,17081, 17081, 0,17081,17081, 0, 0, 0, 0, 0, 0, 0, 0, 0,17081,17081,17081,17081,17081,17081,17081, 17081, 0, 0, 0, 0,17081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17081,17081,17081,17083,17083, 0,17083,17083, 17083,17083,17083,17083, 0,17083,17083, 0, 0, 0, 0, 0, 0, 0, 0, 0,17083,17083,17083,17083, 17083,17083,17083, 0, 0, 0, 0, 0,17083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17083, 0, 0, 0, 0, 0,17083,17083,17083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17083,17084,17084, 0, 17084,17084,17084,17084,17084,17084, 0,17084,17084, 0, 0, 0, 0, 0, 0, 0, 0, 0,17084,17084, 17084,17084,17084,17084,17084, 0, 0, 0, 0, 0, 17084, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17084,17084,17084, 17085,17085, 0,17085,17085,17085,17085,17085,17085, 0, 17085,17085, 0, 0, 0, 0, 0, 0, 0, 0, 0,17085,17085,17085,17085,17085,17085,17085,17085, 0, 0, 0, 0,17085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17085,17085,17085,17086,17086, 0,17086,17086,17086,17086, 17086,17086, 0,17086,17086, 0, 0, 0, 0, 0, 0, 0, 0, 0,17086,17086,17086,17086,17086,17086, 17086, 0, 0, 0, 0, 0,17086, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17086,17086,17086,17087,17087, 0,17087, 17087,17087,17087,17087,17087, 0,17087,17087, 0, 0, 0, 0, 0, 0, 0, 0, 0,17087,17087,17087, 17087,17087,17087,17087,17087, 0, 0, 0, 0,17087, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17087,17087,17087,17091, 17091, 0,17091,17091,17091,17091,17091,17091, 0,17091, 17091, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17091,17091,17091,17091,17091,17091,17091, 0, 0, 0, 0, 0,17091, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17091, 17091,17091,17092,17092, 0,17092,17092,17092,17092,17092, 17092, 0,17092,17092, 0, 0, 0, 0, 0, 0, 0, 0, 0,17092,17092,17092,17092,17092,17092,17092, 17092, 0, 0, 0, 0,17092, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17092,17092,17092,17095,17095, 0,17095,17095, 17095,17095,17095,17095, 0,17095,17095, 0, 0, 0, 0, 0, 0, 0, 0, 0,17095,17095,17095,17095, 17095,17095,17095, 0, 0, 0, 0, 0,17095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17095,17095,17095,17096,17096, 0,17096,17096,17096,17096,17096,17096, 0,17096,17096, 0, 0, 0, 0, 0, 0, 0, 0, 0,17096, 17096,17096,17096,17096,17096,17096,17096, 0, 0, 0, 0,17096, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17096,17096, 17096,17098,17098, 0,17098,17098,17098,17098,17098,17098, 0,17098,17098, 0, 0, 0, 0, 0, 0, 0, 0, 0,17098,17098,17098,17098,17098,17098,17098, 0, 0, 0, 0, 0,17098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17098, 0, 0, 0, 0, 0,17098,17098,17098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17098,17099,17099, 0,17099,17099,17099,17099, 17099,17099, 0,17099,17099, 0, 0, 0, 0, 0, 0, 0, 0, 0,17099,17099,17099,17099,17099,17099, 17099, 0, 0, 0, 0, 0,17099, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17099,17099,17099,17100,17100, 0,17100, 17100,17100,17100,17100,17100, 0,17100,17100, 0, 0, 0, 0, 0, 0, 0, 0, 0,17100,17100,17100, 17100,17100,17100,17100,17100, 0, 0, 0, 0,17100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17100,17100,17100,17112, 17112, 0,17112,17112,17112,17112,17112,17112, 0,17112, 17112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17112,17112,17112,17112,17112,17112,17112, 0, 0, 0, 0, 0,17112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17112, 17112,17112, 0, 0, 0,17112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17112,17113,17113, 0,17113,17113,17113,17113,17113, 17113, 0,17113,17113, 0, 0, 0, 0, 0, 0, 0, 0, 0,17113,17113,17113,17113,17113,17113,17113, 0, 0, 0, 0, 0,17113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17113,17113,17113, 0, 0, 0,17113,17114, 17114, 0,17114,17114,17114,17114,17114,17114, 0,17114, 17114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17114,17114,17114,17114,17114,17114,17114,17114, 0, 0, 0, 0,17114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17114, 17114,17114, 0, 0, 0,17114,17118,17118, 0,17118, 17118,17118,17118,17118,17118, 0,17118,17118, 0, 0, 0, 0, 0, 0, 0, 0, 0,17118,17118,17118, 17118,17118,17118,17118, 0, 0, 0, 0, 0,17118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17118,17118,17118, 0, 0, 0,17118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17118, 17120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17120,17120,17120,17120,17120,17120,17120,17120,17120, 0, 0, 0, 0, 0, 0, 0, 0, 0,17120, 0, 0,17120,17132,17132, 0,17132,17132,17132,17132, 0, 17132,17132,17132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17132,17132,17132,17132,17132,17132,17132, 0, 0, 0, 0, 0,17132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17132,17132,17132,17132,17133,17133, 0,17133, 17133,17133,17133, 0,17133,17133,17133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17133,17133,17133, 17133,17133,17133,17133,17133, 0, 0, 0, 0,17133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17133,17133,17133,17133, 17137,17137,17137,17137,17137,17137,17137,17137,17137, 0, 0, 0, 0, 0, 0, 0,17137,17137,17137,17137, 17137,17137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17137,17137,17137,17137,17137,17137,17165, 0, 0, 0, 0, 0, 0,17165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17165, 0,17165, 0,17165, 0, 0,17165, 0, 0, 0, 17165,17165, 0, 0,17165, 0,17165, 0,17165, 0, 17165,17165,17165,17166,17166, 0, 0, 0, 0,17166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17166, 0, 0, 0, 0, 0, 0,17166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17166, 0,17166, 0,17166, 0, 0,17166,17166, 0, 0, 0,17166, 0, 0, 17166, 0,17166, 0,17166, 0,17166,17166,17166,17167, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17167, 0, 0, 0, 0, 0, 0,17167, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17167, 0,17167, 0,17167, 0, 0,17167, 17167, 0, 0, 0,17167, 0, 0,17167, 0,17167, 0,17167, 0,17167,17167,17167,17168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17168,17168, 0, 0, 0, 0, 0,17168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17168, 0,17168, 0,17168, 0, 0,17168, 0, 0, 0, 0,17168, 0, 0,17168, 0,17168, 0,17168, 0, 17168,17168,17168,17169,17169, 0, 0, 0, 0,17169, 0, 0,17169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17169, 0, 0, 0, 0, 0, 0,17169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17169, 0,17169, 0,17169, 0, 0,17169, 0, 0, 0, 0,17169, 0, 0, 17169, 0,17169, 0,17169, 0,17169,17169,17169,17170, 17170, 0, 0, 0, 0,17170, 0, 0,17170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17170, 0, 0, 0, 0, 0, 0,17170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17170, 0,17170, 0,17170, 0, 0,17170, 0, 0, 0, 0,17170, 0, 0,17170, 0,17170, 0, 17170, 0,17170,17170,17170,17171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17171, 0, 0, 0, 0, 0, 0,17171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17171, 0, 17171, 0,17171, 0, 0,17171, 0, 0, 0, 0, 17171, 0, 0,17171, 0,17171, 0,17171, 0,17171, 17171,17171,17189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17189, 0, 0, 0, 0, 0, 0,17189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17189,17189,17189, 0,17189, 0, 0,17189, 0, 0, 0, 0,17189, 0, 0, 17189, 0,17189, 0,17189, 0,17189,17189,17189,17191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17191, 0, 0, 0, 0, 0, 0,17191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17191, 0,17191, 0,17191, 0, 0,17191, 0, 0, 0, 0,17191,17191, 0,17191, 0,17191, 0,17191, 0,17191,17191,17191,17192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17192, 0, 0, 0, 0, 0, 0,17192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17192, 0,17192, 0,17192, 0, 0,17192,17192, 0, 0, 0,17192, 0, 0,17192, 0,17192, 0,17192, 0, 17192,17192,17192,17193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17193, 0, 0, 0, 0, 0, 0,17193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17193, 0,17193, 0, 17193, 0, 0,17193, 0, 0, 0, 0,17193,17193, 0,17193, 0,17193, 0,17193, 0,17193,17193,17193, 17194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17194, 0, 0, 0, 0, 0, 0,17194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17194, 0,17194, 0,17194, 0, 0, 17194, 0, 0, 0, 0,17194, 0, 0,17194, 0, 17194, 0,17194,17194,17194,17194,17194,17195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17195, 0, 0, 0, 0, 0, 0,17195, 0, 0, 0, 0, 0,17195, 0, 0, 0, 0, 0, 0, 0, 17195, 0,17195, 0,17195, 0, 0,17195, 0, 0, 0, 0,17195, 0, 0,17195, 0,17195, 0,17195, 0,17195,17195,17195,17196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17196, 0, 0, 0, 0, 0, 0,17196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17196, 0,17196, 0,17196, 0, 0,17196, 0, 0, 0, 0,17196, 0,17196,17196, 0,17196, 0,17196, 0,17196,17196, 17196,17197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17197, 0, 0,17197, 0, 0, 0, 0, 0, 0, 17197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17197, 0,17197, 0,17197, 0, 0,17197, 0, 0, 0, 0,17197, 0, 0,17197, 0,17197, 0,17197, 0,17197,17197,17197,17198,17198, 0, 0, 0, 0,17198, 0, 0,17198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17198, 0, 0, 0, 0, 0, 0,17198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17198, 0,17198, 0,17198, 0, 0,17198, 0, 0, 0, 0,17198, 0, 0,17198, 0,17198, 0,17198, 0,17198,17198,17198,17199,17199, 0, 0, 0, 0, 17199, 0, 0,17199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17199, 0, 0, 0, 0, 0, 0,17199, 0, 0,17199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17199, 0,17199, 0, 17199, 0, 0,17199, 0, 0, 0, 0,17199, 0, 0,17199, 0,17199, 0,17199, 0,17199,17199,17199, 17209,17209, 0,17209,17209,17209,17209,17209,17209, 0, 17209,17209, 0, 0, 0, 0, 0, 0, 0, 0, 0,17209,17209,17209,17209,17209,17209,17209, 0, 0, 0, 0, 0,17209, 0, 0, 0, 0, 0,17209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17209,17209,17209,17210,17210, 0,17210,17210,17210,17210, 17210,17210, 0,17210,17210, 0, 0, 0, 0, 0, 0, 0, 0, 0,17210,17210,17210,17210,17210,17210, 17210, 0, 0, 0, 0, 0,17210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17210,17210,17210,17211,17211, 0,17211, 17211,17211,17211,17211,17211, 0,17211,17211, 0, 0, 0, 0, 0, 0, 0, 0, 0,17211,17211,17211, 17211,17211,17211,17211,17211, 0, 0, 0, 0,17211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17211,17211,17211,17215, 17215, 0,17215,17215,17215,17215,17215,17215, 0,17215, 17215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17215,17215,17215,17215,17215,17215,17215, 0, 0, 0, 0, 0,17215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17215, 17215,17215,17216,17216, 0,17216,17216,17216,17216,17216, 17216, 0,17216,17216, 0, 0, 0, 0, 0, 0, 0, 0, 0,17216,17216,17216,17216,17216,17216,17216, 17216, 0, 0, 0, 0,17216, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17216,17216,17216,17230,17230, 0,17230,17230, 17230,17230,17230,17230, 0,17230,17230, 0, 0, 0, 0, 0, 0, 0, 0, 0,17230,17230,17230,17230, 17230,17230,17230, 0, 0, 0, 0, 0,17230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17230,17230,17230,17231,17231, 0,17231,17231,17231,17231,17231,17231, 0,17231,17231, 0, 0, 0, 0, 0, 0, 0, 0, 0,17231, 17231,17231,17231,17231,17231,17231,17231, 0, 0, 0, 0,17231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17231,17231, 17231,17245,17245, 0,17245,17245,17245,17245,17245,17245, 0,17245,17245, 0, 0, 0, 0, 0, 0, 0, 0, 0,17245,17245,17245,17245,17245,17245,17245, 0, 0, 0, 0, 0,17245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17245,17245,17245,17246,17246, 0,17246,17246,17246, 17246,17246,17246, 0,17246,17246, 0, 0, 0, 0, 0, 0, 0, 0, 0,17246,17246,17246,17246,17246, 17246,17246,17246, 0, 0, 0, 0,17246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17246,17246,17246,17277,17277, 0, 17277,17277,17277,17277,17277,17277, 0,17277,17277, 0, 0, 0, 0, 0, 0, 0, 0, 0,17277,17277, 17277,17277,17277,17277,17277, 0, 0, 0, 0, 0, 17277, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17277,17277,17277, 0, 0, 0,17277, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17277, 17279,17279, 0,17279,17279,17279,17279,17279,17279, 0, 17279,17279, 0, 0, 0, 0, 0, 0, 0, 0, 0,17279,17279,17279,17279,17279,17279,17279, 0, 0, 0, 0, 0,17279, 0, 0, 0, 0, 0,17279, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17279,17279,17279, 0, 0, 0,17279,17280,17280, 0, 17280,17280,17280,17280,17280,17280, 0,17280,17280, 0, 0, 0, 0, 0, 0, 0, 0, 0,17280,17280, 17280,17280,17280,17280,17280, 0, 0, 0, 0, 0, 17280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17280,17280,17280, 0, 0, 0,17280, 0,17280,17281,17281, 0,17281, 17281,17281,17281,17281,17281, 0,17281,17281, 0, 0, 0, 0, 0, 0, 0, 0, 0,17281,17281,17281, 17281,17281,17281,17281, 0, 0, 0, 0, 0,17281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17281,17281,17281,17281, 0, 0,17281,17282, 0, 0, 0, 0, 0, 0, 0, 0, 0,17282,17282,17282,17282,17282,17282,17282, 17282,17282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17282,17297,17297, 0, 17297,17297,17297,17297, 0,17297,17297,17297, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17297,17297, 17297,17297,17297,17297,17297, 0, 0, 0, 0, 0, 17297, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17297,17297,17297, 17297,17298,17298, 0,17298,17298,17298,17298, 0,17298, 17298,17298, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17298,17298,17298,17298,17298,17298,17298,17298, 0, 0, 0, 0,17298, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17298,17298,17298,17298,17302,17302,17302,17302,17302, 17302,17302,17302,17302, 0, 0, 0, 0, 0, 0, 0,17302,17302,17302,17302,17302,17302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17302,17302,17302, 17302,17302,17302,17331, 0, 0, 0, 0, 0, 0, 17331, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17331, 0,17331, 0,17331, 0, 0,17331,17331, 0, 0, 0,17331, 0, 0,17331, 0,17331, 0,17331, 0,17331,17331,17331,17332,17332, 0, 0, 0, 0,17332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17332, 0, 0, 0, 0, 0, 0,17332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17332, 0,17332, 0,17332, 0, 0,17332, 0, 0, 0, 0,17332, 0, 0,17332, 0,17332, 0,17332, 0,17332,17332,17332,17333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17333, 0, 0, 0, 0, 0, 0,17333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17333, 0,17333, 0,17333, 0, 0,17333, 0, 0, 0, 0,17333, 17333, 0,17333, 0,17333, 0,17333, 0,17333,17333, 17333,17334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17334, 0, 0,17334, 0, 0, 0, 17334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17334, 0,17334, 0,17334, 0, 0,17334, 0, 0, 0, 0,17334, 0, 0,17334, 0,17334, 0,17334, 0,17334,17334,17334,17335,17335, 0, 0, 0, 0,17335, 0, 0,17335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17335, 0, 0, 0, 0, 0, 0,17335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17335, 0,17335, 0,17335, 0, 0,17335, 0, 0, 0, 0,17335, 0, 0,17335, 0,17335, 0,17335, 0,17335,17335,17335,17336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17336, 0, 0, 0, 0, 0, 0,17336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17336, 0,17336, 0,17336, 0, 0,17336,17336, 0, 0, 0,17336, 0, 0,17336, 0,17336, 0,17336, 0,17336,17336, 17336,17336,17337,17337, 0, 0, 0, 0,17337, 0, 0,17337, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17337, 0, 0, 0, 0, 0, 0, 17337, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17337, 0,17337, 0,17337, 0, 0,17337, 0, 0, 0, 0,17337, 0, 0,17337, 0,17337, 0,17337, 0,17337,17337,17337,17358, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17358, 0, 0, 0, 0, 0, 0,17358, 0, 0, 17358, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17358, 0,17358, 0,17358, 0, 0,17358, 0, 0, 0, 0,17358, 0, 0,17358, 0,17358, 0, 17358, 0,17358,17358,17358,17359,17359, 0, 0, 0, 0,17359, 0, 0,17359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17359, 0, 0, 0, 0, 0, 0,17359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17359, 0,17359, 0,17359, 0, 0,17359, 0, 0, 0, 0,17359, 0, 0,17359, 0,17359, 0,17359, 0,17359,17359, 17359,17360, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17360, 0, 0, 0, 0, 0, 0, 17360, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17360, 0,17360, 0,17360, 0, 0,17360, 0, 0, 0,17360,17360, 0, 0,17360, 0,17360, 0,17360, 0,17360,17360,17360,17361,17361, 0, 0, 0, 0,17361, 0, 0,17361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17361, 0, 0, 0, 0, 0, 0,17361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17361, 0,17361, 0,17361, 0, 0,17361, 0, 0, 0, 0,17361, 0, 0,17361, 0,17361, 0,17361, 0,17361,17361,17361,17368,17368, 0,17368,17368,17368, 17368,17368,17368, 0,17368,17368, 0, 0, 0, 0, 0, 0, 0, 0, 0,17368,17368,17368,17368,17368, 17368,17368, 0, 0, 0, 0, 0,17368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17368,17368,17368,17369,17369, 0, 17369,17369,17369,17369,17369,17369, 0,17369,17369, 0, 0, 0, 0, 0, 0, 0, 0, 0,17369,17369, 17369,17369,17369,17369,17369, 0, 0, 0, 0, 0, 17369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17369,17369,17369, 17370,17370, 0,17370,17370,17370,17370,17370,17370, 0, 17370,17370, 0, 0, 0, 0, 0, 0, 0, 0, 0,17370,17370,17370,17370,17370,17370,17370,17370, 0, 0, 0, 0,17370, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17370,17370,17370,17384,17384,17384,17384,17384,17384,17384, 17384,17384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17384, 0,17384,17394,17394, 0,17394,17394,17394, 17394,17394,17394, 0,17394,17394, 0, 0, 0, 0, 0, 0, 0, 0, 0,17394,17394,17394,17394,17394, 17394,17394, 0, 0, 0, 0, 0,17394, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17394,17394,17394, 0, 0, 0, 17394,17395,17395, 0,17395,17395,17395,17395,17395,17395, 0,17395,17395, 0, 0, 0, 0, 0, 0, 0, 0, 0,17395,17395,17395,17395,17395,17395,17395, 0, 0, 0, 0, 0,17395, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17395,17395,17395, 0, 0, 0,17395,17396,17396, 0,17396,17396,17396,17396,17396,17396, 0,17396,17396, 0, 0, 0, 0, 0, 0, 0, 0, 0,17396, 17396,17396,17396,17396,17396,17396, 0, 0, 0, 0, 0,17396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17396,17396, 17396, 0, 0, 0,17396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17396,17397,17397, 0,17397, 17397,17397,17397,17397,17397, 0,17397,17397, 0, 0, 0, 0, 0, 0, 0, 0, 0,17397,17397,17397, 17397,17397,17397,17397, 0, 0, 0, 0, 0,17397, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17397,17397,17397, 0, 17397, 0,17397,17398, 0, 0, 0, 0, 0, 0, 0, 0, 0,17398,17398,17398,17398,17398,17398,17398, 17398,17398, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17398, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17398,17410,17410, 0,17410,17410,17410, 17410, 0,17410,17410,17410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17410,17410,17410,17410,17410, 17410,17410, 0, 0, 0, 0, 0,17410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17410,17410,17410,17410,17411,17411, 0,17411,17411,17411,17411, 0,17411,17411,17411, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17411, 17411,17411,17411,17411,17411,17411,17411, 0, 0, 0, 0,17411, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17411,17411, 17411,17411,17442, 0, 0, 0, 0, 0, 0,17442, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17442, 0,17442, 0,17442, 0, 0, 17442, 0, 0, 0, 0,17442, 0, 0,17442, 0, 17442, 0,17442, 0,17442,17442,17442,17443,17443, 0, 0, 0, 0,17443, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17443, 0, 0, 0, 0, 0, 0,17443, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17443, 0,17443, 0,17443, 0, 0,17443, 0, 0, 0, 0,17443,17443, 0,17443, 0,17443, 0,17443, 0, 17443,17443,17443,17444, 0, 0, 0, 0, 0, 0, 17444,17444, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17444, 0, 0, 0, 0, 0, 0, 17444, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17444, 0,17444, 0,17444, 0, 0,17444, 0, 0, 0, 0,17444, 0, 0,17444, 0,17444, 0,17444, 0,17444,17444,17444,17445, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17445, 0, 0, 0, 0, 0, 0,17445,17445, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17445, 0,17445, 0,17445, 0, 0,17445, 0, 0, 0, 0,17445, 0, 0,17445, 0,17445, 0, 17445, 0,17445,17445,17445,17446, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17446, 0, 0, 0, 0, 0, 0,17446, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17446, 0, 17446, 0,17446, 0, 0,17446, 0, 0, 0, 0, 17446,17446, 0,17446, 0,17446, 0,17446, 0,17446, 17446,17446,17447,17447, 0, 0, 0, 0,17447, 0, 0,17447,17447,17447,17447,17447,17447,17447,17447,17447, 17447, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17447, 0, 0, 0, 0, 0, 0, 17447, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17447, 0,17447, 0,17447, 0, 0,17447, 0, 0, 0, 0,17447, 0, 0,17447, 0,17447, 0,17447, 0,17447,17447,17447,17448,17448, 0, 0, 0, 0,17448, 0, 0,17448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17448, 0, 0, 0, 0, 0, 0,17448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17448, 0,17448, 0,17448, 0,17448,17448, 0, 0, 0, 0,17448, 0, 0,17448, 0,17448, 0,17448, 0,17448,17448,17448,17460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17460, 0, 0, 0, 0, 0, 0,17460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17460, 0,17460, 0,17460, 0, 0,17460, 0, 0, 0, 0,17460, 0, 0,17460, 0,17460, 0,17460, 0,17460,17460, 17460,17461,17461, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17461, 0, 0, 0, 0, 0, 0,17461, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17461, 0,17461, 0,17461, 0, 0,17461, 0, 0, 0, 0,17461, 0, 0, 17461, 0,17461, 0,17461, 0,17461,17461,17461,17462, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17462, 0, 0, 0, 0, 0, 0,17462, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17462, 0,17462, 0,17462, 0, 0,17462, 0, 0, 0, 0,17462, 0, 0,17462, 0,17462, 0,17462, 0,17462,17462,17462,17463, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17463, 0, 0, 0, 0, 0, 0,17463, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17463, 0,17463, 0,17463, 0, 0,17463,17463, 0, 0, 0,17463, 0, 0,17463, 0,17463, 0,17463, 0, 17463,17463,17463,17464,17464, 0, 0, 0, 0,17464, 0, 0,17464,17464,17464,17464,17464,17464,17464,17464, 17464,17464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17464, 0, 0, 0, 0, 0, 0,17464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17464, 0,17464, 0,17464, 0, 0,17464, 0, 0, 0, 0,17464, 0, 0, 17464, 0,17464, 0,17464, 0,17464,17464,17464,17465, 17465, 0, 0, 0, 0,17465, 0, 0,17465, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17465, 0, 0, 0, 0, 0, 0,17465, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17465, 0,17465, 0,17465, 0, 0,17465, 0, 0, 0, 0,17465, 0, 0,17465, 0,17465, 0, 17465, 0,17465,17465,17465,17471,17471, 0,17471,17471, 17471,17471,17471,17471, 0,17471,17471, 0, 0, 0, 0, 0, 0, 0, 0, 0,17471,17471,17471,17471, 17471,17471,17471, 0, 0, 0, 0, 0,17471, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17471,17471,17471,17472,17472, 0,17472,17472,17472,17472,17472,17472, 0,17472,17472, 0, 0, 0, 0, 0, 0, 0, 0, 0,17472, 17472,17472,17472,17472,17472,17472,17472, 0, 0, 0, 0,17472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17472,17472, 17472,17483,17483, 0,17483,17483,17483,17483,17483,17483, 0,17483,17483, 0, 0, 0, 0, 0, 0, 0, 0, 0,17483,17483,17483,17483,17483,17483,17483, 0, 0, 0, 0, 0,17483, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17483,17483,17483,17483,17485,17485, 0,17485,17485, 17485,17485,17485,17485, 0,17485,17485, 0, 0, 0, 0, 0, 0, 0, 0, 0,17485,17485,17485,17485, 17485,17485,17485, 0, 0, 0, 0, 0,17485, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17485,17485,17485, 0, 0, 0,17485, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17485,17486, 17486, 0,17486,17486,17486,17486,17486,17486, 0,17486, 17486, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17486,17486,17486,17486,17486,17486,17486, 0, 0, 0, 0, 0,17486, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17486, 17486,17486, 0, 0, 0,17486,17486,17487, 0, 0, 0, 0, 0, 0, 0, 0, 0,17487,17487,17487, 17487,17487,17487,17487,17487,17487, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17487, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17487,17499,17499, 0,17499,17499,17499, 17499, 0,17499,17499,17499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17499,17499,17499,17499,17499, 17499,17499, 0, 0, 0, 0, 0,17499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17499,17499,17499,17499,17500,17500, 0,17500,17500,17500,17500, 0,17500,17500,17500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17500, 17500,17500,17500,17500,17500,17500,17500, 0, 0, 0, 0,17500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17500,17500, 17500,17500,17504,17504,17504,17504,17504,17504,17504,17504, 17504, 0, 0, 0, 0, 0, 0, 0,17504,17504, 17504,17504,17504,17504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17504,17504,17504,17504,17504,17504, 17528, 0, 0, 0, 0, 0, 0,17528, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17528, 0,17528, 0,17528, 0, 0,17528, 0, 0, 0, 0,17528,17528, 0,17528, 0,17528, 0, 17528, 0,17528,17528,17528,17529,17529, 0, 0, 0, 0,17529, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17529, 0, 0, 0, 0, 0, 0,17529, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17529, 0,17529, 0,17529, 0, 0,17529, 0, 0, 0, 0,17529, 0, 0,17529, 0,17529, 0,17529, 0,17529,17529, 17529,17530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17530, 0,17530, 0, 0, 0, 0, 17530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17530, 0,17530, 0,17530, 0, 0,17530, 0, 0, 0, 0,17530, 0, 0,17530, 0,17530, 0,17530, 0,17530,17530,17530,17531, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17531, 0, 0, 0, 0, 0, 0,17531, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17531, 0,17531, 0,17531, 0, 0,17531, 0, 0, 0, 0,17531, 0, 0,17531, 0,17531, 0, 17531, 0,17531,17531,17531,17532, 0, 0, 0, 0, 0, 0, 0, 0, 0,17532, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17532, 0, 0, 0, 0, 0, 0,17532, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17532, 0, 17532, 0,17532, 0, 0,17532, 0, 0, 0, 0, 17532, 0, 0,17532, 0,17532, 0,17532, 0,17532, 17532,17532,17533,17533, 0, 0, 0, 0,17533, 0, 0,17533, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17533, 0, 0, 0, 0, 0, 0, 17533, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17533, 0,17533, 0,17533, 0, 0,17533, 0, 0, 0, 0,17533, 0, 0,17533, 0,17533, 0,17533, 0,17533,17533,17533,17534,17534, 17534, 0, 0, 0,17534, 0,17534,17534, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17534, 0, 0, 0, 0, 0, 0,17534, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17534, 0,17534, 0,17534, 0, 0,17534, 0, 0, 0, 0,17534, 0, 0,17534, 0,17534, 0,17534, 0,17534,17534,17534,17546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17546, 0, 0, 0, 0, 0, 0,17546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17546, 0,17546, 0,17546, 0, 0,17546, 0, 0, 0, 0,17546, 0, 0,17546, 0,17546, 0,17546, 0,17546,17546, 17546,17547,17547,17547,17547,17547,17547,17547,17547,17547, 17547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17547, 0, 0, 0, 0, 0, 0, 17547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17547, 0,17547, 0,17547, 0, 0,17547, 0, 0, 0, 0,17547, 0, 0,17547, 0,17547, 0,17547, 0,17547,17547,17547,17548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17548, 0, 0, 0, 0, 0, 0,17548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17548, 0,17548, 0,17548, 0, 0,17548, 0, 0, 0, 0,17548, 0, 0,17548, 0,17548, 0, 17548, 0,17548,17548,17548,17549,17549,17549, 0, 0, 0,17549, 0,17549,17549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17549, 0, 0, 0, 0, 0, 0,17549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17549, 0,17549, 0,17549, 0, 0,17549, 0, 0, 0, 0,17549, 0, 0,17549, 0,17549, 0,17549, 0,17549,17549, 17549,17550,17550, 0, 0, 0, 0,17550, 0, 0, 17550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17550, 0, 0, 0, 0, 0, 0,17550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17550, 0,17550, 0,17550, 0, 0, 17550, 0, 0, 0, 0,17550,17550, 0,17550, 0, 17550, 0,17550, 0,17550,17550,17550,17556,17556, 0, 17556,17556,17556,17556,17556,17556, 0,17556,17556, 0, 0, 0, 0, 0, 0, 0, 0, 0,17556,17556, 17556,17556,17556,17556,17556, 0, 0, 0, 0, 0, 17556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17556,17556,17556, 17557,17557, 0,17557,17557,17557,17557,17557,17557, 0, 17557,17557, 0, 0, 0, 0, 0, 0, 0, 0, 0,17557,17557,17557,17557,17557,17557,17557,17557, 0, 0, 0, 0,17557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17557,17557,17557,17567,17567, 0,17567,17567,17567,17567, 17567,17567, 0,17567,17567, 0, 0, 0, 0, 0, 0, 0, 0, 0,17567,17567,17567,17567,17567,17567, 17567, 0, 0, 0, 0, 0,17567, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17567,17567,17567,17567,17568,17568, 0, 17568,17568,17568,17568,17568,17568, 0,17568,17568, 0, 0, 0, 0, 0, 0, 0, 0, 0,17568,17568, 17568,17568,17568,17568,17568,17568, 0, 0, 0, 0, 17568, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17568,17568,17568, 17568,17570,17570, 0,17570,17570,17570,17570,17570,17570, 0,17570,17570, 0, 0, 0, 0, 0, 0, 0, 0, 0,17570,17570,17570,17570,17570,17570,17570, 0, 0, 0, 0, 0,17570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17570,17570,17570,17570, 0, 0,17570,17571,17571, 0,17571,17571,17571,17571,17571,17571, 0,17571,17571, 0, 0, 0, 0, 0, 0, 0, 0, 0,17571, 17571,17571,17571,17571,17571,17571, 0, 0, 0, 0, 0,17571, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17571,17571, 17571, 0, 0, 0,17571,17571,17572, 0, 0, 0, 0, 0, 0, 0, 0, 0,17572,17572,17572,17572, 17572,17572,17572,17572,17572, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17572, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17572,17584,17584, 0,17584,17584,17584,17584, 0, 17584,17584,17584, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17584,17584,17584,17584,17584,17584,17584, 0, 0, 0, 0, 0,17584, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17584,17584,17584,17584,17585,17585, 0,17585, 17585,17585,17585, 0,17585,17585,17585, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17585,17585,17585, 17585,17585,17585,17585,17585, 0, 0, 0, 0,17585, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17585,17585,17585,17585, 17589,17589,17589,17589,17589,17589,17589,17589,17589, 0, 0, 0, 0, 0, 0, 0,17589,17589,17589,17589, 17589,17589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17589,17589,17589,17589,17589,17589,17612, 0, 0, 0, 0, 0, 0,17612, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17612, 0,17612, 0,17612, 0, 0,17612, 0, 0, 0, 0,17612, 0, 0,17612, 0,17612, 0,17612, 0, 17612,17612,17612,17613,17613, 0, 0, 0, 0,17613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17613, 0, 0, 0, 0, 0, 0,17613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17613, 0,17613, 0,17613, 0, 0,17613, 0, 0, 0, 0,17613, 0, 0, 17613, 0,17613, 0,17613, 0,17613,17613,17613,17613, 17614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17614, 0, 0, 0, 0, 0, 0,17614, 0, 0, 0, 0, 0,17614, 0, 0, 0, 0, 0, 0, 0,17614, 0,17614, 0,17614, 0, 0, 17614, 0, 0, 0, 0,17614, 0, 0,17614, 0, 17614, 0,17614, 0,17614,17614,17614,17615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17615, 0, 0, 0, 0, 0, 0,17615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17615, 0,17615, 0,17615, 0, 0,17615, 0, 0, 0, 0,17615, 0, 0,17615, 0,17615, 0,17615, 0,17615,17615,17615,17616, 0, 0, 0, 0, 0, 0, 0,17616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17616, 0, 0, 0, 0, 0, 0,17616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17616, 0,17616, 0,17616, 0, 0,17616, 0, 0, 0, 0,17616, 0, 0, 17616, 0,17616, 0,17616, 0,17616,17616,17616,17617, 17617, 0, 0, 0, 0,17617, 0, 0,17617, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17617, 0, 0, 0, 0, 0, 0,17617, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17617, 0,17617, 0,17617, 0, 0,17617, 0, 0, 0, 0,17617, 0, 0,17617, 0,17617, 0, 17617, 0,17617,17617,17617,17618,17618, 0, 0, 0, 0,17618, 0, 0,17618,17618,17618,17618,17618,17618, 17618,17618,17618,17618, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17618, 0, 0, 0, 0, 0, 0,17618, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17618, 0,17618, 0,17618, 0, 0,17618, 0, 0, 0, 0,17618, 0, 0,17618, 0,17618, 0,17618, 0,17618,17618, 17618,17621,17621,17621,17621,17621,17621,17621,17621,17621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17621, 0, 0, 0, 0, 0, 0, 0,17621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17621,17627, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17627, 0, 0, 0, 0, 0, 0,17627, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17627, 0,17627, 0,17627, 0, 0,17627, 0, 0, 0, 0,17627, 0,17627,17627, 0,17627, 0, 17627, 0,17627,17627,17627,17628, 0, 0, 0, 0, 0,17628,17628, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17628, 0, 0, 0, 0, 0, 0,17628, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17628, 0,17628, 0,17628, 0, 0,17628, 0, 0, 0, 0,17628, 0, 0, 17628, 0,17628, 0,17628, 0,17628,17628,17628,17629, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17629, 0, 0, 0, 0, 0, 0,17629, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17629, 0,17629, 0,17629, 0, 0,17629, 0, 0, 0, 0,17629,17629, 0,17629, 0,17629, 0,17629, 0,17629,17629,17629,17630,17630, 0, 0, 0, 0,17630, 0, 0,17630, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17630, 0, 0, 0, 0, 0, 0,17630, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17630, 0, 17630, 0,17630, 0, 0,17630, 0, 0, 0, 0, 17630, 0, 0,17630, 0,17630, 0,17630, 0,17630, 17630,17630,17631,17631, 0, 0, 0, 0,17631, 0, 0,17631,17631,17631,17631,17631,17631,17631,17631,17631, 17631, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17631, 0, 0, 0, 0, 0, 0, 17631, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17631, 0,17631, 0,17631, 0, 0,17631, 0, 0, 0, 0,17631, 0, 0,17631, 0,17631, 0,17631, 0,17631,17631,17631,17647,17647, 0,17647,17647,17647,17647,17647,17647, 0,17647,17647, 0, 0, 0, 0, 0, 0, 0, 0, 0,17647, 17647,17647,17647,17647,17647,17647, 0, 0, 0, 0, 0,17647, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17647,17647, 17647,17647,17648,17648, 0,17648,17648,17648,17648,17648, 17648, 0,17648,17648, 0, 0, 0, 0, 0, 0, 0, 0, 0,17648,17648,17648,17648,17648,17648,17648, 0, 0, 0, 0, 0,17648, 0, 0,17648, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17648,17648,17648,17648,17650,17650, 0,17650, 17650,17650,17650,17650,17650, 0,17650,17650, 0, 0, 0, 0, 0, 0, 0, 0, 0,17650,17650,17650, 17650,17650,17650,17650, 0, 0, 0, 0, 0,17650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17650,17650,17650, 0, 17650, 0,17650,17651,17651, 0,17651,17651,17651,17651, 17651,17651, 0,17651,17651, 0, 0, 0, 0, 0, 0, 0, 0, 0,17651,17651,17651,17651,17651,17651, 17651, 0, 0, 0, 0, 0,17651, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17651,17651,17651, 0, 0, 0,17651, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17651,17652, 0, 0, 0, 0, 0, 0, 0, 0, 0,17652,17652,17652,17652,17652, 17652,17652,17652,17652, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17652, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17652,17664,17664, 0, 17664,17664,17664,17664, 0,17664,17664,17664, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17664,17664, 17664,17664,17664,17664,17664, 0, 0, 0, 0, 0, 17664, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17664,17664,17664, 17664,17665,17665, 0,17665,17665,17665,17665, 0,17665, 17665,17665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17665,17665,17665,17665,17665,17665,17665,17665, 0, 0, 0, 0,17665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17665,17665,17665,17665,17691, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17691, 0, 0, 0, 0, 0, 0,17691, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17691, 0,17691, 0, 17691, 0, 0,17691, 0, 0, 0, 0,17691, 0, 0,17691, 0,17691, 0,17691, 0,17691,17691,17691, 17691,17692,17692,17692, 0, 0, 0,17692, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17692, 0,17692, 0, 0, 0, 0,17692, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17692, 0,17692, 0,17692, 0, 0, 17692, 0, 0, 0, 0,17692, 0, 0,17692, 0, 17692, 0,17692, 0,17692,17692,17692,17693, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17693, 0, 0, 0, 0, 0, 0,17693, 0, 0, 0, 0, 0,17693, 0, 0, 0, 0, 0, 0, 0, 17693, 0,17693, 0,17693, 0, 0,17693, 0, 0, 0, 0,17693, 0, 0,17693, 0,17693, 0,17693, 0,17693,17693,17693,17694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17694, 0, 0, 0, 0, 0, 0,17694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17694, 0,17694, 0,17694, 0, 0,17694, 0, 0, 0, 0,17694, 0,17694,17694, 0,17694, 0,17694, 0,17694,17694, 17694,17695, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17695, 0, 0,17695, 0, 0, 0, 0, 0, 0, 17695, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17695, 0,17695, 0,17695, 0, 0,17695, 0, 0, 0, 0,17695, 0, 0,17695, 0,17695, 0,17695, 0,17695,17695,17695,17696,17696, 0, 0, 0, 0,17696, 0, 0,17696, 0, 0, 0, 0,17696, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17696, 0,17696, 0, 0, 0, 0,17696, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17696, 0,17696, 0,17696, 0, 0,17696, 0, 0, 0, 0,17696, 0, 0,17696, 0,17696, 0,17696, 0,17696,17696,17696,17697,17697,17697, 0, 0, 0, 17697, 0, 0,17697, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17697, 0, 0, 0, 0, 0, 0,17697, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17697, 0,17697, 0, 17697, 0, 0,17697, 0, 0, 0, 0,17697, 0, 0,17697, 0,17697, 0,17697, 0,17697,17697,17697, 17704, 0, 0, 0, 0, 0, 0, 0,17704, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17704, 0, 0, 0, 0, 0, 0,17704, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17704, 0,17704, 0,17704, 0, 0,17704, 0, 0, 0, 0,17704, 0, 0,17704, 0,17704, 0, 17704, 0,17704,17704,17704,17705,17705,17705,17705,17705, 17705,17705,17705,17705,17705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17705, 0, 0, 0, 0, 0, 0,17705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17705, 0, 17705, 0,17705, 0, 0,17705, 0, 0, 0, 0, 17705, 0, 0,17705, 0,17705, 0,17705, 0,17705, 17705,17705,17707,17707, 0, 0, 0, 0,17707, 0, 0,17707, 0, 0,17707, 0,17707, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17707, 0,17707, 0, 0, 0, 0, 17707, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17707, 0,17707, 0,17707, 0, 0,17707, 0, 0, 0, 0,17707, 0, 0,17707, 0,17707, 0,17707, 0,17707,17707,17707,17708,17708, 17708, 0, 0, 0,17708, 0, 0,17708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17708, 0, 0, 0, 0, 0, 0,17708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17708, 0,17708, 0,17708, 0, 0,17708, 0, 0, 0, 0,17708, 0, 0,17708, 0,17708, 0,17708, 0,17708,17708,17708,17718,17718, 0,17718,17718,17718, 17718,17718,17718, 0,17718,17718, 0, 0, 0, 0, 0, 0, 0, 0, 0,17718,17718,17718,17718,17718, 17718,17718, 0, 0, 0, 0, 0,17718, 0, 0, 0, 0, 0,17718, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17718,17718,17718,17718,17720,17720, 0,17720,17720,17720,17720,17720,17720, 0,17720,17720, 0, 0, 0, 0, 0, 0, 0, 0, 0,17720, 17720,17720,17720,17720,17720,17720, 0, 0, 0, 0, 0,17720, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17720,17720, 17720, 0, 0, 0,17720,17720,17721,17721, 0,17721, 17721,17721,17721,17721,17721, 0,17721,17721, 0, 0, 0, 0, 0, 0, 0, 0, 0,17721,17721,17721, 17721,17721,17721,17721, 0, 0, 0, 0, 0,17721, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17721,17721,17721, 0, 0, 0,17721, 0,17721,17722,17722, 0, 0, 0, 0, 0, 0, 0, 0,17722,17722,17722,17722,17722, 17722,17722,17722,17722, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17722,17735,17735, 0, 17735,17735,17735,17735, 0,17735,17735,17735, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17735,17735, 17735,17735,17735,17735,17735, 0, 0, 0, 0, 0, 17735, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17735,17735,17735, 17735,17736,17736, 0,17736,17736,17736,17736, 0,17736, 17736,17736, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17736,17736,17736,17736,17736,17736,17736,17736, 0, 0, 0, 0,17736, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17736,17736,17736,17736,17740,17740,17740,17740,17740, 17740,17740,17740,17740, 0, 0, 0, 0, 0, 0, 0,17740,17740,17740,17740,17740,17740, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17740,17740,17740, 17740,17740,17740,17760, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17760, 0, 0, 0, 0, 0, 0,17760, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17760, 0,17760, 0,17760, 0, 0, 17760, 0, 0, 0, 0,17760, 0, 0,17760, 0, 17760, 0,17760, 0,17760,17760,17760,17761,17761, 0, 0, 0, 0,17761, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17761, 0, 0, 0, 0, 0, 0,17761, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17761, 0,17761, 0,17761, 0, 0,17761, 0, 0, 0, 0,17761, 0, 0,17761, 0,17761, 0,17761, 0, 17761,17761,17761,17762, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17762, 0, 0, 0, 0, 0, 0,17762, 0, 0,17762, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17762, 0,17762, 0, 17762, 0, 0,17762, 0, 0, 0, 0,17762, 0, 0,17762, 0,17762, 0,17762, 0,17762,17762,17762, 17763,17763, 0, 0, 0, 0,17763, 0, 0,17763, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17763, 0, 0, 0, 0, 0, 0,17763, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17763, 0,17763, 0,17763, 0, 0,17763, 0, 0, 0, 0,17763, 0, 0,17763, 0,17763, 0,17763, 0,17763,17763,17763,17764, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17764, 0, 0, 0, 0, 0, 0,17764, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17764, 0,17764, 0,17764, 0, 0,17764, 0, 0, 0, 17764,17764, 0, 0,17764, 0,17764, 0,17764, 0, 17764,17764,17764,17765,17765, 0, 0, 0, 0,17765, 0, 0,17765,17765,17765,17765,17765,17765,17765,17765, 17765,17765, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17765, 0, 0, 0, 0, 0, 0,17765, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17765, 0,17765, 0,17765, 0, 0,17765, 0, 0, 0, 0,17765, 0, 0, 17765, 0,17765, 0,17765, 0,17765,17765,17765,17771, 0, 0,17771, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17771, 0, 0, 0, 0, 0, 0,17771, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17771, 0,17771, 0,17771, 0, 0,17771, 0, 0, 0, 0,17771, 0, 0,17771, 0,17771, 0,17771, 0,17771,17771,17771,17772, 0, 0, 0, 0, 0, 0,17772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17772, 0, 0, 0, 0, 0, 0,17772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17772, 0,17772, 0, 17772, 0, 0,17772, 0, 0, 0, 0,17772, 0, 0,17772, 0,17772, 0,17772, 0,17772,17772,17772, 17773, 0, 0, 0, 0, 0, 0, 0,17773, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17773, 0, 0, 0, 0, 0, 0,17773, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17773, 0,17773, 0,17773, 0, 0,17773, 0, 0, 0, 0,17773, 0, 0,17773, 0,17773, 0, 17773, 0,17773,17773,17773,17773,17774,17774, 0, 0, 0, 0,17774, 0, 0,17774,17774, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17774, 0, 0, 0, 0, 0, 0,17774, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17774, 0, 17774, 0,17774, 0, 0,17774, 0, 0, 0, 0, 17774, 0, 0,17774, 0,17774, 0,17774, 0,17774, 17774,17774,17775,17775,17775, 0, 0, 0,17775, 0, 0,17775, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17775, 0,17775, 0, 0, 0, 0, 17775, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17775, 0,17775, 0,17775, 0, 0,17775, 0, 0, 0, 0,17775, 0, 0,17775, 0,17775, 0,17775, 0,17775,17775,17775,17782,17782, 0,17782,17782,17782,17782,17782,17782, 0,17782,17782, 0, 0, 0, 0, 0, 0, 0, 0, 0,17782, 17782,17782,17782,17782,17782,17782, 0, 0, 0, 0, 0,17782, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17782,17782, 17782,17782,17784,17784, 0,17784,17784,17784,17784,17784, 17784, 0,17784,17784, 0, 0, 0, 0, 0, 0, 0, 0, 0,17784,17784,17784,17784,17784,17784,17784, 0, 0, 0, 0, 0,17784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17784,17784,17784, 0, 0, 0,17784,17784, 17785,17785, 0,17785,17785,17785,17785,17785,17785, 0, 17785,17785, 0, 0, 0, 0, 0, 0, 0, 0, 0,17785,17785,17785,17785,17785,17785,17785, 0, 0, 0, 0, 0,17785, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17785,17785,17785, 0, 0, 0,17785, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17785,17786, 0,17786, 0, 0, 0, 0, 0, 0, 0,17786,17786,17786,17786,17786,17786,17786, 17786,17786, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17786,17797,17797, 0,17797,17797, 17797,17797, 0,17797,17797,17797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17797,17797,17797,17797, 17797,17797,17797, 0, 0, 0, 0, 0,17797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17797,17797,17797,17797,17798, 17798, 0,17798,17798,17798,17798, 0,17798,17798,17798, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17798,17798,17798,17798,17798,17798,17798,17798, 0, 0, 0, 0,17798, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17798, 17798,17798,17798,17802,17802,17802,17802,17802,17802,17802, 17802,17802, 0, 0, 0, 0, 0, 0, 0,17802, 17802,17802,17802,17802,17802, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17802,17802,17802,17802,17802, 17802,17821, 0, 0, 0, 0, 0, 0,17821, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17821, 0,17821, 0,17821, 0, 0,17821, 0, 0, 0, 0,17821, 0, 0,17821, 0,17821, 0,17821, 0,17821,17821,17821,17822, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17822, 0, 0, 0, 0, 0, 0,17822, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17822, 0,17822, 0,17822, 0, 0,17822, 0, 0, 0, 0,17822, 0, 0,17822, 0,17822, 0,17822, 0, 17822,17822,17822,17823, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17823, 0, 0, 0, 0, 0, 0,17823, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17823, 0,17823, 0, 17823, 0, 0,17823,17823, 0, 0, 0,17823, 0, 0,17823, 0,17823, 0,17823, 0,17823,17823,17823, 17824,17824, 0, 0, 0, 0,17824, 0, 0,17824, 17824,17824,17824,17824,17824,17824,17824,17824,17824, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17824, 0, 0, 0, 0, 0, 0,17824, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17824, 0,17824, 0,17824, 0, 0,17824, 0, 0, 0, 0,17824, 0, 0,17824, 0,17824, 0,17824, 0,17824,17824,17824,17825,17825, 0, 0, 0, 0,17825, 0, 0,17825, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17825, 0, 0, 0, 0, 0, 0,17825, 0, 0, 0, 0, 0, 17825, 0, 0, 0, 0, 0, 0, 0,17825, 0, 17825, 0,17825, 0, 0,17825, 0, 0, 0, 0, 17825, 0, 0,17825, 0,17825, 0,17825, 0,17825, 17825,17825,17829,17829, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17829, 0, 0, 0, 0, 0, 0,17829, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17829, 0,17829, 0,17829, 0, 0,17829, 0, 0, 0, 0,17829, 0, 0, 17829, 0,17829, 0,17829, 0,17829,17829,17829,17830, 0, 0, 0, 0, 0, 0,17830, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17830, 0, 0, 0, 0, 0, 0,17830, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17830, 0,17830, 0,17830, 0, 0,17830, 0, 0, 0, 0,17830, 0, 0,17830, 0,17830, 0,17830, 0, 17830,17830,17830,17831,17831, 0, 0, 0, 0,17831, 0, 0,17831,17831, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17831, 0, 0, 0, 0, 0, 0,17831, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17831, 0,17831, 0,17831, 0, 0,17831, 0, 0, 0, 0,17831, 0, 0, 17831, 0,17831, 0,17831, 0,17831,17831,17831,17832, 17832, 0, 0, 0, 0,17832, 0, 0,17832, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17832, 0, 0, 0, 0, 0, 0,17832, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17832, 0,17832, 0,17832, 0, 0,17832, 0, 0, 0, 0,17832, 0, 0,17832, 0,17832, 0, 17832, 0,17832,17832,17832,17840,17840, 0,17840,17840, 17840,17840,17840,17840, 0,17840,17840, 0, 0, 0, 0, 0, 0, 0, 0, 0,17840,17840,17840,17840, 17840,17840,17840, 0, 0, 0, 0, 0,17840, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17840,17840,17840, 0, 0, 0,17840, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17840,17841,17841, 0, 17841,17841,17841,17841,17841,17841, 0,17841,17841, 0, 0, 0, 0, 0, 0, 0, 0, 0,17841,17841, 17841,17841,17841,17841,17841, 0, 0, 0, 0, 0, 17841, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17841,17841,17841, 0, 0, 0,17841, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17841, 17852,17852, 0,17852,17852,17852,17852, 0,17852,17852, 17852, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17852,17852,17852,17852,17852,17852,17852, 0, 0, 0, 0, 0,17852, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17852,17852,17852,17852,17853,17853, 0,17853,17853,17853, 17853, 0,17853,17853,17853, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17853,17853,17853,17853,17853, 17853,17853,17853, 0, 0, 0, 0,17853, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17853,17853,17853,17853,17880,17880, 17880,17880,17880,17880,17880,17880,17880,17880, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17880, 0, 0, 0, 0, 0, 0,17880, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17880, 0,17880, 0,17880, 0, 0,17880, 0, 0, 0, 0,17880, 0, 0,17880, 0,17880, 0, 17880, 0,17880,17880,17880,17881, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17881, 0, 0, 0, 0, 0, 0,17881, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17881, 0, 17881, 0,17881, 0, 0,17881, 0, 0, 0, 0, 17881, 0, 0,17881, 0,17881, 0,17881, 0,17881, 17881,17881,17882,17882, 0, 0, 0, 0,17882, 0, 0,17882, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17882, 0, 0, 0, 0, 0, 0, 17882, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17882, 0,17882, 0,17882, 0, 0,17882, 0, 0, 0, 0,17882, 0, 0,17882, 0,17882, 0,17882, 0,17882,17882,17882,17883,17883, 0, 0, 0, 0,17883, 0, 0,17883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17883, 0, 0, 0, 0, 0, 0,17883, 0, 0, 0, 0, 0,17883, 0, 0, 0, 0, 0, 0, 0, 17883, 0,17883, 0,17883, 0, 0,17883, 0, 0, 0, 0,17883, 0, 0,17883, 0,17883, 0,17883, 0,17883,17883,17883,17884,17884, 0, 0, 0, 0, 17884, 0, 0,17884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17884, 0, 0, 0, 0, 0, 0,17884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17884, 0,17884, 0, 17884, 0, 0,17884, 0, 0, 0, 0,17884, 0, 17884,17884, 0,17884, 0,17884, 0,17884,17884,17884, 17887,17887, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17887, 0, 0, 0, 0, 0, 0,17887, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17887, 0,17887, 0,17887, 0, 0, 17887, 0, 0, 0, 0,17887, 0, 0,17887, 0, 17887, 0,17887, 0,17887,17887,17887,17888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17888, 0, 0, 0, 0, 0, 0,17888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17888, 0,17888, 0,17888, 0, 0,17888, 0, 0, 0, 0,17888, 0, 0,17888, 0,17888, 0,17888, 0,17888,17888,17888,17889,17889, 0, 0, 0, 0, 17889, 0, 0,17889, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17889, 0, 0, 0, 0, 0, 0,17889, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17889, 0,17889, 0, 17889, 0, 0,17889, 0, 0, 0, 0,17889, 0, 0,17889, 0,17889, 0,17889, 0,17889,17889,17889, 17895,17895, 0,17895,17895,17895,17895,17895,17895, 0, 17895,17895, 0, 0, 0, 0, 0, 0, 0, 0, 0,17895,17895,17895,17895,17895,17895,17895, 0, 0, 0, 0, 0,17895, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17895,17895,17895, 0, 0, 0,17895, 0,17895,17896, 17896, 0,17896,17896,17896,17896,17896,17896, 0,17896, 17896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17896,17896,17896,17896,17896,17896,17896, 0, 0, 0, 0, 0,17896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17896, 17896,17896, 0, 0, 0,17896,17906,17906, 0,17906, 17906,17906,17906, 0,17906,17906,17906, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17906,17906,17906, 17906,17906,17906,17906, 0, 0, 0, 0, 0,17906, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17906,17906,17906,17906, 17907,17907, 0,17907,17907,17907,17907, 0,17907,17907, 17907, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17907,17907,17907,17907,17907,17907,17907,17907, 0, 0, 0, 0,17907, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17907,17907,17907,17907,17911,17911,17911,17911,17911,17911, 17911,17911,17911, 0, 0, 0, 0, 0, 0, 0, 17911,17911,17911,17911,17911,17911, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17911,17911,17911,17911, 17911,17911,17931, 0, 0, 0, 0, 0,17931,17931, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17931, 0, 0, 0, 0, 0, 0,17931, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17931, 0,17931, 0,17931, 0, 0,17931, 0, 0, 0, 0,17931, 0, 0,17931, 0,17931, 0,17931, 0,17931,17931,17931,17932, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17932, 0, 0, 0, 0, 0, 0,17932, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17932, 0,17932, 0,17932, 0, 0,17932, 0, 0, 0, 0,17932,17932, 0,17932, 0,17932, 0,17932, 0, 17932,17932,17932,17933,17933, 0, 0, 0, 0,17933, 0, 0,17933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17933, 0, 0, 0, 0, 0, 0,17933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17933, 0,17933, 0,17933, 0, 0,17933, 0, 0, 0, 0,17933, 0, 0, 17933, 0,17933, 0,17933, 0,17933,17933,17933,17934, 17934, 0, 0, 0, 0,17934, 0, 0,17934, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17934, 0,17934, 0, 0, 0, 0,17934, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17934, 0,17934, 0,17934, 0, 0,17934, 0, 0, 0, 0,17934, 0, 0,17934, 0,17934, 0, 17934, 0,17934,17934,17934,17935, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17935, 0, 0, 0, 0, 0, 0,17935, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17935, 0, 17935, 0,17935, 0, 0,17935, 0, 0, 0, 0, 17935, 0, 0,17935, 0,17935, 0,17935, 0,17935, 17935,17935,17950,17950, 0, 0, 0, 0,17950, 0, 0,17950, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17950, 0, 0, 0, 0, 0, 0, 17950, 0, 0,17950, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17950, 0,17950, 0,17950, 0, 0,17950, 0, 0, 0, 0,17950, 0, 0,17950, 0,17950, 0,17950, 0,17950,17950,17950,17951,17951, 0, 0, 0, 0,17951, 0, 0,17951, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17951, 0, 0, 0, 0, 0, 0,17951, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17951, 0,17951, 0,17951, 0, 0,17951, 0, 0, 0, 0,17951, 0, 0,17951, 0,17951, 0,17951, 0,17951,17951,17951,17953, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17953, 0, 0, 0, 0, 0, 0,17953, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17953, 0,17953, 0,17953, 0, 0,17953, 0, 0, 0, 0,17953, 0, 0,17953, 0,17953, 0,17953, 0,17953,17953, 17953,17958,17958, 0,17958,17958,17958,17958,17958,17958, 0,17958,17958, 0, 0, 0, 0, 0, 0, 0, 0, 0,17958,17958,17958,17958,17958,17958,17958, 0, 0, 0, 0, 0,17958, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17958,17958,17958, 0, 0, 0,17958, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17958,17970,17970, 0,17970,17970,17970, 17970, 0,17970,17970,17970, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17970,17970,17970,17970,17970, 17970,17970, 0, 0, 0, 0, 0,17970, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17970,17970,17970,17970,17971,17971, 0,17971,17971,17971,17971, 0,17971,17971,17971, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17971, 17971,17971,17971,17971,17971,17971,17971, 0, 0, 0, 0,17971, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17971,17971, 17971,17971,17975,17975,17975,17975,17975,17975,17975,17975, 17975, 0, 0, 0, 0, 0, 0, 0,17975,17975, 17975,17975,17975,17975, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17975,17975,17975,17975,17975,17975, 17994, 0, 0, 0, 0, 0, 0, 0,17994, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17994, 0, 0, 0, 0, 0, 0,17994, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17994, 0,17994, 0,17994, 0, 0,17994, 0, 0, 0, 0,17994, 0, 0,17994, 0,17994, 0, 17994, 0,17994,17994,17994,17995,17995,17995,17995,17995, 17995,17995,17995,17995,17995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17995, 0, 0, 0, 0, 0, 0,17995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17995, 0, 17995, 0,17995, 0, 0,17995, 0, 0, 0, 0, 17995, 0, 0,17995, 0,17995, 0,17995, 0,17995, 17995,17995,17997,17997, 0, 0, 0, 0,17997, 0, 0,17997, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17997, 0, 0, 0, 0, 0, 0, 17997, 0, 0, 0, 0, 0,17997, 0, 0, 0, 0, 0, 0, 0,17997, 0,17997, 0,17997, 0, 0,17997, 0, 0, 0, 0,17997, 0, 0,17997, 0,17997, 0,17997, 0,17997,17997,17997,17998, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17998, 0, 0, 0, 0, 0, 0,17998, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17998, 0,17998, 0,17998, 0, 0,17998, 0, 0, 0, 0,17998, 0, 0,17998, 0,17998, 0, 17998, 0,17998,17998,17998,17999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17999, 0, 0, 0, 0,17999, 0, 0, 0, 0, 0, 0,17999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17999, 0, 17999, 0,17999, 0, 0,17999, 0, 0, 0, 0, 17999, 0, 0,17999, 0,17999, 0,17999, 0,17999, 17999,17999,18000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18000, 0, 0, 0, 0, 0, 0,18000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18000, 0,18000, 0,18000, 0, 0,18000, 0, 0, 0, 0,18000, 0, 0, 18000, 0,18000, 0,18000, 0,18000,18000,18000,18000, 18001, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18001, 0, 0, 0, 0, 0, 0,18001, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18001, 0,18001,18001,18001, 0, 0, 18001, 0, 0, 0, 0,18001, 0, 0,18001, 0, 18001, 0,18001, 0,18001,18001,18001,18002, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18002, 0, 0, 0, 0, 0, 0,18002, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18002, 0,18002, 0,18002, 0,18002,18002, 0, 0, 0, 0,18002, 0, 0,18002, 0,18002, 0,18002, 0,18002,18002,18002,18003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18003, 0, 0, 0, 0, 0, 0,18003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18003, 0,18003, 0,18003, 0, 0,18003, 0, 0, 0, 0,18003, 0, 0,18003, 0,18003, 0,18003, 0,18003,18003, 18003,18004, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18004, 0, 0, 0, 0, 0, 0, 18004, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18004, 0,18004, 0,18004, 0, 0,18004, 0, 0, 0, 0,18004, 0,18004,18004, 0,18004, 0,18004, 0,18004,18004,18004,18005, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18005, 0, 0, 0, 0, 0, 0,18005, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18005, 0,18005, 0,18005, 0, 0,18005, 0, 0, 0, 0,18005, 0, 0,18005, 0,18005, 0, 18005, 0,18005,18005,18005,18005,18006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18006, 0, 0, 0, 0, 0, 0,18006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18006, 0,18006, 0,18006, 0, 0,18006, 0, 0, 0, 0,18006, 0, 0,18006, 0,18006, 0,18006, 0, 18006,18006,18006,18007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18007, 0, 0, 0, 0, 0, 0,18007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18007, 0,18007, 0, 18007, 0, 0,18007, 0, 0, 0, 0,18007, 0, 18007,18007, 0,18007, 0,18007, 0,18007,18007,18007, 18008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18008, 0, 0, 0, 0, 0, 0,18008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18008, 0,18008, 0,18008, 0, 0, 18008, 0, 0, 0, 0,18008, 0, 0,18008, 0, 18008, 0,18008, 0,18008,18008,18008,18008,18009, 0, 18009, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18009, 0, 0, 0, 0, 0, 0,18009, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18009, 0,18009, 0,18009, 0, 0, 18009, 0, 0, 0, 0,18009, 0, 0,18009, 0, 18009, 0,18009, 0,18009,18009,18009,18010, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18010, 0, 0, 0, 0, 0, 0,18010, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18010, 0,18010, 0,18010, 0, 0,18010, 0, 0, 0, 0,18010, 0, 0,18010, 0,18010, 0,18010, 0,18010,18010,18010,18011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18011, 0, 0, 0, 0, 0, 0,18011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18011, 0,18011, 0,18011, 0, 0,18011, 0, 0, 0, 0,18011, 0, 0,18011, 0,18011, 0,18011, 0,18011,18011, 18011,18012,18012, 0, 0, 0, 0,18012, 0, 0, 18012, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18012, 0, 0, 0, 0, 0, 0,18012, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18012, 0,18012, 0,18012, 0, 0, 18012, 0, 0, 0, 0,18012, 0, 0,18012, 0, 18012, 0,18012, 0,18012,18012,18012,18029,18029, 0, 0, 0, 0,18029, 0, 0,18029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18029, 0, 0, 0, 0, 0, 0,18029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18029, 0,18029, 0,18029, 0, 0,18029, 0, 0, 0, 0,18029, 0, 0,18029, 0,18029, 0,18029, 0, 18029,18029,18029,18030,18030, 0, 0, 0, 0,18030, 0, 0,18030, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18030, 0, 0, 0, 0, 0, 0,18030, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18030, 0,18030, 0,18030, 0, 0,18030,18030, 0, 0, 0,18030, 0, 0, 18030, 0,18030, 0,18030, 0,18030,18030,18030,18035, 18035, 0,18035,18035,18035,18035,18035,18035, 0,18035, 18035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18035,18035,18035,18035,18035,18035,18035, 0, 0, 0, 0, 0,18035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18035, 18035,18035, 0, 0, 0,18035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18035,18045,18045, 0,18045,18045,18045,18045, 0, 18045,18045,18045, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18045,18045,18045,18045,18045,18045,18045, 0, 0, 0, 0, 0,18045, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18045,18045,18045,18045,18046,18046, 0,18046, 18046,18046,18046, 0,18046,18046,18046, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18046,18046,18046, 18046,18046,18046,18046,18046, 0, 0, 0, 0,18046, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18046,18046,18046,18046, 18070, 0, 0,18070, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18070, 0, 0, 0, 0, 0, 0,18070, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18070, 0,18070, 0,18070, 0, 0, 18070, 0, 0, 0, 0,18070, 0, 0,18070, 0, 18070, 0,18070, 0,18070,18070,18070,18071, 0, 0, 0, 0, 0, 0,18071, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18071, 0, 0, 0, 0, 0, 0,18071, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18071, 0,18071, 0,18071, 0, 0,18071, 0, 0, 0, 0,18071, 0, 0,18071, 0,18071, 0,18071, 0,18071,18071, 18071,18072, 0, 0, 0, 0, 0, 0, 0,18072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18072, 0, 0, 0, 0, 0, 0,18072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18072, 0,18072, 0,18072, 0, 0,18072, 0, 0, 0, 0,18072, 0, 0,18072, 0,18072, 0,18072, 0,18072,18072,18072,18072,18073,18073, 0, 0, 0, 0,18073, 0, 0,18073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18073, 0, 0, 0, 0, 0, 0,18073, 0, 0, 0, 0, 0,18073, 0, 0, 0, 0, 0, 0, 0,18073, 0,18073, 0,18073, 0, 0,18073, 0, 0, 0, 0,18073, 0, 0,18073, 0,18073, 0,18073, 0, 18073,18073,18073,18074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18074, 0, 0, 0, 0, 0, 0,18074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18074, 0,18074, 0, 18074, 0, 0,18074, 0, 0, 0, 0,18074, 0, 0,18074, 0,18074, 0,18074, 0,18074,18074,18074, 18075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18075, 0, 0,18075, 0, 0, 0,18075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18075, 0,18075, 0,18075, 0, 0, 18075, 0, 0, 0, 0,18075, 0, 0,18075, 0, 18075, 0,18075, 0,18075,18075,18075,18076, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18076, 0, 0, 0, 0,18076, 0, 0, 0, 0, 0, 0,18076, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18076, 0,18076, 0,18076, 0, 0,18076, 0, 0, 0, 0,18076, 0, 0,18076, 0,18076, 0,18076, 0,18076,18076,18076,18077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18077, 0, 0, 0, 0, 0, 0,18077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18077, 0,18077, 0,18077, 0, 0,18077, 0, 0, 0, 0,18077, 0, 0,18077, 0,18077, 0,18077, 0,18077,18077, 18077,18078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18078, 0, 0, 0, 0, 0, 0, 18078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18078, 0,18078, 0,18078, 0, 0,18078,18078, 0, 0, 0,18078, 0, 0,18078, 0,18078, 0,18078, 0,18078,18078,18078,18079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18079, 0, 0, 0, 0, 0, 0,18079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18079, 0,18079, 0,18079, 0, 0,18079, 0, 0, 0, 0,18079, 0, 0,18079, 0,18079, 0, 18079, 0,18079,18079,18079,18080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18080, 0, 0, 0, 0, 0, 0,18080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18080, 0, 18080, 0,18080, 0, 0,18080, 0, 0, 0, 0, 18080, 0, 0,18080, 0,18080, 0,18080, 0,18080, 18080,18080,18081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18081, 0, 0, 0, 0, 0, 0,18081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18081, 0,18081,18081,18081, 0, 0,18081,18081, 0, 0, 0,18081, 0, 0, 18081, 0,18081, 0,18081, 0,18081,18081,18081,18091, 18091, 0, 0, 0, 0,18091,18091, 0,18091, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18091, 0, 0, 0, 0, 0, 0,18091, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18091, 0,18091, 0,18091, 0, 0,18091, 0, 0, 0, 0,18091, 0, 0,18091, 0,18091, 0, 18091, 0,18091,18091,18091,18108,18108, 0, 0, 0, 0,18108, 0, 0,18108,18108,18108,18108,18108,18108, 18108,18108,18108,18108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18108, 0, 0, 0, 0, 0, 0,18108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18108, 0,18108, 0,18108, 0, 0,18108, 0, 0, 0, 0,18108, 0, 0,18108, 0,18108, 0,18108, 0,18108,18108, 18108,18109,18109, 0, 0, 0, 0,18109, 0, 0, 18109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18109, 0, 0, 0, 0, 0, 0,18109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18109, 0,18109, 0,18109, 0, 0, 18109, 0, 0, 0, 0,18109, 0, 0,18109, 0, 18109, 0,18109, 0,18109,18109,18109,18114,18114, 0, 18114,18114,18114,18114,18114,18114, 0,18114,18114, 0, 0, 0, 0, 0, 0, 0, 0, 0,18114,18114, 18114,18114,18114,18114,18114, 0, 0, 0, 0, 0, 18114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18114,18114,18114, 0, 0, 0,18114,18123,18123, 0,18123,18123,18123, 18123, 0,18123,18123,18123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18123,18123,18123,18123,18123, 18123,18123, 0, 0, 0, 0, 0,18123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18123,18123,18123,18123,18124,18124, 0,18124,18124,18124,18124, 0,18124,18124,18124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18124, 18124,18124,18124,18124,18124,18124,18124, 0, 0, 0, 0,18124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18124,18124, 18124,18124,18128,18128,18128,18128,18128,18128,18128,18128, 18128, 0, 0, 0, 0, 0, 0, 0,18128,18128, 18128,18128,18128,18128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18128,18128,18128,18128,18128,18128, 18146,18146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18146, 0, 0, 0, 0, 0, 0,18146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18146, 0,18146, 0,18146, 0, 0, 18146, 0, 0, 0, 0,18146, 0, 0,18146, 0, 18146, 0,18146, 0,18146,18146,18146,18147, 0, 0, 0, 0, 0, 0,18147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18147, 0, 0, 0, 0, 0, 0,18147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18147, 0,18147, 0,18147, 0, 0,18147, 0, 0, 0, 0,18147, 0, 0,18147, 0,18147, 0,18147, 0,18147,18147, 18147,18148,18148, 0, 0, 0, 0,18148, 0, 0, 18148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18148, 0, 0, 0, 0, 0, 0,18148, 0, 0,18148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18148, 0,18148, 0,18148, 0, 0, 18148, 0, 0, 0, 0,18148, 0, 0,18148, 0, 18148, 0,18148, 0,18148,18148,18148,18149, 0,18149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18149, 0, 0, 0, 0, 0, 0,18149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18149, 0,18149, 0,18149, 0, 0,18149, 0, 0, 0, 0,18149, 0, 0,18149, 0,18149, 0,18149, 0,18149,18149,18149,18150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18150, 0, 0, 0, 0, 0,18150,18150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18150, 0,18150, 0,18150, 0, 0,18150, 0, 0, 0, 0,18150, 0, 0,18150, 0,18150, 0,18150, 0, 18150,18150,18150,18151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18151, 0, 0, 0, 0, 0, 0,18151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18151, 0,18151,18151, 18151, 0, 0,18151, 0, 0, 0, 0,18151, 0, 0,18151, 0,18151, 0,18151, 0,18151,18151,18151, 18152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18152, 0, 0, 0, 0, 0, 0,18152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18152, 0,18152,18152,18152, 0, 0, 18152, 0, 0, 0, 0,18152, 0, 0,18152, 0, 18152, 0,18152, 0,18152,18152,18152,18153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18153, 0, 0, 0, 0, 0, 0,18153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18153, 0,18153, 0,18153, 0, 0,18153,18153, 0, 0, 0,18153, 0, 0,18153, 0,18153, 0,18153, 0,18153,18153,18153,18153,18160,18160, 0, 0, 0, 0,18160, 0, 0,18160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18160, 0, 0, 0, 0, 0, 0,18160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18160, 0,18160, 18160,18160, 0, 0,18160,18160, 0, 0, 0,18160, 0, 0,18160, 0,18160, 0,18160, 0,18160,18160, 18160,18183,18183,18183, 0, 0, 0,18183, 0,18183, 18183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18183, 0, 0, 0, 0, 0, 0,18183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18183, 0,18183, 0,18183, 0, 0, 18183, 0, 0, 0, 0,18183, 0, 0,18183, 0, 18183, 0,18183, 0,18183,18183,18183,18184,18184, 0, 0, 0, 0,18184, 0, 0,18184, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18184, 0, 0, 0, 0, 0, 0,18184, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18184, 0,18184, 0,18184, 0, 0,18184, 0, 0, 0, 0,18184,18184, 0,18184, 0,18184, 0,18184, 0, 18184,18184,18184,18197,18197, 0,18197,18197,18197,18197, 0,18197,18197,18197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18197,18197,18197,18197,18197,18197, 18197, 0, 0, 0, 0, 0,18197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18197,18197,18197,18197,18198,18198, 0, 18198,18198,18198,18198, 0,18198,18198,18198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18198,18198, 18198,18198,18198,18198,18198,18198, 0, 0, 0, 0, 18198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18198,18198,18198, 18198,18202,18202,18202,18202,18202,18202,18202,18202,18202, 0, 0, 0, 0, 0, 0, 0,18202,18202,18202, 18202,18202,18202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18202,18202,18202,18202,18202,18202,18220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18220, 0, 0, 0, 0, 0, 0,18220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18220, 0,18220, 0,18220, 0, 0,18220, 0, 0, 0, 0,18220, 0, 0,18220, 0,18220, 0,18220, 0,18220,18220,18220,18221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18221, 0, 0, 0, 0, 0, 0,18221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18221, 0,18221, 0,18221, 0, 0,18221, 0, 0, 0, 0,18221, 0, 0,18221, 0,18221, 0,18221, 0, 18221,18221,18221,18222,18222, 0, 0, 0, 0,18222, 0, 0,18222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18222, 0, 0, 0, 0, 0, 0,18222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18222, 0,18222, 0,18222, 0, 0,18222, 0, 0, 0, 0,18222, 0, 0, 18222, 0,18222, 0,18222, 0,18222,18222,18222,18223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18223, 0, 0, 0, 0, 0, 0,18223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18223, 0,18223, 0,18223, 0, 0,18223, 0, 0, 0,18223,18223, 0, 0,18223, 0,18223, 18223,18223, 0,18223,18223,18223,18224, 0, 0, 0, 0, 0, 0, 0,18224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18224, 0, 0, 0, 0, 0, 0,18224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18224, 0,18224, 0,18224, 0, 0,18224, 0, 0, 0, 0,18224, 0, 0,18224, 0,18224, 0,18224, 0,18224,18224, 18224,18225, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18225, 0, 0, 0, 0, 0, 0, 18225, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18225, 0,18225, 0,18225, 0, 0,18225, 0, 0, 0, 0,18225, 0, 0,18225, 0,18225, 0,18225, 0,18225,18225,18225,18226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18226, 0, 0, 0, 0, 0, 0,18226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18226, 0,18226, 0,18226, 0, 0,18226, 0, 0, 0, 0,18226, 0, 0,18226, 0,18226, 0, 18226, 0,18226,18226,18226,18227, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18227, 0, 0, 0, 0, 0, 0,18227, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18227, 0, 18227, 0,18227, 0, 0,18227, 0, 0, 0, 0, 18227,18227, 0,18227, 0,18227, 0,18227, 0,18227, 18227,18227,18228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18228, 0, 0, 0, 0, 0, 0,18228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18228,18228,18228, 0,18228, 0, 0,18228, 0, 0, 0, 0,18228, 0, 0, 18228, 0,18228, 0,18228, 0,18228,18228,18228,18229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18229, 0, 0, 0, 0, 0, 0,18229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18229, 0,18229, 0,18229, 0, 0,18229, 0, 0, 0, 0,18229, 0, 0,18229, 0,18229, 0,18229, 0,18229,18229,18229,18230,18230, 0, 0, 0, 0,18230, 0, 0,18230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18230, 0, 0, 0, 0, 0, 0,18230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18230, 0, 18230, 0,18230, 0, 0,18230, 0, 0, 0, 0, 18230, 0, 0,18230, 0,18230, 0,18230, 0,18230, 18230,18230,18231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18231, 0, 0, 0, 0, 0, 0,18231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18231, 0,18231, 0,18231, 0, 0,18231, 0, 0, 0,18231,18231, 0, 0, 18231, 0,18231, 0,18231, 0,18231,18231,18231,18232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18232, 0, 0, 0, 0, 0, 0,18232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18232, 0,18232,18232,18232, 0, 0,18232, 0, 0, 0, 0,18232, 0, 0,18232, 0,18232, 0,18232, 0,18232,18232,18232,18233, 0, 0, 0, 18233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18233, 0, 0, 0, 0, 0, 0,18233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18233, 0,18233, 0,18233, 0, 0,18233, 0, 0, 0, 0,18233, 0, 0,18233, 0,18233, 0,18233, 0, 18233,18233,18233,18234, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18234, 0, 0, 0, 0, 0, 0,18234, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18234, 0,18234, 0, 18234, 0, 0,18234, 0, 0, 0, 0,18234, 0, 0,18234, 0,18234, 0,18234, 0,18234,18234,18234, 18234,18235, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18235, 0, 0, 0, 0, 0, 0, 18235, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18235, 0,18235,18235,18235, 0, 0,18235, 0, 0, 0, 0,18235, 0, 0,18235, 0,18235, 0,18235, 0,18235,18235,18235,18236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18236, 0, 0, 0, 0, 0, 0,18236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18236, 0,18236, 0,18236, 0,18236,18236, 0, 0, 0, 0,18236, 0,18236,18236, 0,18236, 0, 18236, 0,18236,18236,18236,18256,18256, 0, 0, 0, 0,18256, 0, 0,18256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18256, 0, 0, 0, 0, 0, 0,18256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18256, 0,18256, 0,18256, 0, 0,18256, 0, 0, 0, 0,18256, 0, 0,18256, 0,18256, 0,18256, 0,18256,18256, 18256,18257,18257, 0, 0, 0, 0,18257, 0, 0, 18257,18257,18257,18257,18257,18257,18257,18257,18257,18257, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18257, 0, 0, 0, 0, 0, 0,18257, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18257, 0,18257, 0,18257, 0, 0, 18257, 0, 0, 0, 0,18257, 0, 0,18257, 0, 18257, 0,18257, 0,18257,18257,18257,18268,18268, 0, 18268,18268,18268,18268, 0,18268,18268,18268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18268,18268, 18268,18268,18268,18268,18268, 0, 0, 0, 0, 0, 18268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18268,18268,18268, 18268,18269,18269, 0,18269,18269,18269,18269, 0,18269, 18269,18269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18269,18269,18269,18269,18269,18269,18269,18269, 0, 0, 0, 0,18269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18269,18269,18269,18269,18291,18291, 0, 0, 0, 0,18291, 0, 0,18291,18291,18291,18291,18291,18291, 18291,18291,18291,18291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18291, 0, 0, 0, 0, 0, 0,18291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18291, 0,18291, 0,18291, 0, 0,18291, 0, 0, 0, 0,18291, 0, 0,18291, 0,18291, 0,18291, 0,18291,18291, 18291,18292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18292, 0, 0, 0, 0, 0, 0, 18292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18292, 0,18292, 0,18292, 0, 0,18292, 0, 0, 0, 0,18292, 0,18292,18292, 0,18292, 0,18292, 0,18292,18292,18292,18293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18293, 0, 0, 0, 0, 0,18293,18293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18293, 0,18293, 0,18293, 0, 0,18293, 0, 0, 0, 0,18293, 0, 0,18293, 0,18293, 0, 18293, 0,18293,18293,18293,18294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18294, 0, 0, 0, 0, 0, 0,18294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18294, 0, 18294, 0,18294, 0, 0,18294,18294, 0, 0, 0, 18294, 0, 0,18294, 0,18294, 0,18294, 0,18294, 18294,18294,18294,18298,18298, 0, 0, 0, 0,18298, 0, 0,18298, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18298, 0, 0, 0, 0, 0, 0,18298, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18298, 0,18298, 0,18298, 0, 0,18298, 0, 0, 0, 0,18298, 0, 0, 18298, 0,18298, 0,18298, 0,18298,18298,18298,18321, 18321, 0, 0, 0, 0,18321, 0, 0,18321, 0, 0,18321, 0,18321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18321, 0,18321, 0, 0, 0, 0,18321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18321, 0,18321, 0,18321, 0, 0,18321, 0, 0, 0, 0,18321, 0, 0,18321, 0,18321, 0, 18321, 0,18321,18321,18321,18322,18322,18322, 0, 0, 0,18322, 0, 0,18322, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18322, 0, 0, 0, 0, 0, 0,18322, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18322, 0,18322, 0,18322, 0, 0,18322, 0, 0, 0, 0,18322, 0, 0,18322, 0,18322, 0,18322, 0,18322,18322, 18322,18333,18333, 0,18333,18333,18333,18333, 0,18333, 18333,18333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18333,18333,18333,18333,18333,18333,18333, 0, 0, 0, 0, 0,18333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18333,18333,18333,18333,18334,18334, 0,18334,18334, 18334,18334, 0,18334,18334,18334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18334,18334,18334,18334, 18334,18334,18334,18334, 0, 0, 0, 0,18334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18334,18334,18334,18334,18338, 18338,18338,18338,18338,18338,18338,18338,18338, 0, 0, 0, 0, 0, 0, 0,18338,18338,18338,18338,18338, 18338, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18338,18338,18338,18338,18338,18338,18394,18394, 0, 18394,18394,18394,18394, 0,18394,18394,18394, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18394,18394, 18394,18394,18394,18394,18394, 0, 0, 0, 0, 0, 18394, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18394,18394,18394, 18394,18395,18395, 0,18395,18395,18395,18395, 0,18395, 18395,18395, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18395,18395,18395,18395,18395,18395,18395,18395, 0, 0, 0, 0,18395, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18395,18395,18395,18395,18399,18399,18399,18399,18399, 18399,18399,18399,18399, 0, 0, 0, 0, 0, 0, 0,18399,18399,18399,18399,18399,18399, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18399,18399,18399, 18399,18399,18399,18451,18451, 0,18451,18451,18451,18451, 0,18451,18451,18451, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18451,18451,18451,18451,18451,18451, 18451, 0, 0, 0, 0, 0,18451, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18451,18451,18451,18451,18452,18452, 0, 18452,18452,18452,18452, 0,18452,18452,18452, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18452,18452, 18452,18452,18452,18452,18452,18452, 0, 0, 0, 0, 18452, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18452,18452,18452, 18452,18499,18499, 0,18499,18499,18499,18499, 0,18499, 18499,18499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18499,18499,18499,18499,18499,18499,18499, 0, 0, 0, 0, 0,18499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18499,18499,18499,18499,18500,18500, 0,18500,18500, 18500,18500, 0,18500,18500,18500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18500,18500,18500,18500, 18500,18500,18500,18500, 0, 0, 0, 0,18500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18500,18500,18500,18500,18504, 18504,18504,18504,18504,18504,18504,18504,18504, 0, 0, 0, 0, 0, 0, 0,18504,18504,18504,18504,18504, 18504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18504,18504,18504,18504,18504,18504,18544,18544, 0, 18544,18544,18544,18544, 0,18544,18544,18544, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18544,18544, 18544,18544,18544,18544,18544, 0, 0, 0, 0, 0, 18544, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18544,18544,18544, 18544,18545,18545, 0,18545,18545,18545,18545, 0,18545, 18545,18545, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18545,18545,18545,18545,18545,18545,18545,18545, 0, 0, 0, 0,18545, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18545,18545,18545,18545,18549,18549,18549,18549,18549, 18549,18549,18549,18549, 0, 0, 0, 0, 0, 0, 0,18549,18549,18549,18549,18549,18549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18549,18549,18549, 18549,18549,18549,18586,18586, 0,18586,18586,18586,18586, 0,18586,18586,18586, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18586,18586,18586,18586,18586,18586, 18586, 0, 0, 0, 0, 0,18586, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18586,18586,18586,18586,18587,18587, 0, 18587,18587,18587,18587, 0,18587,18587,18587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18587,18587, 18587,18587,18587,18587,18587,18587, 0, 0, 0, 0, 18587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18587,18587,18587, 18587,18624,18624, 0,18624,18624,18624,18624, 0,18624, 18624,18624, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18624,18624,18624,18624,18624,18624,18624, 0, 0, 0, 0, 0,18624, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18624,18624,18624,18624,18625,18625, 0,18625,18625, 18625,18625, 0,18625,18625,18625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18625,18625,18625,18625, 18625,18625,18625,18625, 0, 0, 0, 0,18625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18625,18625,18625,18625,18629, 18629,18629,18629,18629,18629,18629,18629,18629, 0, 0, 0, 0, 0, 0, 0,18629,18629,18629,18629,18629, 18629, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18629,18629,18629,18629,18629,18629,18658,18658, 0, 18658,18658,18658,18658, 0,18658,18658,18658, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18658,18658, 18658,18658,18658,18658,18658, 0, 0, 0, 0, 0, 18658, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18658,18658,18658, 18658,18659,18659, 0,18659,18659,18659,18659, 0,18659, 18659,18659, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18659,18659,18659,18659,18659,18659,18659,18659, 0, 0, 0, 0,18659, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18659,18659,18659,18659,18663,18663,18663,18663,18663, 18663,18663,18663,18663, 0, 0, 0, 0, 0, 0, 0,18663,18663,18663,18663,18663,18663, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18663,18663,18663, 18663,18663,18663,18690,18690, 0,18690,18690,18690,18690, 0,18690,18690,18690, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18690,18690,18690,18690,18690,18690, 18690, 0, 0, 0, 0, 0,18690, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18690,18690,18690,18690,18691,18691, 0, 18691,18691,18691,18691, 0,18691,18691,18691, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18691,18691, 18691,18691,18691,18691,18691,18691, 0, 0, 0, 0, 18691, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18691,18691,18691, 18691,18721,18721, 0,18721,18721,18721,18721, 0,18721, 18721,18721, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18721,18721,18721,18721,18721,18721,18721, 0, 0, 0, 0, 0,18721, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18721,18721,18721,18721,18722,18722, 0,18722,18722, 18722,18722, 0,18722,18722,18722, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18722,18722,18722,18722, 18722,18722,18722,18722, 0, 0, 0, 0,18722, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18722,18722,18722,18722,18726, 18726,18726,18726,18726,18726,18726,18726,18726, 0, 0, 0, 0, 0, 0, 0,18726,18726,18726,18726,18726, 18726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18726,18726,18726,18726,18726,18726,18739,18739,18739, 18739,18739,18739,18739,18739,18739, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18739, 0, 0, 0, 0, 0, 0, 0,18739, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18739, 0,18739,18752,18752,18752,18752,18752,18752, 18752,18752,18752, 0, 0, 0, 0, 0, 0, 0, 18752,18752,18752,18752,18752,18752, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18752,18752,18752,18752, 18752,18752,18791,18791,18791,18791,18791,18791,18791,18791, 18791, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18791, 0, 0, 0, 0, 0, 0, 0,18791, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18791,18800, 18800,18800,18800,18800,18800,18800,18800,18800, 0, 0, 0, 0, 0, 0, 0,18800,18800,18800,18800,18800, 18800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18800,18800,18800,18800,18800,18800,18822,18822,18822, 18822,18822,18822,18822,18822,18822, 0, 0, 0, 0, 0, 0, 0,18822,18822,18822,18822,18822,18822, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18822, 18822,18822,18822,18822,18822,19008, 0,19008,19008,19008, 19009, 0,19009,19009,19009,19010,19010,19010,19010,19010, 19011,19011,19011,19011,19011,19012,19012,19012,19012,19012, 19013,19013,19013,19013,19013,19014, 0,19014,19014,19014, 19015, 0,19015,19015,19015,19016, 0,19016,19016,19016, 19017, 0,19017,19017,19017,19018, 0,19018,19018,19018, 19019, 0,19019,19019,19019,19020, 0,19020,19020,19020, 19021, 0,19021,19021,19021,19022, 0,19022,19022,19022, 19023, 0,19023,19023,19023,19024, 0,19024,19024,19024, 19025, 0,19025,19025,19025,19026, 0,19026,19026,19026, 19027, 0,19027,19027,19027,19028, 0,19028,19028,19028, 19029, 0,19029,19029,19029,19030, 0,19030,19030,19030, 19031, 0,19031,19031,19031,19032, 0,19032,19032,19032, 19033, 0,19033,19033,19033,19034, 0,19034,19034,19034, 19035, 0,19035,19035,19035,19036, 0,19036,19036,19036, 19037, 0,19037,19037,19037,19038, 0,19038,19038,19038, 19039, 0,19039,19039,19039,19040, 0,19040,19040,19040, 19041, 0,19041,19041,19041,19042, 0,19042,19042,19042, 19043, 0,19043,19043,19043,19044, 0,19044,19044,19044, 19045, 0,19045,19045,19045,19046, 0,19046,19046,19046, 19047, 0,19047,19047,19047,19048, 0,19048,19048,19048, 19049, 0,19049,19049,19049,19050, 0,19050,19050,19050, 19051, 0,19051,19051,19051,19052, 0,19052,19052,19052, 19053,19053,19053,19053,19053,19054, 0,19054,19054,19054, 19055, 0,19055,19055,19055,19056, 0,19056,19056,19056, 19057,19057,19057,19057,19057,19058, 0,19058,19058,19058, 19059, 0,19059,19059,19059,19060,19060,19060,19060,19060, 19061, 0,19061,19061,19061,19062, 0,19062,19062,19062, 19063, 0,19063,19063,19063,19064, 0,19064,19064,19064, 19065, 0,19065,19065,19065,19066, 0,19066,19066,19066, 19067, 0,19067,19067,19067,19068, 0,19068,19068,19068, 19069, 0,19069,19069,19069,19070, 0,19070,19070,19070, 19071, 0,19071,19071,19071,19072, 0,19072,19072,19072, 19073, 0,19073,19073,19073,19074, 0,19074,19074,19074, 19075, 0,19075,19075,19075,19076, 0,19076,19076,19076, 19077, 0,19077,19077,19077,19078, 0,19078,19078,19078, 19079,19079,19079,19079,19079,19080,19080,19080,19080,19080, 19081, 0,19081,19081,19081,19082, 0,19082,19082,19082, 19083, 0,19083,19083,19083,19084, 0,19084,19084,19084, 19085, 0,19085,19085,19085,19086, 0,19086,19086,19086, 19087,19087,19087,19087,19087,19088, 0,19088,19088,19088, 19089, 0,19089,19089,19089,19090,19090,19090,19090,19090, 19091, 0,19091,19091,19091,19092, 0,19092,19092,19092, 19093, 0,19093,19093,19093,19094, 0,19094,19094,19094, 19095, 0,19095,19095,19095,19096, 0,19096,19096,19096, 19097, 0,19097,19097,19097,19098, 0,19098,19098,19098, 19099, 0,19099,19099,19099,19100, 0,19100,19100,19100, 19101, 0,19101,19101,19101,19102, 0,19102,19102,19102, 19103, 0,19103,19103,19103,19104, 0,19104,19104,19104, 19105, 0,19105,19105,19105,19106, 0,19106,19106,19106, 19107, 0,19107,19107,19107,19108, 0,19108,19108,19108, 19109, 0,19109,19109,19109,19110, 0,19110,19110,19110, 19111, 0,19111,19111,19111,19112,19112,19112,19112,19112, 19113, 0,19113,19113,19113,19114, 0,19114,19114,19114, 19115, 0,19115,19115,19115,19116, 0,19116,19116,19116, 19117, 0,19117,19117,19117,19118, 0,19118,19118,19118, 19119, 0,19119,19119,19119,19120, 0,19120,19120,19120, 19121, 0,19121,19121,19121,19122, 0,19122,19122,19122, 19123,19123,19123,19123,19123,19124, 0,19124,19124,19124, 19125, 0,19125,19125,19125,19126, 0,19126,19126,19126, 19127,19127,19127,19127,19127,19128, 0,19128,19128,19128, 19129, 0,19129,19129,19129,19130, 0,19130,19130,19130, 19131, 0,19131,19131,19131,19132, 0,19132,19132,19132, 19133, 0,19133,19133,19133,19134, 0,19134,19134,19134, 19135, 0,19135,19135,19135,19136, 0,19136,19136,19136, 19137, 0,19137,19137,19137,19138, 0,19138,19138,19138, 19139, 0,19139,19139,19139,19140, 0,19140,19140,19140, 19141, 0,19141,19141,19141,19142, 0,19142,19142,19142, 19143, 0,19143,19143,19143,19144, 0,19144,19144,19144, 19145, 0,19145,19145,19145,19146, 0,19146,19146,19146, 19147, 0,19147,19147,19147,19148, 0,19148,19148,19148, 19149, 0,19149,19149,19149,19150, 0,19150,19150,19150, 19151, 0,19151,19151,19151,19152,19152,19152,19152,19152, 19153, 0,19153,19153,19153,19154,19154,19154,19154,19154, 19155, 0,19155,19155,19155,19156, 0,19156,19156,19156, 19157, 0,19157,19157,19157,19158, 0,19158,19158,19158, 19159, 0,19159,19159,19159,19160, 0,19160,19160,19160, 19161, 0,19161,19161,19161,19162, 0,19162,19162,19162, 19163, 0,19163,19163,19163,19164, 0,19164,19164,19164, 19165, 0,19165,19165,19165,19166,19166,19166,19166,19166, 19167, 0,19167,19167,19167,19168, 0,19168,19168,19168, 19169, 0,19169,19169,19169,19170,19170,19170,19170,19170, 19171, 0,19171,19171,19171,19172, 0,19172,19172,19172, 19173, 0,19173,19173,19173,19174, 0,19174,19174,19174, 19175, 0,19175,19175,19175,19176, 0,19176,19176,19176, 19177, 0,19177,19177,19177,19178, 0,19178,19178,19178, 19179, 0,19179,19179,19179,19180, 0,19180,19180,19180, 19181, 0,19181,19181,19181,19182, 0,19182,19182,19182, 19183, 0,19183,19183,19183,19184, 0,19184,19184,19184, 19185, 0,19185,19185,19185,19186, 0,19186,19186,19186, 19187, 0,19187,19187,19187,19188, 0,19188,19188,19188, 19189, 0,19189,19189,19189,19190, 0,19190,19190,19190, 19191, 0,19191,19191,19191,19192, 0,19192,19192,19192, 19193,19193,19193,19193,19193,19194,19194,19194,19194,19194, 19195,19195,19195,19195,19195,19196,19196,19196,19196,19196, 19197,19197,19197,19197,19197,19198, 0,19198,19198,19198, 19199, 0,19199,19199,19199,19200, 0,19200,19200,19200, 19201, 0,19201,19201,19201,19202, 0,19202,19202,19202, 19203, 0,19203,19203,19203,19204, 0,19204,19204,19204, 19205, 0,19205,19205,19205,19206, 0,19206,19206,19206, 19207, 0,19207,19207,19207,19208, 0,19208,19208,19208, 19209, 0,19209,19209,19209,19210, 0,19210,19210,19210, 19211, 0,19211,19211,19211,19212, 0,19212,19212,19212, 19213,19213,19213,19213,19213,19214, 0,19214,19214,19214, 19215, 0,19215,19215,19215,19216, 0,19216,19216,19216, 19217,19217,19217,19217,19217,19218, 0,19218,19218,19218, 19219, 0,19219,19219,19219,19220, 0,19220,19220,19220, 19221, 0,19221,19221,19221,19222, 0,19222,19222,19222, 19223, 0,19223,19223,19223,19224, 0,19224,19224,19224, 19225, 0,19225,19225,19225,19226, 0,19226,19226,19226, 19227, 0,19227,19227,19227,19228, 0,19228,19228,19228, 19229, 0,19229,19229,19229,19230, 0,19230,19230,19230, 19231, 0,19231,19231,19231,19232, 0,19232,19232,19232, 19233, 0,19233,19233,19233,19234, 0,19234,19234,19234, 19235, 0,19235,19235,19235,19236, 0,19236,19236,19236, 19237, 0,19237,19237,19237,19238, 0,19238,19238,19238, 19239, 0,19239,19239,19239,19240,19240,19240,19240,19240, 19241, 0,19241,19241,19241,19242,19242,19242,19242,19242, 19243,19243,19243,19243,19243,19244,19244,19244,19244,19244, 19245, 0,19245,19245,19245,19246, 0,19246,19246,19246, 19247, 0,19247,19247,19247,19248, 0,19248,19248,19248, 19249, 0,19249,19249,19249,19250, 0,19250,19250,19250, 19251, 0,19251,19251,19251,19252, 0,19252,19252,19252, 19253, 0,19253,19253,19253,19254, 0,19254,19254,19254, 19255, 0,19255,19255,19255,19256, 0,19256,19256,19256, 19257, 0,19257,19257,19257,19258, 0,19258,19258,19258, 19259,19259,19259,19259,19259,19260, 0,19260,19260,19260, 19261, 0,19261,19261,19261,19262, 0,19262,19262,19262, 19263,19263,19263,19263,19263,19264, 0,19264,19264,19264, 19265, 0,19265,19265,19265,19266, 0,19266,19266,19266, 19267, 0,19267,19267,19267,19268, 0,19268,19268,19268, 19269, 0,19269,19269,19269,19270, 0,19270,19270,19270, 19271, 0,19271,19271,19271,19272, 0,19272,19272,19272, 19273, 0,19273,19273,19273,19274, 0,19274,19274,19274, 19275, 0,19275,19275,19275,19276, 0,19276,19276,19276, 19277, 0,19277,19277,19277,19278,19278,19278,19278,19278, 19279, 0,19279,19279,19279,19280, 0,19280,19280,19280, 19281, 0,19281,19281,19281,19282, 0,19282,19282,19282, 19283, 0,19283,19283,19283,19284, 0,19284,19284,19284, 19285, 0,19285,19285,19285,19286, 0,19286,19286,19286, 19287, 0,19287,19287,19287,19288, 0,19288,19288,19288, 19289, 0,19289,19289,19289,19290, 0,19290,19290,19290, 19291, 0,19291,19291,19291,19292,19292,19292,19292,19292, 19293, 0,19293,19293,19293,19294, 0,19294,19294,19294, 19295,19295,19295,19295,19295,19296,19296,19296,19296,19296, 19297,19297,19297,19297,19297,19298, 0,19298,19298,19298, 19299, 0,19299,19299,19299,19300, 0,19300,19300,19300, 19301, 0,19301,19301,19301,19302, 0,19302,19302,19302, 19303, 0,19303,19303,19303,19304,19304,19304,19304,19304, 19305, 0,19305,19305,19305,19306, 0,19306,19306,19306, 19307, 0,19307,19307,19307,19308, 0,19308,19308,19308, 19309, 0,19309,19309,19309,19310, 0,19310,19310,19310, 19311, 0,19311,19311,19311,19312, 0,19312,19312,19312, 19313, 0,19313,19313,19313,19314, 0,19314,19314,19314, 19315, 0,19315,19315,19315,19316, 0,19316,19316,19316, 19317, 0,19317,19317,19317,19318, 0,19318,19318,19318, 19319,19319,19319,19319,19319,19320, 0,19320,19320,19320, 19321, 0,19321,19321,19321,19322, 0,19322,19322,19322, 19323,19323,19323,19323,19323,19324, 0,19324,19324,19324, 19325, 0,19325,19325,19325,19326, 0,19326,19326,19326, 19327, 0,19327,19327,19327,19328, 0,19328,19328,19328, 19329, 0,19329,19329,19329,19330, 0,19330,19330,19330, 19331, 0,19331,19331,19331,19332, 0,19332,19332,19332, 19333, 0,19333,19333,19333,19334, 0,19334,19334,19334, 19335, 0,19335,19335,19335,19336, 0,19336,19336,19336, 19337, 0,19337,19337,19337,19338, 0,19338,19338,19338, 19339,19339,19339,19339,19339,19340,19340,19340, 0,19340, 19341, 0,19341,19341,19341,19342,19342,19342,19342,19342, 19343, 0,19343,19343,19343,19344, 0,19344,19344,19344, 19345, 0,19345,19345,19345,19346, 0,19346,19346,19346, 19347, 0,19347,19347,19347,19348, 0,19348,19348,19348, 19349, 0,19349,19349,19349,19350, 0,19350,19350,19350, 19351, 0,19351,19351,19351,19352, 0,19352,19352,19352, 19353, 0,19353,19353,19353,19354, 0,19354,19354,19354, 19355, 0,19355,19355,19355,19356,19356,19356,19356,19356, 19357, 0,19357,19357,19357,19358, 0,19358,19358,19358, 19359,19359,19359,19359,19359,19360,19360,19360,19360,19360, 19361, 0,19361,19361,19361,19362,19362,19362,19362,19362, 19363, 0,19363,19363,19363,19364, 0,19364,19364,19364, 19365, 0,19365,19365,19365,19366, 0,19366,19366,19366, 19367, 0,19367,19367,19367,19368, 0,19368,19368,19368, 19369,19369,19369,19369,19369,19370,19370,19370,19370,19370, 19371,19371,19371,19371,19371,19372,19372,19372,19372,19372, 19373, 0,19373,19373,19373,19374, 0,19374,19374,19374, 19375, 0,19375,19375,19375,19376, 0,19376,19376,19376, 19377, 0,19377,19377,19377,19378, 0,19378,19378,19378, 19379, 0,19379,19379,19379,19380, 0,19380,19380,19380, 19381, 0,19381,19381,19381,19382, 0,19382,19382,19382, 19383, 0,19383,19383,19383,19384, 0,19384,19384,19384, 19385, 0,19385,19385,19385,19386, 0,19386,19386,19386, 19387, 0,19387,19387,19387,19388, 0,19388,19388,19388, 19389, 0,19389,19389,19389,19390, 0,19390,19390,19390, 19391, 0,19391,19391,19391,19392, 0,19392,19392,19392, 19393,19393,19393,19393,19393,19394, 0,19394,19394,19394, 19395, 0,19395,19395,19395,19396, 0,19396,19396,19396, 19397,19397,19397,19397,19397,19398, 0,19398,19398,19398, 19399, 0,19399,19399,19399,19400, 0,19400,19400,19400, 19401, 0,19401,19401,19401,19402, 0,19402,19402,19402, 19403, 0,19403,19403,19403,19404, 0,19404,19404,19404, 19405, 0,19405,19405,19405,19406, 0,19406,19406,19406, 19407, 0,19407,19407,19407,19408, 0,19408,19408,19408, 19409, 0,19409,19409,19409,19410, 0,19410,19410,19410, 19411, 0,19411,19411,19411,19412,19412,19412,19412,19412, 19413,19413,19413, 0,19413,19414, 0,19414,19414,19414, 19415,19415,19415,19415,19415,19416, 0,19416,19416,19416, 19417, 0,19417,19417,19417,19418, 0,19418,19418,19418, 19419, 0,19419,19419,19419,19420, 0,19420,19420,19420, 19421, 0,19421,19421,19421,19422, 0,19422,19422,19422, 19423, 0,19423,19423,19423,19424, 0,19424,19424,19424, 19425, 0,19425,19425,19425,19426, 0,19426,19426,19426, 19427, 0,19427,19427,19427,19428, 0,19428,19428,19428, 19429, 0,19429,19429,19429,19430, 0,19430,19430,19430, 19431,19431,19431,19431,19431,19432, 0,19432,19432,19432, 19433,19433,19433,19433,19433,19434,19434,19434,19434,19434, 19435, 0,19435,19435,19435,19436,19436,19436,19436,19436, 19437, 0,19437,19437,19437,19438, 0,19438,19438,19438, 19439, 0,19439,19439,19439,19440, 0,19440,19440,19440, 19441, 0,19441,19441,19441,19442, 0,19442,19442,19442, 19443, 0,19443,19443,19443,19444, 0,19444,19444,19444, 19445, 0,19445,19445,19445,19446, 0,19446,19446,19446, 19447,19447,19447,19447,19447,19448,19448,19448,19448,19448, 19449,19449,19449,19449,19449,19450,19450,19450,19450,19450, 19451, 0,19451,19451,19451,19452, 0,19452,19452,19452, 19453, 0,19453,19453,19453,19454, 0,19454,19454,19454, 19455, 0,19455,19455,19455,19456, 0,19456,19456,19456, 19457, 0,19457,19457,19457,19458, 0,19458,19458,19458, 19459, 0,19459,19459,19459,19460, 0,19460,19460,19460, 19461, 0,19461,19461,19461,19462, 0,19462,19462,19462, 19463, 0,19463,19463,19463,19464, 0,19464,19464,19464, 19465, 0,19465,19465,19465,19466, 0,19466,19466,19466, 19467, 0,19467,19467,19467,19468, 0,19468,19468,19468, 19469, 0,19469,19469,19469,19470, 0,19470,19470,19470, 19471, 0,19471,19471,19471,19472, 0,19472,19472,19472, 19473, 0,19473,19473,19473,19474, 0,19474,19474,19474, 19475, 0,19475,19475,19475,19476, 0,19476,19476,19476, 19477, 0,19477,19477,19477,19478, 0,19478,19478,19478, 19479, 0,19479,19479,19479,19480,19480,19480,19480,19480, 19481, 0,19481,19481,19481,19482, 0,19482,19482,19482, 19483, 0,19483,19483,19483,19484,19484,19484,19484,19484, 19485, 0,19485,19485,19485,19486, 0,19486,19486,19486, 19487, 0,19487,19487,19487,19488, 0,19488,19488,19488, 19489,19489,19489,19489,19489,19490, 0,19490,19490,19490, 19491, 0,19491,19491,19491,19492, 0,19492,19492,19492, 19493, 0,19493,19493,19493,19494, 0,19494,19494,19494, 19495, 0,19495,19495,19495,19496, 0,19496,19496,19496, 19497, 0,19497,19497,19497,19498, 0,19498,19498,19498, 19499, 0,19499,19499,19499,19500,19500,19500, 0,19500, 19501,19501,19501,19501,19501,19502, 0,19502,19502,19502, 19503,19503,19503,19503,19503,19504, 0,19504,19504,19504, 19505, 0,19505,19505,19505,19506, 0,19506,19506,19506, 19507, 0,19507,19507,19507,19508, 0,19508,19508,19508, 19509, 0,19509,19509,19509,19510, 0,19510,19510,19510, 19511, 0,19511,19511,19511,19512, 0,19512,19512,19512, 19513, 0,19513,19513,19513,19514, 0,19514,19514,19514, 19515, 0,19515,19515,19515,19516, 0,19516,19516,19516, 19517, 0,19517,19517,19517,19518, 0,19518,19518,19518, 19519, 0,19519,19519,19519,19520, 0,19520,19520,19520, 19521, 0,19521,19521,19521,19522, 0,19522,19522,19522, 19523, 0,19523,19523,19523,19524, 0,19524,19524,19524, 19525, 0,19525,19525,19525,19526, 0,19526,19526,19526, 19527,19527,19527,19527,19527,19528, 0,19528,19528,19528, 19529,19529,19529,19529,19529,19530,19530, 0,19530,19530, 19531, 0,19531,19531,19531,19532,19532,19532,19532,19532, 19533, 0,19533,19533,19533,19534, 0,19534,19534,19534, 19535, 0,19535,19535,19535,19536, 0,19536,19536,19536, 19537, 0,19537,19537,19537,19538, 0,19538,19538,19538, 19539, 0,19539,19539,19539,19540, 0,19540,19540,19540, 19541, 0,19541,19541,19541,19542, 0,19542,19542,19542, 19543, 0,19543,19543,19543,19544, 0,19544,19544,19544, 19545, 0,19545,19545,19545,19546, 0,19546,19546,19546, 19547,19547,19547,19547,19547,19548,19548,19548,19548,19548, 19549,19549,19549,19549,19549,19550,19550,19550,19550,19550, 19551,19551,19551,19551,19551,19552,19552,19552,19552,19552, 19553, 0,19553,19553,19553,19554,19554,19554,19554,19554, 19555,19555,19555,19555,19555,19556, 0,19556,19556,19556, 19557, 0,19557,19557,19557,19558, 0,19558,19558,19558, 19559, 0,19559,19559,19559,19560, 0,19560,19560,19560, 19561, 0,19561,19561,19561,19562, 0,19562,19562,19562, 19563, 0,19563,19563,19563,19564, 0,19564,19564,19564, 19565, 0,19565,19565,19565,19566, 0,19566,19566,19566, 19567, 0,19567,19567,19567,19568, 0,19568,19568,19568, 19569, 0,19569,19569,19569,19570, 0,19570,19570,19570, 19571, 0,19571,19571,19571,19572, 0,19572,19572,19572, 19573, 0,19573,19573,19573,19574, 0,19574,19574,19574, 19575, 0,19575,19575,19575,19576, 0,19576,19576,19576, 19577, 0,19577,19577,19577,19578, 0,19578,19578,19578, 19579, 0,19579,19579,19579,19580, 0,19580,19580,19580, 19581, 0,19581,19581,19581,19582, 0,19582,19582,19582, 19583, 0,19583,19583,19583,19584, 0,19584,19584,19584, 19585, 0,19585,19585,19585,19586, 0,19586,19586,19586, 19587, 0,19587,19587,19587,19588, 0,19588,19588,19588, 19589, 0,19589,19589,19589,19590, 0,19590,19590,19590, 19591, 0,19591,19591,19591,19592,19592,19592,19592,19592, 19593, 0,19593,19593,19593,19594, 0,19594,19594,19594, 19595, 0,19595,19595,19595,19596, 0,19596,19596,19596, 19597,19597,19597,19597,19597,19598, 0,19598,19598,19598, 19599, 0,19599,19599,19599,19600, 0,19600,19600,19600, 19601, 0,19601,19601,19601,19602, 0,19602,19602,19602, 19603, 0,19603,19603,19603,19604, 0,19604,19604,19604, 19605, 0,19605,19605,19605,19606, 0,19606,19606,19606, 19607, 0,19607,19607,19607,19608, 0,19608,19608,19608, 19609, 0,19609,19609,19609,19610, 0,19610,19610,19610, 19611, 0,19611,19611,19611,19612,19612,19612,19612,19612, 19613,19613,19613, 0,19613,19614, 0,19614,19614,19614, 19615,19615,19615,19615,19615,19616, 0,19616,19616,19616, 19617, 0,19617,19617,19617,19618, 0,19618,19618,19618, 19619, 0,19619,19619,19619,19620, 0,19620,19620,19620, 19621, 0,19621,19621,19621,19622, 0,19622,19622,19622, 19623, 0,19623,19623,19623,19624, 0,19624,19624,19624, 19625, 0,19625,19625,19625,19626, 0,19626,19626,19626, 19627, 0,19627,19627,19627,19628, 0,19628,19628,19628, 19629, 0,19629,19629,19629,19630, 0,19630,19630,19630, 19631, 0,19631,19631,19631,19632, 0,19632,19632,19632, 19633,19633,19633,19633,19633,19634, 0,19634,19634,19634, 19635,19635,19635,19635,19635,19636,19636,19636,19636,19636, 19637, 0,19637,19637,19637,19638,19638,19638,19638,19638, 19639, 0,19639,19639,19639,19640, 0,19640,19640,19640, 19641, 0,19641,19641,19641,19642, 0,19642,19642,19642, 19643, 0,19643,19643,19643,19644, 0,19644,19644,19644, 19645, 0,19645,19645,19645,19646, 0,19646,19646,19646, 19647, 0,19647,19647,19647,19648, 0,19648,19648,19648, 19649, 0,19649,19649,19649,19650, 0,19650,19650,19650, 19651, 0,19651,19651,19651,19652, 0,19652,19652,19652, 19653, 0,19653,19653,19653,19654, 0,19654,19654,19654, 19655, 0,19655,19655,19655,19656, 0,19656,19656,19656, 19657,19657,19657,19657,19657,19658,19658,19658,19658,19658, 19659,19659,19659,19659,19659,19660,19660,19660,19660,19660, 19661,19661,19661,19661,19661,19662,19662,19662,19662,19662, 19663,19663,19663,19663,19663,19664,19664,19664,19664,19664, 19665,19665,19665,19665,19665,19666,19666,19666,19666,19666, 19667,19667,19667,19667,19667,19668, 0,19668,19668,19668, 19669, 0,19669,19669,19669,19670, 0,19670,19670,19670, 19671, 0,19671,19671,19671,19672, 0,19672,19672,19672, 19673, 0,19673,19673,19673,19674, 0,19674,19674,19674, 19675, 0,19675,19675,19675,19676, 0,19676,19676,19676, 19677, 0,19677,19677,19677,19678, 0,19678,19678,19678, 19679, 0,19679,19679,19679,19680, 0,19680,19680,19680, 19681, 0,19681,19681,19681,19682, 0,19682,19682,19682, 19683, 0,19683,19683,19683,19684, 0,19684,19684,19684, 19685, 0,19685,19685,19685,19686, 0,19686,19686,19686, 19687, 0,19687,19687,19687,19688, 0,19688,19688,19688, 19689, 0,19689,19689,19689,19690, 0,19690,19690,19690, 19691, 0,19691,19691,19691,19692, 0,19692,19692,19692, 19693, 0,19693,19693,19693,19694, 0,19694,19694,19694, 19695, 0,19695,19695,19695,19696, 0,19696,19696,19696, 19697, 0,19697,19697,19697,19698, 0,19698,19698,19698, 19699, 0,19699,19699,19699,19700, 0,19700,19700,19700, 19701, 0,19701,19701,19701,19702, 0,19702,19702,19702, 19703, 0,19703,19703,19703,19704, 0,19704,19704,19704, 19705, 0,19705,19705,19705,19706, 0,19706,19706,19706, 19707, 0,19707,19707,19707,19708, 0,19708,19708,19708, 19709, 0,19709,19709,19709,19710, 0,19710,19710,19710, 19711, 0,19711,19711,19711,19712, 0,19712,19712,19712, 19713, 0,19713,19713,19713,19714, 0,19714,19714,19714, 19715, 0,19715,19715,19715,19716,19716,19716,19716,19716, 19717, 0,19717,19717,19717,19718, 0,19718,19718,19718, 19719, 0,19719,19719,19719,19720, 0,19720,19720,19720, 19721,19721,19721,19721,19721,19722, 0,19722,19722,19722, 19723, 0,19723,19723,19723,19724, 0,19724,19724,19724, 19725, 0,19725,19725,19725,19726, 0,19726,19726,19726, 19727, 0,19727,19727,19727,19728, 0,19728,19728,19728, 19729, 0,19729,19729,19729,19730, 0,19730,19730,19730, 19731, 0,19731,19731,19731,19732, 0,19732,19732,19732, 19733, 0,19733,19733,19733,19734, 0,19734,19734,19734, 19735, 0,19735,19735,19735,19736,19736,19736,19736,19736, 19737,19737,19737, 0,19737,19738, 0,19738,19738,19738, 19739,19739,19739,19739,19739,19740, 0,19740,19740,19740, 19741, 0,19741,19741,19741,19742, 0,19742,19742,19742, 19743, 0,19743,19743,19743,19744, 0,19744,19744,19744, 19745, 0,19745,19745,19745,19746, 0,19746,19746,19746, 19747, 0,19747,19747,19747,19748, 0,19748,19748,19748, 19749, 0,19749,19749,19749,19750, 0,19750,19750,19750, 19751, 0,19751,19751,19751,19752, 0,19752,19752,19752, 19753, 0,19753,19753,19753,19754, 0,19754,19754,19754, 19755, 0,19755,19755,19755,19756, 0,19756,19756,19756, 19757, 0,19757,19757,19757,19758, 0,19758,19758,19758, 19759,19759,19759,19759,19759,19760,19760,19760,19760,19760, 19761,19761,19761,19761,19761,19762, 0,19762,19762,19762, 19763, 0,19763,19763,19763,19764, 0,19764,19764,19764, 19765, 0,19765,19765,19765,19766, 0,19766,19766,19766, 19767, 0,19767,19767,19767,19768, 0,19768,19768,19768, 19769, 0,19769,19769,19769,19770, 0,19770,19770,19770, 19771, 0,19771,19771,19771,19772, 0,19772,19772,19772, 19773, 0,19773,19773,19773,19774, 0,19774,19774,19774, 19775, 0,19775,19775,19775,19776, 0,19776,19776,19776, 19777, 0,19777,19777,19777,19778, 0,19778,19778,19778, 19779, 0,19779,19779,19779,19780, 0,19780,19780,19780, 19781, 0,19781,19781,19781,19782, 0,19782,19782,19782, 19783, 0,19783,19783,19783,19784, 0,19784,19784,19784, 19785, 0,19785,19785,19785,19786, 0,19786,19786,19786, 19787,19787,19787,19787,19787,19788,19788,19788,19788,19788, 19789,19789,19789,19789,19789,19790,19790,19790,19790,19790, 19791,19791,19791,19791,19791,19792,19792,19792,19792,19792, 19793,19793,19793,19793,19793,19794,19794,19794,19794,19794, 19795,19795,19795,19795,19795,19796,19796,19796,19796,19796, 19797,19797,19797,19797,19797,19798,19798,19798,19798,19798, 19799,19799,19799,19799,19799,19800,19800,19800,19800,19800, 19801, 0,19801,19801,19801,19802, 0,19802,19802,19802, 19803, 0,19803,19803,19803,19804, 0,19804,19804,19804, 19805, 0,19805,19805,19805,19806, 0,19806,19806,19806, 19807, 0,19807,19807,19807,19808, 0,19808,19808,19808, 19809, 0,19809,19809,19809,19810, 0,19810,19810,19810, 19811, 0,19811,19811,19811,19812, 0,19812,19812,19812, 19813, 0,19813,19813,19813,19814, 0,19814,19814,19814, 19815, 0,19815,19815,19815,19816, 0,19816,19816,19816, 19817, 0,19817,19817,19817,19818, 0,19818,19818,19818, 19819, 0,19819,19819,19819,19820, 0,19820,19820,19820, 19821, 0,19821,19821,19821,19822, 0,19822,19822,19822, 19823, 0,19823,19823,19823,19824, 0,19824,19824,19824, 19825, 0,19825,19825,19825,19826, 0,19826,19826,19826, 19827, 0,19827,19827,19827,19828, 0,19828,19828,19828, 19829, 0,19829,19829,19829,19830, 0,19830,19830,19830, 19831, 0,19831,19831,19831,19832, 0,19832,19832,19832, 19833, 0,19833,19833,19833,19834, 0,19834,19834,19834, 19835, 0,19835,19835,19835,19836, 0,19836,19836,19836, 19837, 0,19837,19837,19837,19838, 0,19838,19838,19838, 19839, 0,19839,19839,19839,19840, 0,19840,19840,19840, 19841, 0,19841,19841,19841,19842, 0,19842,19842,19842, 19843, 0,19843,19843,19843,19844, 0,19844,19844,19844, 19845, 0,19845,19845,19845,19846, 0,19846,19846,19846, 19847, 0,19847,19847,19847,19848, 0,19848,19848,19848, 19849,19849,19849,19849,19849,19850, 0,19850,19850,19850, 19851, 0,19851,19851,19851,19852, 0,19852,19852,19852, 19853, 0,19853,19853,19853,19854,19854,19854,19854,19854, 19855, 0,19855,19855,19855,19856, 0,19856,19856,19856, 19857, 0,19857,19857,19857,19858, 0,19858,19858,19858, 19859, 0,19859,19859,19859,19860, 0,19860,19860,19860, 19861, 0,19861,19861,19861,19862, 0,19862,19862,19862, 19863, 0,19863,19863,19863,19864, 0,19864,19864,19864, 19865, 0,19865,19865,19865,19866, 0,19866,19866,19866, 19867,19867,19867, 0,19867,19868,19868,19868,19868,19868, 19869, 0,19869,19869,19869,19870,19870,19870,19870,19870, 19871, 0,19871,19871,19871,19872, 0,19872,19872,19872, 19873, 0,19873,19873,19873,19874, 0,19874,19874,19874, 19875, 0,19875,19875,19875,19876, 0,19876,19876,19876, 19877, 0,19877,19877,19877,19878, 0,19878,19878,19878, 19879, 0,19879,19879,19879,19880, 0,19880,19880,19880, 19881, 0,19881,19881,19881,19882, 0,19882,19882,19882, 19883, 0,19883,19883,19883,19884, 0,19884,19884,19884, 19885, 0,19885,19885,19885,19886, 0,19886,19886,19886, 19887, 0,19887,19887,19887,19888, 0,19888,19888,19888, 19889, 0,19889,19889,19889,19890, 0,19890,19890,19890, 19891, 0,19891,19891,19891,19892, 0,19892,19892,19892, 19893, 0,19893,19893,19893,19894, 0,19894,19894,19894, 19895,19895,19895,19895,19895,19896, 0,19896,19896,19896, 19897, 0,19897,19897,19897,19898, 0,19898,19898,19898, 19899,19899,19899,19899,19899,19900, 0,19900,19900,19900, 19901, 0,19901,19901,19901,19902, 0,19902,19902,19902, 19903, 0,19903,19903,19903,19904, 0,19904,19904,19904, 19905, 0,19905,19905,19905,19906, 0,19906,19906,19906, 19907, 0,19907,19907,19907,19908, 0,19908,19908,19908, 19909, 0,19909,19909,19909,19910, 0,19910,19910,19910, 19911, 0,19911,19911,19911,19912, 0,19912,19912,19912, 19913, 0,19913,19913,19913,19914, 0,19914,19914,19914, 19915, 0,19915,19915,19915,19916, 0,19916,19916,19916, 19917, 0,19917,19917,19917,19918,19918,19918,19918,19918, 19919,19919,19919,19919,19919,19920,19920,19920,19920,19920, 19921,19921,19921,19921,19921,19922,19922,19922,19922,19922, 19923,19923,19923,19923,19923,19924, 0,19924,19924,19924, 19925,19925,19925,19925,19925,19926,19926,19926,19926,19926, 19927,19927,19927,19927,19927,19928,19928,19928,19928,19928, 19929,19929,19929,19929,19929,19930,19930,19930,19930,19930, 19931,19931,19931,19931,19931,19932,19932,19932,19932,19932, 19933,19933,19933,19933,19933,19934,19934,19934,19934,19934, 19935,19935,19935,19935,19935,19936,19936,19936,19936,19936, 19937,19937,19937,19937,19937,19938,19938,19938,19938,19938, 19939, 0,19939,19939,19939,19940, 0,19940,19940,19940, 19941, 0,19941,19941,19941,19942, 0,19942,19942,19942, 19943, 0,19943,19943,19943,19944, 0,19944,19944,19944, 19945, 0,19945,19945,19945,19946, 0,19946,19946,19946, 19947, 0,19947,19947,19947,19948, 0,19948,19948,19948, 19949, 0,19949,19949,19949,19950, 0,19950,19950,19950, 19951, 0,19951,19951,19951,19952, 0,19952,19952,19952, 19953, 0,19953,19953,19953,19954, 0,19954,19954,19954, 19955, 0,19955,19955,19955,19956, 0,19956,19956,19956, 19957, 0,19957,19957,19957,19958, 0,19958,19958,19958, 19959, 0,19959,19959,19959,19960, 0,19960,19960,19960, 19961, 0,19961,19961,19961,19962, 0,19962,19962,19962, 19963, 0,19963,19963,19963,19964, 0,19964,19964,19964, 19965, 0,19965,19965,19965,19966, 0,19966,19966,19966, 19967, 0,19967,19967,19967,19968, 0,19968,19968,19968, 19969,19969,19969,19969,19969,19970, 0,19970,19970,19970, 19971, 0,19971,19971,19971,19972, 0,19972,19972,19972, 19973, 0,19973,19973,19973,19974,19974,19974,19974,19974, 19975,19975,19975,19975,19975,19976, 0,19976,19976,19976, 19977, 0,19977,19977,19977,19978, 0,19978,19978,19978, 19979, 0,19979,19979,19979,19980, 0,19980,19980,19980, 19981, 0,19981,19981,19981,19982, 0,19982,19982,19982, 19983, 0,19983,19983,19983,19984, 0,19984,19984,19984, 19985, 0,19985,19985,19985,19986, 0,19986,19986,19986, 19987, 0,19987,19987,19987,19988, 0,19988,19988,19988, 19989, 0,19989,19989,19989,19990,19990,19990,19990,19990, 19991,19991,19991, 0,19991,19992, 0,19992,19992,19992, 19993,19993,19993,19993,19993,19994, 0,19994,19994,19994, 19995, 0,19995,19995,19995,19996, 0,19996,19996,19996, 19997, 0,19997,19997,19997,19998, 0,19998,19998,19998, 19999, 0,19999,19999,19999,20000, 0,20000,20000,20000, 20001, 0,20001,20001,20001,20002, 0,20002,20002,20002, 20003, 0,20003,20003,20003,20004, 0,20004,20004,20004, 20005, 0,20005,20005,20005,20006, 0,20006,20006,20006, 20007, 0,20007,20007,20007,20008, 0,20008,20008,20008, 20009, 0,20009,20009,20009,20010, 0,20010,20010,20010, 20011, 0,20011,20011,20011,20012,20012,20012,20012,20012, 20013, 0,20013,20013,20013,20014, 0,20014,20014,20014, 20015, 0,20015,20015,20015,20016, 0,20016,20016,20016, 20017, 0,20017,20017,20017,20018, 0,20018,20018,20018, 20019, 0,20019,20019,20019,20020, 0,20020,20020,20020, 20021, 0,20021,20021,20021,20022,20022,20022,20022,20022, 20023, 0,20023,20023,20023,20024, 0,20024,20024,20024, 20025, 0,20025,20025,20025,20026, 0,20026,20026,20026, 20027, 0,20027,20027,20027,20028, 0,20028,20028,20028, 20029, 0,20029,20029,20029,20030, 0,20030,20030,20030, 20031, 0,20031,20031,20031,20032, 0,20032,20032,20032, 20033, 0,20033,20033,20033,20034, 0,20034,20034,20034, 20035, 0,20035,20035,20035,20036, 0,20036,20036,20036, 20037, 0,20037,20037,20037,20038, 0,20038,20038,20038, 20039, 0,20039,20039,20039,20040, 0,20040,20040,20040, 20041, 0,20041,20041,20041,20042, 0,20042,20042,20042, 20043, 0,20043,20043,20043,20044, 0,20044,20044,20044, 20045,20045,20045,20045,20045,20046,20046,20046,20046,20046, 20047,20047,20047,20047,20047,20048,20048,20048,20048,20048, 20049,20049,20049,20049,20049,20050,20050,20050,20050,20050, 20051,20051,20051,20051,20051,20052,20052,20052,20052,20052, 20053,20053,20053,20053,20053,20054,20054,20054,20054,20054, 20055,20055,20055,20055,20055,20056,20056,20056,20056,20056, 20057,20057,20057,20057,20057,20058,20058,20058,20058,20058, 20059, 0,20059,20059,20059,20060, 0,20060,20060,20060, 20061, 0,20061,20061,20061,20062, 0,20062,20062,20062, 20063, 0,20063,20063,20063,20064, 0,20064,20064,20064, 20065, 0,20065,20065,20065,20066, 0,20066,20066,20066, 20067, 0,20067,20067,20067,20068, 0,20068,20068,20068, 20069, 0,20069,20069,20069,20070, 0,20070,20070,20070, 20071, 0,20071,20071,20071,20072, 0,20072,20072,20072, 20073, 0,20073,20073,20073,20074, 0,20074,20074,20074, 20075, 0,20075,20075,20075,20076, 0,20076,20076,20076, 20077, 0,20077,20077,20077,20078, 0,20078,20078,20078, 20079, 0,20079,20079,20079,20080, 0,20080,20080,20080, 20081, 0,20081,20081,20081,20082, 0,20082,20082,20082, 20083, 0,20083,20083,20083,20084, 0,20084,20084,20084, 20085, 0,20085,20085,20085,20086, 0,20086,20086,20086, 20087, 0,20087,20087,20087,20088, 0,20088,20088,20088, 20089, 0,20089,20089,20089,20090,20090,20090,20090,20090, 20091, 0,20091,20091,20091,20092, 0,20092,20092,20092, 20093, 0,20093,20093,20093,20094, 0,20094,20094,20094, 20095,20095,20095,20095,20095,20096,20096,20096,20096,20096, 20097, 0,20097,20097,20097,20098, 0,20098,20098,20098, 20099, 0,20099,20099,20099,20100, 0,20100,20100,20100, 20101, 0,20101,20101,20101,20102, 0,20102,20102,20102, 20103, 0,20103,20103,20103,20104, 0,20104,20104,20104, 20105, 0,20105,20105,20105,20106, 0,20106,20106,20106, 20107, 0,20107,20107,20107,20108, 0,20108,20108,20108, 20109, 0,20109,20109,20109,20110, 0,20110,20110,20110, 20111,20111,20111, 0,20111,20112,20112,20112,20112,20112, 20113, 0,20113,20113,20113,20114,20114,20114,20114,20114, 20115, 0,20115,20115,20115,20116, 0,20116,20116,20116, 20117, 0,20117,20117,20117,20118, 0,20118,20118,20118, 20119, 0,20119,20119,20119,20120, 0,20120,20120,20120, 20121, 0,20121,20121,20121,20122, 0,20122,20122,20122, 20123, 0,20123,20123,20123,20124, 0,20124,20124,20124, 20125, 0,20125,20125,20125,20126, 0,20126,20126,20126, 20127, 0,20127,20127,20127,20128, 0,20128,20128,20128, 20129, 0,20129,20129,20129,20130, 0,20130,20130,20130, 20131,20131,20131,20131,20131,20132, 0,20132,20132,20132, 20133, 0,20133,20133,20133,20134, 0,20134,20134,20134, 20135, 0,20135,20135,20135,20136, 0,20136,20136,20136, 20137, 0,20137,20137,20137,20138, 0,20138,20138,20138, 20139, 0,20139,20139,20139,20140, 0,20140,20140,20140, 20141, 0,20141,20141,20141,20142, 0,20142,20142,20142, 20143, 0,20143,20143,20143,20144, 0,20144,20144,20144, 20145, 0,20145,20145,20145,20146,20146,20146,20146,20146, 20147, 0,20147,20147,20147,20148,20148,20148,20148,20148, 20149, 0,20149,20149,20149,20150, 0,20150,20150,20150, 20151, 0,20151,20151,20151,20152, 0,20152,20152,20152, 20153, 0,20153,20153,20153,20154, 0,20154,20154,20154, 20155, 0,20155,20155,20155,20156, 0,20156,20156,20156, 20157, 0,20157,20157,20157,20158, 0,20158,20158,20158, 20159, 0,20159,20159,20159,20160, 0,20160,20160,20160, 20161, 0,20161,20161,20161,20162, 0,20162,20162,20162, 20163, 0,20163,20163,20163,20164, 0,20164,20164,20164, 20165, 0,20165,20165,20165,20166, 0,20166,20166,20166, 20167, 0,20167,20167,20167,20168, 0,20168,20168,20168, 20169, 0,20169,20169,20169,20170, 0,20170,20170,20170, 20171, 0,20171,20171,20171,20172, 0,20172,20172,20172, 20173, 0,20173,20173,20173,20174, 0,20174,20174,20174, 20175, 0,20175,20175,20175,20176,20176,20176,20176,20176, 20177,20177,20177,20177,20177,20178,20178,20178,20178,20178, 20179,20179,20179,20179,20179,20180,20180,20180,20180,20180, 20181,20181,20181,20181,20181,20182,20182,20182,20182,20182, 20183,20183,20183,20183,20183,20184,20184,20184,20184,20184, 20185,20185,20185,20185,20185,20186,20186,20186,20186,20186, 20187,20187,20187,20187,20187,20188,20188,20188,20188,20188, 20189,20189,20189,20189,20189,20190,20190,20190,20190,20190, 20191, 0,20191,20191,20191,20192, 0,20192,20192,20192, 20193, 0,20193,20193,20193,20194, 0,20194,20194,20194, 20195, 0,20195,20195,20195,20196, 0,20196,20196,20196, 20197, 0,20197,20197,20197,20198, 0,20198,20198,20198, 20199, 0,20199,20199,20199,20200, 0,20200,20200,20200, 20201, 0,20201,20201,20201,20202, 0,20202,20202,20202, 20203, 0,20203,20203,20203,20204, 0,20204,20204,20204, 20205, 0,20205,20205,20205,20206, 0,20206,20206,20206, 20207, 0,20207,20207,20207,20208, 0,20208,20208,20208, 20209, 0,20209,20209,20209,20210, 0,20210,20210,20210, 20211, 0,20211,20211,20211,20212, 0,20212,20212,20212, 20213, 0,20213,20213,20213,20214,20214,20214,20214,20214, 20215, 0,20215,20215,20215,20216, 0,20216,20216,20216, 20217, 0,20217,20217,20217,20218, 0,20218,20218,20218, 20219, 0,20219,20219,20219,20220,20220,20220,20220,20220, 20221,20221,20221,20221,20221,20222, 0,20222,20222,20222, 20223, 0,20223,20223,20223,20224, 0,20224,20224,20224, 20225, 0,20225,20225,20225,20226, 0,20226,20226,20226, 20227, 0,20227,20227,20227,20228, 0,20228,20228,20228, 20229, 0,20229,20229,20229,20230, 0,20230,20230,20230, 20231, 0,20231,20231,20231,20232, 0,20232,20232,20232, 20233, 0,20233,20233,20233,20234, 0,20234,20234,20234, 20235, 0,20235,20235,20235,20236,20236,20236, 0,20236, 20237,20237,20237,20237,20237,20238, 0,20238,20238,20238, 20239,20239,20239,20239,20239,20240, 0,20240,20240,20240, 20241, 0,20241,20241,20241,20242, 0,20242,20242,20242, 20243, 0,20243,20243,20243,20244, 0,20244,20244,20244, 20245, 0,20245,20245,20245,20246, 0,20246,20246,20246, 20247, 0,20247,20247,20247,20248, 0,20248,20248,20248, 20249, 0,20249,20249,20249,20250, 0,20250,20250,20250, 20251, 0,20251,20251,20251,20252, 0,20252,20252,20252, 20253, 0,20253,20253,20253,20254, 0,20254,20254,20254, 20255, 0,20255,20255,20255,20256, 0,20256,20256,20256, 20257, 0,20257,20257,20257,20258, 0,20258,20258,20258, 20259, 0,20259,20259,20259,20260, 0,20260,20260,20260, 20261, 0,20261,20261,20261,20262, 0,20262,20262,20262, 20263,20263,20263,20263,20263,20264, 0,20264,20264,20264, 20265, 0,20265,20265,20265,20266, 0,20266,20266,20266, 20267, 0,20267,20267,20267,20268, 0,20268,20268,20268, 20269, 0,20269,20269,20269,20270, 0,20270,20270,20270, 20271, 0,20271,20271,20271,20272, 0,20272,20272,20272, 20273, 0,20273,20273,20273,20274, 0,20274,20274,20274, 20275, 0,20275,20275,20275,20276, 0,20276,20276,20276, 20277, 0,20277,20277,20277,20278, 0,20278,20278,20278, 20279, 0,20279,20279,20279,20280, 0,20280,20280,20280, 20281, 0,20281,20281,20281,20282, 0,20282,20282,20282, 20283, 0,20283,20283,20283,20284, 0,20284,20284,20284, 20285,20285,20285,20285,20285,20286, 0,20286,20286,20286, 20287,20287,20287,20287,20287,20288,20288,20288,20288,20288, 20289,20289,20289,20289,20289,20290, 0,20290,20290,20290, 20291, 0,20291,20291,20291,20292, 0,20292,20292,20292, 20293, 0,20293,20293,20293,20294, 0,20294,20294,20294, 20295, 0,20295,20295,20295,20296, 0,20296,20296,20296, 20297, 0,20297,20297,20297,20298, 0,20298,20298,20298, 20299, 0,20299,20299,20299,20300, 0,20300,20300,20300, 20301, 0,20301,20301,20301,20302, 0,20302,20302,20302, 20303, 0,20303,20303,20303,20304, 0,20304,20304,20304, 20305, 0,20305,20305,20305,20306, 0,20306,20306,20306, 20307, 0,20307,20307,20307,20308, 0,20308,20308,20308, 20309,20309,20309,20309,20309,20310,20310,20310,20310,20310, 20311,20311,20311,20311,20311,20312,20312,20312,20312,20312, 20313,20313,20313,20313,20313,20314,20314,20314,20314,20314, 20315, 0,20315,20315,20315,20316,20316,20316,20316,20316, 20317,20317,20317,20317,20317,20318,20318,20318,20318,20318, 20319,20319,20319,20319,20319,20320,20320,20320,20320,20320, 20321,20321,20321,20321,20321,20322,20322,20322,20322,20322, 20323,20323,20323,20323,20323,20324,20324,20324,20324,20324, 20325,20325,20325,20325,20325,20326,20326,20326,20326,20326, 20327,20327,20327,20327,20327,20328,20328,20328,20328,20328, 20329,20329,20329,20329,20329,20330, 0,20330,20330,20330, 20331, 0,20331,20331,20331,20332, 0,20332,20332,20332, 20333, 0,20333,20333,20333,20334, 0,20334,20334,20334, 20335, 0,20335,20335,20335,20336, 0,20336,20336,20336, 20337, 0,20337,20337,20337,20338, 0,20338,20338,20338, 20339, 0,20339,20339,20339,20340, 0,20340,20340,20340, 20341, 0,20341,20341,20341,20342, 0,20342,20342,20342, 20343, 0,20343,20343,20343,20344, 0,20344,20344,20344, 20345, 0,20345,20345,20345,20346, 0,20346,20346,20346, 20347, 0,20347,20347,20347,20348, 0,20348,20348,20348, 20349, 0,20349,20349,20349,20350, 0,20350,20350,20350, 20351, 0,20351,20351,20351,20352,20352,20352,20352,20352, 20353, 0,20353,20353,20353,20354, 0,20354,20354,20354, 20355, 0,20355,20355,20355,20356, 0,20356,20356,20356, 20357, 0,20357,20357,20357,20358, 0,20358,20358,20358, 20359,20359,20359,20359,20359,20360,20360,20360,20360,20360, 20361, 0,20361,20361,20361,20362, 0,20362,20362,20362, 20363, 0,20363,20363,20363,20364, 0,20364,20364,20364, 20365, 0,20365,20365,20365,20366, 0,20366,20366,20366, 20367, 0,20367,20367,20367,20368, 0,20368,20368,20368, 20369, 0,20369,20369,20369,20370, 0,20370,20370,20370, 20371, 0,20371,20371,20371,20372, 0,20372,20372,20372, 20373, 0,20373,20373,20373,20374, 0,20374,20374,20374, 20375,20375,20375, 0,20375,20376,20376,20376,20376,20376, 20377, 0,20377,20377,20377,20378,20378,20378,20378,20378, 20379, 0,20379,20379,20379,20380, 0,20380,20380,20380, 20381, 0,20381,20381,20381,20382, 0,20382,20382,20382, 20383, 0,20383,20383,20383,20384, 0,20384,20384,20384, 20385, 0,20385,20385,20385,20386, 0,20386,20386,20386, 20387, 0,20387,20387,20387,20388, 0,20388,20388,20388, 20389, 0,20389,20389,20389,20390, 0,20390,20390,20390, 20391, 0,20391,20391,20391,20392, 0,20392,20392,20392, 20393, 0,20393,20393,20393,20394,20394,20394,20394,20394, 20395, 0,20395,20395,20395,20396, 0,20396,20396,20396, 20397, 0,20397,20397,20397,20398, 0,20398,20398,20398, 20399, 0,20399,20399,20399,20400, 0,20400,20400,20400, 20401, 0,20401,20401,20401,20402, 0,20402,20402,20402, 20403, 0,20403,20403,20403,20404, 0,20404,20404,20404, 20405, 0,20405,20405,20405,20406, 0,20406,20406,20406, 20407, 0,20407,20407,20407,20408, 0,20408,20408,20408, 20409, 0,20409,20409,20409,20410, 0,20410,20410,20410, 20411, 0,20411,20411,20411,20412, 0,20412,20412,20412, 20413, 0,20413,20413,20413,20414, 0,20414,20414,20414, 20415, 0,20415,20415,20415,20416, 0,20416,20416,20416, 20417, 0,20417,20417,20417,20418, 0,20418,20418,20418, 20419, 0,20419,20419,20419,20420, 0,20420,20420,20420, 20421, 0,20421,20421,20421,20422, 0,20422,20422,20422, 20423, 0,20423,20423,20423,20424, 0,20424,20424,20424, 20425, 0,20425,20425,20425,20426, 0,20426,20426,20426, 20427, 0,20427,20427,20427,20428,20428,20428,20428,20428, 20429, 0,20429,20429,20429,20430,20430,20430,20430,20430, 20431,20431, 0,20431,20431,20432,20432,20432,20432,20432, 20433, 0,20433,20433,20433,20434, 0,20434,20434,20434, 20435, 0,20435,20435,20435,20436, 0,20436,20436,20436, 20437, 0,20437,20437,20437,20438, 0,20438,20438,20438, 20439, 0,20439,20439,20439,20440, 0,20440,20440,20440, 20441, 0,20441,20441,20441,20442, 0,20442,20442,20442, 20443, 0,20443,20443,20443,20444, 0,20444,20444,20444, 20445, 0,20445,20445,20445,20446, 0,20446,20446,20446, 20447, 0,20447,20447,20447,20448, 0,20448,20448,20448, 20449, 0,20449,20449,20449,20450, 0,20450,20450,20450, 20451, 0,20451,20451,20451,20452, 0,20452,20452,20452, 20453, 0,20453,20453,20453,20454, 0,20454,20454,20454, 20455,20455,20455,20455,20455,20456,20456,20456,20456,20456, 20457,20457,20457,20457,20457,20458,20458,20458,20458,20458, 20459,20459,20459,20459,20459,20460,20460,20460,20460,20460, 20461,20461,20461,20461,20461,20462,20462,20462,20462,20462, 20463,20463,20463,20463,20463,20464,20464,20464,20464,20464, 20465,20465,20465,20465,20465,20466,20466,20466,20466,20466, 20467,20467,20467,20467,20467,20468, 0,20468,20468,20468, 20469, 0,20469,20469,20469,20470, 0,20470,20470,20470, 20471, 0,20471,20471,20471,20472, 0,20472,20472,20472, 20473, 0,20473,20473,20473,20474, 0,20474,20474,20474, 20475, 0,20475,20475,20475,20476, 0,20476,20476,20476, 20477, 0,20477,20477,20477,20478, 0,20478,20478,20478, 20479, 0,20479,20479,20479,20480, 0,20480,20480,20480, 20481, 0,20481,20481,20481,20482, 0,20482,20482,20482, 20483, 0,20483,20483,20483,20484, 0,20484,20484,20484, 20485, 0,20485,20485,20485,20486, 0,20486,20486,20486, 20487, 0,20487,20487,20487,20488, 0,20488,20488,20488, 20489,20489,20489,20489,20489,20490, 0,20490,20490,20490, 20491, 0,20491,20491,20491,20492, 0,20492,20492,20492, 20493, 0,20493,20493,20493,20494, 0,20494,20494,20494, 20495, 0,20495,20495,20495,20496,20496,20496,20496,20496, 20497,20497,20497,20497,20497,20498, 0,20498,20498,20498, 20499, 0,20499,20499,20499,20500, 0,20500,20500,20500, 20501, 0,20501,20501,20501,20502, 0,20502,20502,20502, 20503, 0,20503,20503,20503,20504, 0,20504,20504,20504, 20505, 0,20505,20505,20505,20506, 0,20506,20506,20506, 20507, 0,20507,20507,20507,20508, 0,20508,20508,20508, 20509, 0,20509,20509,20509,20510, 0,20510,20510,20510, 20511, 0,20511,20511,20511,20512,20512,20512, 0,20512, 20513,20513,20513,20513,20513,20514, 0,20514,20514,20514, 20515,20515,20515,20515,20515,20516, 0,20516,20516,20516, 20517, 0,20517,20517,20517,20518, 0,20518,20518,20518, 20519, 0,20519,20519,20519,20520, 0,20520,20520,20520, 20521, 0,20521,20521,20521,20522, 0,20522,20522,20522, 20523, 0,20523,20523,20523,20524, 0,20524,20524,20524, 20525, 0,20525,20525,20525,20526, 0,20526,20526,20526, 20527, 0,20527,20527,20527,20528, 0,20528,20528,20528, 20529,20529,20529,20529,20529,20530, 0,20530,20530,20530, 20531, 0,20531,20531,20531,20532, 0,20532,20532,20532, 20533, 0,20533,20533,20533,20534, 0,20534,20534,20534, 20535, 0,20535,20535,20535,20536, 0,20536,20536,20536, 20537, 0,20537,20537,20537,20538, 0,20538,20538,20538, 20539, 0,20539,20539,20539,20540, 0,20540,20540,20540, 20541, 0,20541,20541,20541,20542, 0,20542,20542,20542, 20543, 0,20543,20543,20543,20544, 0,20544,20544,20544, 20545, 0,20545,20545,20545,20546, 0,20546,20546,20546, 20547, 0,20547,20547,20547,20548, 0,20548,20548,20548, 20549, 0,20549,20549,20549,20550, 0,20550,20550,20550, 20551, 0,20551,20551,20551,20552, 0,20552,20552,20552, 20553, 0,20553,20553,20553,20554, 0,20554,20554,20554, 20555, 0,20555,20555,20555,20556, 0,20556,20556,20556, 20557, 0,20557,20557,20557,20558, 0,20558,20558,20558, 20559, 0,20559,20559,20559,20560, 0,20560,20560,20560, 20561, 0,20561,20561,20561,20562, 0,20562,20562,20562, 20563, 0,20563,20563,20563,20564, 0,20564,20564,20564, 20565, 0,20565,20565,20565,20566, 0,20566,20566,20566, 20567, 0,20567,20567,20567,20568, 0,20568,20568,20568, 20569, 0,20569,20569,20569,20570, 0,20570,20570,20570, 20571, 0,20571,20571,20571,20572, 0,20572,20572,20572, 20573, 0,20573,20573,20573,20574, 0,20574,20574,20574, 20575, 0,20575,20575,20575,20576, 0,20576,20576,20576, 20577, 0,20577,20577,20577,20578, 0,20578,20578,20578, 20579, 0,20579,20579,20579,20580, 0,20580,20580,20580, 20581,20581,20581,20581,20581,20582, 0,20582,20582,20582, 20583,20583,20583,20583,20583,20584,20584,20584,20584,20584, 20585, 0,20585,20585,20585,20586, 0,20586,20586,20586, 20587, 0,20587,20587,20587,20588, 0,20588,20588,20588, 20589, 0,20589,20589,20589,20590, 0,20590,20590,20590, 20591, 0,20591,20591,20591,20592, 0,20592,20592,20592, 20593, 0,20593,20593,20593,20594, 0,20594,20594,20594, 20595, 0,20595,20595,20595,20596, 0,20596,20596,20596, 20597, 0,20597,20597,20597,20598, 0,20598,20598,20598, 20599, 0,20599,20599,20599,20600, 0,20600,20600,20600, 20601, 0,20601,20601,20601,20602, 0,20602,20602,20602, 20603, 0,20603,20603,20603,20604, 0,20604,20604,20604, 20605, 0,20605,20605,20605,20606, 0,20606,20606,20606, 20607, 0,20607,20607,20607,20608, 0,20608,20608,20608, 20609, 0,20609,20609,20609,20610, 0,20610,20610,20610, 20611, 0,20611,20611,20611,20612, 0,20612,20612,20612, 20613,20613,20613,20613,20613,20614,20614,20614,20614,20614, 20615,20615,20615,20615,20615,20616,20616,20616,20616,20616, 20617,20617,20617,20617,20617,20618,20618,20618,20618,20618, 20619,20619,20619,20619,20619,20620,20620,20620,20620,20620, 20621,20621,20621,20621,20621,20622,20622,20622,20622,20622, 20623,20623,20623,20623,20623,20624,20624,20624,20624,20624, 20625, 0,20625,20625,20625,20626, 0,20626,20626,20626, 20627, 0,20627,20627,20627,20628, 0,20628,20628,20628, 20629, 0,20629,20629,20629,20630, 0,20630,20630,20630, 20631, 0,20631,20631,20631,20632, 0,20632,20632,20632, 20633, 0,20633,20633,20633,20634, 0,20634,20634,20634, 20635, 0,20635,20635,20635,20636,20636,20636,20636,20636, 20637, 0,20637,20637,20637,20638, 0,20638,20638,20638, 20639, 0,20639,20639,20639,20640, 0,20640,20640,20640, 20641, 0,20641,20641,20641,20642, 0,20642,20642,20642, 20643,20643,20643,20643,20643,20644,20644,20644,20644,20644, 20645, 0,20645,20645,20645,20646, 0,20646,20646,20646, 20647, 0,20647,20647,20647,20648, 0,20648,20648,20648, 20649, 0,20649,20649,20649,20650, 0,20650,20650,20650, 20651, 0,20651,20651,20651,20652, 0,20652,20652,20652, 20653, 0,20653,20653,20653,20654, 0,20654,20654,20654, 20655, 0,20655,20655,20655,20656, 0,20656,20656,20656, 20657, 0,20657,20657,20657,20658, 0,20658,20658,20658, 20659, 0,20659,20659,20659,20660,20660,20660, 0,20660, 20661,20661,20661,20661,20661,20662,20662,20662,20662,20662, 20663, 0,20663,20663,20663,20664,20664,20664,20664,20664, 20665, 0,20665,20665,20665,20666, 0,20666,20666,20666, 20667, 0,20667,20667,20667,20668, 0,20668,20668,20668, 20669, 0,20669,20669,20669,20670, 0,20670,20670,20670, 20671, 0,20671,20671,20671,20672, 0,20672,20672,20672, 20673, 0,20673,20673,20673,20674, 0,20674,20674,20674, 20675, 0,20675,20675,20675,20676, 0,20676,20676,20676, 20677, 0,20677,20677,20677,20678, 0,20678,20678,20678, 20679, 0,20679,20679,20679,20680, 0,20680,20680,20680, 20681,20681,20681,20681,20681,20682, 0,20682,20682,20682, 20683, 0,20683,20683,20683,20684, 0,20684,20684,20684, 20685, 0,20685,20685,20685,20686, 0,20686,20686,20686, 20687, 0,20687,20687,20687,20688, 0,20688,20688,20688, 20689, 0,20689,20689,20689,20690, 0,20690,20690,20690, 20691, 0,20691,20691,20691,20692, 0,20692,20692,20692, 20693, 0,20693,20693,20693,20694, 0,20694,20694,20694, 20695, 0,20695,20695,20695,20696, 0,20696,20696,20696, 20697, 0,20697,20697,20697,20698, 0,20698,20698,20698, 20699, 0,20699,20699,20699,20700, 0,20700,20700,20700, 20701, 0,20701,20701,20701,20702, 0,20702,20702,20702, 20703, 0,20703,20703,20703,20704, 0,20704,20704,20704, 20705, 0,20705,20705,20705,20706, 0,20706,20706,20706, 20707, 0,20707,20707,20707,20708, 0,20708,20708,20708, 20709, 0,20709,20709,20709,20710, 0,20710,20710,20710, 20711, 0,20711,20711,20711,20712, 0,20712,20712,20712, 20713, 0,20713,20713,20713,20714, 0,20714,20714,20714, 20715, 0,20715,20715,20715,20716, 0,20716,20716,20716, 20717, 0,20717,20717,20717,20718, 0,20718,20718,20718, 20719, 0,20719,20719,20719,20720, 0,20720,20720,20720, 20721, 0,20721,20721,20721,20722, 0,20722,20722,20722, 20723, 0,20723,20723,20723,20724, 0,20724,20724,20724, 20725, 0,20725,20725,20725,20726, 0,20726,20726,20726, 20727, 0,20727,20727,20727,20728, 0,20728,20728,20728, 20729, 0,20729,20729,20729,20730, 0,20730,20730,20730, 20731, 0,20731,20731,20731,20732, 0,20732,20732,20732, 20733, 0,20733,20733,20733,20734, 0,20734,20734,20734, 20735, 0,20735,20735,20735,20736, 0,20736,20736,20736, 20737, 0,20737,20737,20737,20738, 0,20738,20738,20738, 20739, 0,20739,20739,20739,20740, 0,20740,20740,20740, 20741, 0,20741,20741,20741,20742, 0,20742,20742,20742, 20743, 0,20743,20743,20743,20744,20744,20744,20744,20744, 20745, 0,20745,20745,20745,20746,20746,20746,20746,20746, 20747,20747,20747,20747,20747,20748, 0,20748,20748,20748, 20749, 0,20749,20749,20749,20750, 0,20750,20750,20750, 20751, 0,20751,20751,20751,20752, 0,20752,20752,20752, 20753, 0,20753,20753,20753,20754, 0,20754,20754,20754, 20755, 0,20755,20755,20755,20756, 0,20756,20756,20756, 20757, 0,20757,20757,20757,20758, 0,20758,20758,20758, 20759, 0,20759,20759,20759,20760, 0,20760,20760,20760, 20761, 0,20761,20761,20761,20762, 0,20762,20762,20762, 20763, 0,20763,20763,20763,20764, 0,20764,20764,20764, 20765, 0,20765,20765,20765,20766, 0,20766,20766,20766, 20767, 0,20767,20767,20767,20768, 0,20768,20768,20768, 20769, 0,20769,20769,20769,20770, 0,20770,20770,20770, 20771,20771,20771,20771,20771,20772,20772,20772,20772,20772, 20773,20773,20773,20773,20773,20774,20774,20774,20774,20774, 20775,20775,20775,20775,20775,20776,20776,20776,20776,20776, 20777,20777,20777,20777,20777,20778,20778,20778,20778,20778, 20779,20779,20779,20779,20779,20780,20780,20780,20780,20780, 20781,20781,20781,20781,20781,20782,20782,20782,20782,20782, 20783,20783,20783,20783,20783,20784,20784,20784,20784,20784, 20785, 0,20785,20785,20785,20786, 0,20786,20786,20786, 20787, 0,20787,20787,20787,20788, 0,20788,20788,20788, 20789, 0,20789,20789,20789,20790, 0,20790,20790,20790, 20791, 0,20791,20791,20791,20792, 0,20792,20792,20792, 20793, 0,20793,20793,20793,20794, 0,20794,20794,20794, 20795,20795,20795,20795,20795,20796, 0,20796,20796,20796, 20797, 0,20797,20797,20797,20798, 0,20798,20798,20798, 20799, 0,20799,20799,20799,20800, 0,20800,20800,20800, 20801,20801,20801,20801,20801,20802,20802,20802,20802,20802, 20803,20803,20803,20803,20803,20804, 0,20804,20804,20804, 20805, 0,20805,20805,20805,20806, 0,20806,20806,20806, 20807, 0,20807,20807,20807,20808, 0,20808,20808,20808, 20809, 0,20809,20809,20809,20810, 0,20810,20810,20810, 20811, 0,20811,20811,20811,20812, 0,20812,20812,20812, 20813, 0,20813,20813,20813,20814, 0,20814,20814,20814, 20815, 0,20815,20815,20815,20816, 0,20816,20816,20816, 20817, 0,20817,20817,20817,20818,20818,20818,20818,20818, 20819,20819,20819,20819,20819,20820, 0,20820,20820,20820, 20821,20821,20821,20821,20821,20822, 0,20822,20822,20822, 20823,20823,20823,20823,20823,20824,20824,20824,20824,20824, 20825, 0,20825,20825,20825,20826, 0,20826,20826,20826, 20827, 0,20827,20827,20827,20828, 0,20828,20828,20828, 20829, 0,20829,20829,20829,20830, 0,20830,20830,20830, 20831, 0,20831,20831,20831,20832, 0,20832,20832,20832, 20833, 0,20833,20833,20833,20834, 0,20834,20834,20834, 20835, 0,20835,20835,20835,20836, 0,20836,20836,20836, 20837, 0,20837,20837,20837,20838, 0,20838,20838,20838, 20839, 0,20839,20839,20839,20840, 0,20840,20840,20840, 20841, 0,20841,20841,20841,20842,20842,20842,20842,20842, 20843, 0,20843,20843,20843,20844, 0,20844,20844,20844, 20845, 0,20845,20845,20845,20846, 0,20846,20846,20846, 20847, 0,20847,20847,20847,20848, 0,20848,20848,20848, 20849, 0,20849,20849,20849,20850, 0,20850,20850,20850, 20851, 0,20851,20851,20851,20852, 0,20852,20852,20852, 20853, 0,20853,20853,20853,20854, 0,20854,20854,20854, 20855, 0,20855,20855,20855,20856, 0,20856,20856,20856, 20857, 0,20857,20857,20857,20858, 0,20858,20858,20858, 20859, 0,20859,20859,20859,20860, 0,20860,20860,20860, 20861, 0,20861,20861,20861,20862, 0,20862,20862,20862, 20863, 0,20863,20863,20863,20864, 0,20864,20864,20864, 20865, 0,20865,20865,20865,20866, 0,20866,20866,20866, 20867, 0,20867,20867,20867,20868, 0,20868,20868,20868, 20869, 0,20869,20869,20869,20870, 0,20870,20870,20870, 20871, 0,20871,20871,20871,20872, 0,20872,20872,20872, 20873, 0,20873,20873,20873,20874, 0,20874,20874,20874, 20875, 0,20875,20875,20875,20876, 0,20876,20876,20876, 20877, 0,20877,20877,20877,20878, 0,20878,20878,20878, 20879, 0,20879,20879,20879,20880, 0,20880,20880,20880, 20881, 0,20881,20881,20881,20882, 0,20882,20882,20882, 20883, 0,20883,20883,20883,20884, 0,20884,20884,20884, 20885, 0,20885,20885,20885,20886, 0,20886,20886,20886, 20887, 0,20887,20887,20887,20888, 0,20888,20888,20888, 20889, 0,20889,20889,20889,20890, 0,20890,20890,20890, 20891, 0,20891,20891,20891,20892, 0,20892,20892,20892, 20893, 0,20893,20893,20893,20894, 0,20894,20894,20894, 20895, 0,20895,20895,20895,20896, 0,20896,20896,20896, 20897, 0,20897,20897,20897,20898, 0,20898,20898,20898, 20899, 0,20899,20899,20899,20900, 0,20900,20900,20900, 20901, 0,20901,20901,20901,20902, 0,20902,20902,20902, 20903, 0,20903,20903,20903,20904, 0,20904,20904,20904, 20905, 0,20905,20905,20905,20906, 0,20906,20906,20906, 20907,20907,20907,20907,20907,20908, 0,20908,20908,20908, 20909,20909,20909,20909,20909,20910, 0,20910,20910,20910, 20911, 0,20911,20911,20911,20912, 0,20912,20912,20912, 20913, 0,20913,20913,20913,20914, 0,20914,20914,20914, 20915, 0,20915,20915,20915,20916, 0,20916,20916,20916, 20917, 0,20917,20917,20917,20918, 0,20918,20918,20918, 20919, 0,20919,20919,20919,20920, 0,20920,20920,20920, 20921, 0,20921,20921,20921,20922, 0,20922,20922,20922, 20923, 0,20923,20923,20923,20924, 0,20924,20924,20924, 20925, 0,20925,20925,20925,20926, 0,20926,20926,20926, 20927, 0,20927,20927,20927,20928, 0,20928,20928,20928, 20929, 0,20929,20929,20929,20930, 0,20930,20930,20930, 20931, 0,20931,20931,20931,20932, 0,20932,20932,20932, 20933, 0,20933,20933,20933,20934,20934,20934,20934,20934, 20935, 0,20935,20935,20935,20936,20936,20936,20936,20936, 20937,20937,20937,20937,20937,20938,20938,20938,20938,20938, 20939,20939,20939,20939,20939,20940,20940,20940,20940,20940, 20941, 0,20941,20941,20941,20942, 0,20942,20942,20942, 20943, 0,20943,20943,20943,20944, 0,20944,20944,20944, 20945, 0,20945,20945,20945,20946, 0,20946,20946,20946, 20947, 0,20947,20947,20947,20948, 0,20948,20948,20948, 20949, 0,20949,20949,20949,20950,20950,20950,20950,20950, 20951, 0,20951,20951,20951,20952, 0,20952,20952,20952, 20953, 0,20953,20953,20953,20954, 0,20954,20954,20954, 20955, 0,20955,20955,20955,20956,20956,20956,20956,20956, 20957,20957,20957,20957,20957,20958,20958,20958,20958,20958, 20959, 0,20959,20959,20959,20960, 0,20960,20960,20960, 20961, 0,20961,20961,20961,20962, 0,20962,20962,20962, 20963, 0,20963,20963,20963,20964, 0,20964,20964,20964, 20965, 0,20965,20965,20965,20966, 0,20966,20966,20966, 20967, 0,20967,20967,20967,20968, 0,20968,20968,20968, 20969, 0,20969,20969,20969,20970, 0,20970,20970,20970, 20971,20971,20971,20971,20971,20972, 0,20972,20972,20972, 20973,20973,20973,20973,20973,20974, 0,20974,20974,20974, 20975,20975,20975,20975,20975,20976, 0,20976,20976,20976, 20977,20977,20977,20977,20977,20978, 0,20978,20978,20978, 20979,20979,20979,20979,20979,20980, 0,20980,20980,20980, 20981, 0,20981,20981,20981,20982, 0,20982,20982,20982, 20983, 0,20983,20983,20983,20984, 0,20984,20984,20984, 20985, 0,20985,20985,20985,20986, 0,20986,20986,20986, 20987, 0,20987,20987,20987,20988, 0,20988,20988,20988, 20989, 0,20989,20989,20989,20990, 0,20990,20990,20990, 20991, 0,20991,20991,20991,20992, 0,20992,20992,20992, 20993, 0,20993,20993,20993,20994, 0,20994,20994,20994, 20995, 0,20995,20995,20995,20996, 0,20996,20996,20996, 20997,20997,20997,20997,20997,20998, 0,20998,20998,20998, 20999, 0,20999,20999,20999,21000, 0,21000,21000,21000, 21001, 0,21001,21001,21001,21002, 0,21002,21002,21002, 21003, 0,21003,21003,21003,21004, 0,21004,21004,21004, 21005, 0,21005,21005,21005,21006, 0,21006,21006,21006, 21007, 0,21007,21007,21007,21008, 0,21008,21008,21008, 21009, 0,21009,21009,21009,21010, 0,21010,21010,21010, 21011, 0,21011,21011,21011,21012, 0,21012,21012,21012, 21013, 0,21013,21013,21013,21014, 0,21014,21014,21014, 21015, 0,21015,21015,21015,21016, 0,21016,21016,21016, 21017, 0,21017,21017,21017,21018, 0,21018,21018,21018, 21019, 0,21019,21019,21019,21020, 0,21020,21020,21020, 21021, 0,21021,21021,21021,21022, 0,21022,21022,21022, 21023, 0,21023,21023,21023,21024, 0,21024,21024,21024, 21025, 0,21025,21025,21025,21026, 0,21026,21026,21026, 21027, 0,21027,21027,21027,21028, 0,21028,21028,21028, 21029, 0,21029,21029,21029,21030, 0,21030,21030,21030, 21031, 0,21031,21031,21031,21032, 0,21032,21032,21032, 21033, 0,21033,21033,21033,21034, 0,21034,21034,21034, 21035, 0,21035,21035,21035,21036, 0,21036,21036,21036, 21037, 0,21037,21037,21037,21038, 0,21038,21038,21038, 21039, 0,21039,21039,21039,21040, 0,21040,21040,21040, 21041, 0,21041,21041,21041,21042, 0,21042,21042,21042, 21043, 0,21043,21043,21043,21044, 0,21044,21044,21044, 21045, 0,21045,21045,21045,21046, 0,21046,21046,21046, 21047, 0,21047,21047,21047,21048, 0,21048,21048,21048, 21049, 0,21049,21049,21049,21050, 0,21050,21050,21050, 21051, 0,21051,21051,21051,21052, 0,21052,21052,21052, 21053, 0,21053,21053,21053,21054, 0,21054,21054,21054, 21055, 0,21055,21055,21055,21056, 0,21056,21056,21056, 21057, 0,21057,21057,21057,21058, 0,21058,21058,21058, 21059,21059,21059,21059,21059,21060, 0,21060,21060,21060, 21061, 0,21061,21061,21061,21062, 0,21062,21062,21062, 21063, 0,21063,21063,21063,21064, 0,21064,21064,21064, 21065, 0,21065,21065,21065,21066, 0,21066,21066,21066, 21067, 0,21067,21067,21067,21068, 0,21068,21068,21068, 21069, 0,21069,21069,21069,21070, 0,21070,21070,21070, 21071, 0,21071,21071,21071,21072, 0,21072,21072,21072, 21073, 0,21073,21073,21073,21074, 0,21074,21074,21074, 21075, 0,21075,21075,21075,21076, 0,21076,21076,21076, 21077, 0,21077,21077,21077,21078, 0,21078,21078,21078, 21079, 0,21079,21079,21079,21080,21080,21080,21080,21080, 21081,21081,21081,21081,21082, 0,21082,21082,21082,21083, 21083,21083,21083,21083,21084,21084,21084,21084,21084,21085, 21085,21085,21085,21085,21086, 0,21086,21086,21086,21087, 0,21087,21087,21087,21088, 0,21088,21088,21088,21089, 0,21089,21089,21089,21090, 0,21090,21090,21090,21091, 0,21091,21091,21091,21092, 0,21092,21092,21092,21093, 0,21093,21093,21093,21094, 0,21094,21094,21094,21095, 0,21095,21095,21095,21096,21096,21096,21096,21096,21097, 0,21097,21097,21097,21098, 0,21098,21098,21098,21099, 0,21099,21099,21099,21100, 0,21100,21100,21100,21101, 0,21101,21101,21101,21102, 0,21102,21102,21102,21103, 21103,21103,21103,21103,21104,21104,21104,21104,21104,21105, 21105,21105,21105,21105,21106, 0,21106,21106,21106,21107, 0,21107,21107,21107,21108, 0,21108,21108,21108,21109, 0,21109,21109,21109,21110, 0,21110,21110,21110,21111, 0,21111,21111,21111,21112, 0,21112,21112,21112,21113, 0,21113,21113,21113,21114, 0,21114,21114,21114,21115, 0,21115,21115,21115,21116, 0,21116,21116,21116,21117, 0,21117,21117,21117,21118,21118,21118,21118,21118,21119, 21119,21119,21119,21119,21120, 0,21120,21120,21120,21121, 21121,21121,21121,21121,21122, 0,21122,21122,21122,21123, 21123,21123,21123,21123,21124, 0,21124,21124,21124,21125, 21125,21125,21125,21125,21126, 0,21126,21126,21126,21127, 0,21127,21127,21127,21128, 0,21128,21128,21128,21129, 0,21129,21129,21129,21130, 0,21130,21130,21130,21131, 0,21131,21131,21131,21132, 0,21132,21132,21132,21133, 0,21133,21133,21133,21134, 0,21134,21134,21134,21135, 0,21135,21135,21135,21136, 0,21136,21136,21136,21137, 0,21137,21137,21137,21138, 0,21138,21138,21138,21139, 0,21139,21139,21139,21140, 0,21140,21140,21140,21141, 0,21141,21141,21141,21142, 0,21142,21142,21142,21143, 0,21143,21143,21143,21144, 0,21144,21144,21144,21145, 0,21145,21145,21145,21146, 0,21146,21146,21146,21147, 0,21147,21147,21147,21148, 0,21148,21148,21148,21149, 0,21149,21149,21149,21150, 0,21150,21150,21150,21151, 0,21151,21151,21151,21152, 0,21152,21152,21152,21153, 0,21153,21153,21153,21154, 0,21154,21154,21154,21155, 0,21155,21155,21155,21156, 0,21156,21156,21156,21157, 0,21157,21157,21157,21158, 0,21158,21158,21158,21159, 0,21159,21159,21159,21160, 0,21160,21160,21160,21161, 0,21161,21161,21161,21162, 0,21162,21162,21162,21163, 0,21163,21163,21163,21164, 0,21164,21164,21164,21165, 0,21165,21165,21165,21166, 0,21166,21166,21166,21167, 0,21167,21167,21167,21168, 0,21168,21168,21168,21169, 0,21169,21169,21169,21170, 0,21170,21170,21170,21171, 0,21171,21171,21171,21172, 0,21172,21172,21172,21173, 0,21173,21173,21173,21174, 0,21174,21174,21174,21175, 0,21175,21175,21175,21176, 0,21176,21176,21176,21177, 0,21177,21177,21177,21178, 0,21178,21178,21178,21179, 0,21179,21179,21179,21180, 0,21180,21180,21180,21181, 0,21181,21181,21181,21182, 0,21182,21182,21182,21183, 0,21183,21183,21183,21184, 0,21184,21184,21184,21185, 0,21185,21185,21185,21186, 0,21186,21186,21186,21187, 0,21187,21187,21187,21188, 0,21188,21188,21188,21189, 0,21189,21189,21189,21190, 0,21190,21190,21190,21191, 0,21191,21191,21191,21192, 0,21192,21192,21192,21193, 0,21193,21193,21193,21194, 0,21194,21194,21194,21195, 0,21195,21195,21195,21196, 0,21196,21196,21196,21197, 0,21197,21197,21197,21198, 0,21198,21198,21198,21199, 0,21199,21199,21199,21200, 0,21200,21200,21200,21201, 0,21201,21201,21201,21202, 0,21202,21202,21202,21203, 21203,21203,21203,21203,21204, 0,21204,21204,21204,21205, 21205,21205,21205,21205,21206,21206,21206,21206,21206,21207, 0,21207,21207,21207,21208, 0,21208,21208,21208,21209, 0,21209,21209,21209,21210, 0,21210,21210,21210,21211, 0,21211,21211,21211,21212, 0,21212,21212,21212,21213, 0,21213,21213,21213,21214, 0,21214,21214,21214,21215, 0,21215,21215,21215,21216, 0,21216,21216,21216,21217, 0,21217,21217,21217,21218, 0,21218,21218,21218,21219, 0,21219,21219,21219,21220, 0,21220,21220,21220,21221, 0,21221,21221,21221,21222, 0,21222,21222,21222,21223, 0,21223,21223,21223,21224, 0,21224,21224,21224,21225, 0,21225,21225,21225,21226, 0,21226,21226,21226,21227, 0,21227,21227,21227,21228, 0,21228,21228,21228,21229, 21229,21229,21229,21229,21230, 0,21230,21230,21230,21231, 0,21231,21231,21231,21232,21232,21232,21232,21232,21233, 21233,21233,21233,21233,21234,21234,21234,21234,21234,21235, 21235,21235,21235,21235,21236, 0,21236,21236,21236,21237, 0,21237,21237,21237,21238, 0,21238,21238,21238,21239, 0,21239,21239,21239,21240, 0,21240,21240,21240,21241, 0,21241,21241,21241,21242, 0,21242,21242,21242,21243, 0,21243,21243,21243,21244, 0,21244,21244,21244,21245, 0,21245,21245,21245,21246, 0,21246,21246,21246,21247, 0,21247,21247,21247,21248, 0,21248,21248,21248,21249, 21249,21249,21249,21249,21250,21250,21250,21250,21250,21251, 0,21251,21251,21251,21252, 0,21252,21252,21252,21253, 0,21253,21253,21253,21254, 0,21254,21254,21254,21255, 0,21255,21255,21255,21256, 0,21256,21256,21256,21257, 0,21257,21257,21257,21258, 0,21258,21258,21258,21259, 0,21259,21259,21259,21260, 0,21260,21260,21260,21261, 0,21261,21261,21261,21262, 0,21262,21262,21262,21263, 21263,21263,21263,21263,21264,21264,21264,21264,21264,21265, 0,21265,21265,21265,21266,21266,21266,21266,21266,21267, 0,21267,21267,21267,21268,21268,21268,21268,21268,21269, 0,21269,21269,21269,21270,21270,21270,21270,21270,21271, 0,21271,21271,21271,21272, 0,21272,21272,21272,21273, 0,21273,21273,21273,21274, 0,21274,21274,21274,21275, 0,21275,21275,21275,21276, 0,21276,21276,21276,21277, 0,21277,21277,21277,21278, 0,21278,21278,21278,21279, 0,21279,21279,21279,21280, 0,21280,21280,21280,21281, 0,21281,21281,21281,21282, 0,21282,21282,21282,21283, 0,21283,21283,21283,21284, 0,21284,21284,21284,21285, 0,21285,21285,21285,21286, 0,21286,21286,21286,21287, 0,21287,21287,21287,21288, 0,21288,21288,21288,21289, 0,21289,21289,21289,21290, 0,21290,21290,21290,21291, 0,21291,21291,21291,21292, 0,21292,21292,21292,21293, 0,21293,21293,21293,21294, 0,21294,21294,21294,21295, 0,21295,21295,21295,21296, 0,21296,21296,21296,21297, 0,21297,21297,21297,21298, 0,21298,21298,21298,21299, 0,21299,21299,21299,21300, 0,21300,21300,21300,21301, 0,21301,21301,21301,21302, 0,21302,21302,21302,21303, 0,21303,21303,21303,21304, 0,21304,21304,21304,21305, 0,21305,21305,21305,21306, 0,21306,21306,21306,21307, 0,21307,21307,21307,21308, 0,21308,21308,21308,21309, 0,21309,21309,21309,21310, 0,21310,21310,21310,21311, 0,21311,21311,21311,21312, 0,21312,21312,21312,21313, 0,21313,21313,21313,21314, 0,21314,21314,21314,21315, 0,21315,21315,21315,21316, 0,21316,21316,21316,21317, 0,21317,21317,21317,21318, 0,21318,21318,21318,21319, 0,21319,21319,21319,21320, 0,21320,21320,21320,21321, 0,21321,21321,21321,21322, 0,21322,21322,21322,21323, 0,21323,21323,21323,21324, 0,21324,21324,21324,21325, 0,21325,21325,21325,21326, 0,21326,21326,21326,21327, 0,21327,21327,21327,21328, 0,21328,21328,21328,21329, 0,21329,21329,21329,21330, 0,21330,21330,21330,21331, 0,21331,21331,21331,21332, 0,21332,21332,21332,21333, 0,21333,21333,21333,21334, 0,21334,21334,21334,21335, 0,21335,21335,21335,21336, 0,21336,21336,21336,21337, 0,21337,21337,21337,21338, 0,21338,21338,21338,21339, 0,21339,21339,21339,21340, 0,21340,21340,21340,21341, 0,21341,21341,21341,21342, 0,21342,21342,21342,21343, 0,21343,21343,21343,21344, 0,21344,21344,21344,21345, 0,21345,21345,21345,21346, 0,21346,21346,21346,21347, 0,21347,21347,21347,21348, 0,21348,21348,21348,21349, 0,21349,21349,21349,21350, 0,21350,21350,21350,21351, 0,21351,21351,21351,21352, 0,21352,21352,21352,21353, 21353,21353,21353,21353,21354, 0,21354,21354,21354,21355, 21355,21355,21355,21355,21356,21356,21356,21356,21356,21357, 0,21357,21357,21357,21358, 0,21358,21358,21358,21359, 0,21359,21359,21359,21360, 0,21360,21360,21360,21361, 0,21361,21361,21361,21362, 0,21362,21362,21362,21363, 0,21363,21363,21363,21364, 0,21364,21364,21364,21365, 0,21365,21365,21365,21366, 0,21366,21366,21366,21367, 0,21367,21367,21367,21368, 0,21368,21368,21368,21369, 0,21369,21369,21369,21370, 0,21370,21370,21370,21371, 0,21371,21371,21371,21372, 0,21372,21372,21372,21373, 0,21373,21373,21373,21374, 0,21374,21374,21374,21375, 0,21375,21375,21375,21376, 0,21376,21376,21376,21377, 0,21377,21377,21377,21378, 0,21378,21378,21378,21379, 0,21379,21379,21379,21380, 0,21380,21380,21380,21381, 0,21381,21381,21381,21382, 0,21382,21382,21382,21383, 21383,21383,21383,21383,21384, 0,21384,21384,21384,21385, 0,21385,21385,21385,21386,21386,21386,21386,21386,21387, 21387,21387,21387,21387,21388,21388,21388,21388,21388,21389, 21389,21389,21389,21389,21390, 0,21390,21390,21390,21391, 0,21391,21391,21391,21392, 0,21392,21392,21392,21393, 0,21393,21393,21393,21394, 0,21394,21394,21394,21395, 0,21395,21395,21395,21396, 0,21396,21396,21396,21397, 0,21397,21397,21397,21398, 0,21398,21398,21398,21399, 0,21399,21399,21399,21400, 0,21400,21400,21400,21401, 0,21401,21401,21401,21402,21402,21402,21402,21402,21403, 21403,21403,21403,21403,21404, 0,21404,21404,21404,21405, 0,21405,21405,21405,21406, 0,21406,21406,21406,21407, 0,21407,21407,21407,21408, 0,21408,21408,21408,21409, 0,21409,21409,21409,21410, 0,21410,21410,21410,21411, 0,21411,21411,21411,21412, 0,21412,21412,21412,21413, 0,21413,21413,21413,21414, 0,21414,21414,21414,21415, 0,21415,21415,21415,21416,21416,21416,21416,21416,21417, 21417,21417,21417,21417,21418, 0,21418,21418,21418,21419, 21419,21419,21419,21419,21420, 0,21420,21420,21420,21421, 21421,21421,21421,21421,21422, 0,21422,21422,21422,21423, 21423,21423,21423,21423,21424, 0,21424,21424,21424,21425, 0,21425,21425,21425,21426, 0,21426,21426,21426,21427, 0,21427,21427,21427,21428, 0,21428,21428,21428,21429, 0,21429,21429,21429,21430, 0,21430,21430,21430,21431, 0,21431,21431,21431,21432, 0,21432,21432,21432,21433, 0,21433,21433,21433,21434, 0,21434,21434,21434,21435, 0,21435,21435,21435,21436, 0,21436,21436,21436,21437, 0,21437,21437,21437,21438, 0,21438,21438,21438,21439, 0,21439,21439,21439,21440, 0,21440,21440,21440,21441, 0,21441,21441,21441,21442, 0,21442,21442,21442,21443, 0,21443,21443,21443,21444, 0,21444,21444,21444,21445, 0,21445,21445,21445,21446, 0,21446,21446,21446,21447, 0,21447,21447,21447,21448, 0,21448,21448,21448,21449, 0,21449,21449,21449,21450, 0,21450,21450,21450,21451, 0,21451,21451,21451,21452, 0,21452,21452,21452,21453, 0,21453,21453,21453,21454, 0,21454,21454,21454,21455, 0,21455,21455,21455,21456, 0,21456,21456,21456,21457, 0,21457,21457,21457,21458, 0,21458,21458,21458,21459, 0,21459,21459,21459,21460, 0,21460,21460,21460,21461, 0,21461,21461,21461,21462, 0,21462,21462,21462,21463, 0,21463,21463,21463,21464, 0,21464,21464,21464,21465, 0,21465,21465,21465,21466, 0,21466,21466,21466,21467, 0,21467,21467,21467,21468, 0,21468,21468,21468,21469, 0,21469,21469,21469,21470, 0,21470,21470,21470,21471, 0,21471,21471,21471,21472, 0,21472,21472,21472,21473, 0,21473,21473,21473,21474, 0,21474,21474,21474,21475, 0,21475,21475,21475,21476, 0,21476,21476,21476,21477, 21477,21477,21477,21477,21478,21478,21478,21478,21478,21479, 0,21479,21479,21479,21480,21480,21480,21480,21480,21481, 0,21481,21481,21481,21482, 0,21482,21482,21482,21483, 0,21483,21483,21483,21484, 0,21484,21484,21484,21485, 0,21485,21485,21485,21486, 0,21486,21486,21486,21487, 0,21487,21487,21487,21488, 0,21488,21488,21488,21489, 0,21489,21489,21489,21490, 0,21490,21490,21490,21491, 0,21491,21491,21491,21492, 0,21492,21492,21492,21493, 0,21493,21493,21493,21494, 0,21494,21494,21494,21495, 0,21495,21495,21495,21496, 0,21496,21496,21496,21497, 21497,21497,21497,21497,21498, 0,21498,21498,21498,21499, 0,21499,21499,21499,21500,21500,21500,21500,21500,21501, 21501,21501,21501,21501,21502, 0,21502,21502,21502,21503, 0,21503,21503,21503,21504, 0,21504,21504,21504,21505, 0,21505,21505,21505,21506, 0,21506,21506,21506,21507, 0,21507,21507,21507,21508, 0,21508,21508,21508,21509, 0,21509,21509,21509,21510, 0,21510,21510,21510,21511, 0,21511,21511,21511,21512,21512,21512,21512,21512,21513, 21513,21513,21513,21513,21514, 0,21514,21514,21514,21515, 0,21515,21515,21515,21516, 0,21516,21516,21516,21517, 0,21517,21517,21517,21518, 0,21518,21518,21518,21519, 0,21519,21519,21519,21520, 0,21520,21520,21520,21521, 0,21521,21521,21521,21522,21522,21522,21522,21522,21523, 21523,21523,21523,21523,21524, 0,21524,21524,21524,21525, 21525,21525,21525,21525,21526, 0,21526,21526,21526,21527, 21527,21527,21527,21527,21528, 0,21528,21528,21528,21529, 21529,21529,21529,21529,21530, 0,21530,21530,21530,21531, 0,21531,21531,21531,21532, 0,21532,21532,21532,21533, 0,21533,21533,21533,21534, 0,21534,21534,21534,21535, 0,21535,21535,21535,21536, 0,21536,21536,21536,21537, 0,21537,21537,21537,21538, 0,21538,21538,21538,21539, 0,21539,21539,21539,21540, 0,21540,21540,21540,21541, 0,21541,21541,21541,21542, 0,21542,21542,21542,21543, 0,21543,21543,21543,21544, 0,21544,21544,21544,21545, 0,21545,21545,21545,21546, 0,21546,21546,21546,21547, 0,21547,21547,21547,21548, 0,21548,21548,21548,21549, 0,21549,21549,21549,21550, 0,21550,21550,21550,21551, 0,21551,21551,21551,21552, 0,21552,21552,21552,21553, 0,21553,21553,21553,21554, 0,21554,21554,21554,21555, 0,21555,21555,21555,21556, 0,21556,21556,21556,21557, 0,21557,21557,21557,21558, 0,21558,21558,21558,21559, 0,21559,21559,21559,21560, 0,21560,21560,21560,21561, 0,21561,21561,21561,21562, 0,21562,21562,21562,21563, 0,21563,21563,21563,21564, 0,21564,21564,21564,21565, 0,21565,21565,21565,21566, 0,21566,21566,21566,21567, 0,21567,21567,21567,21568, 0,21568,21568,21568,21569, 0,21569,21569,21569,21570, 0,21570,21570,21570,21571, 0,21571,21571,21571,21572, 0,21572,21572,21572,21573, 0,21573,21573,21573,21574, 0,21574,21574,21574,21575, 0,21575,21575,21575,21576, 0,21576,21576,21576,21577, 0,21577,21577,21577,21578, 0,21578,21578,21578,21579, 0,21579,21579,21579,21580, 0,21580,21580,21580,21581, 0,21581,21581,21581,21582, 0,21582,21582,21582,21583, 21583,21583,21583,21583,21584,21584,21584,21584,21584,21585, 0,21585,21585,21585,21586,21586,21586,21586,21586,21587, 0,21587,21587,21587,21588, 0,21588,21588,21588,21589, 0,21589,21589,21589,21590, 0,21590,21590,21590,21591, 0,21591,21591,21591,21592, 0,21592,21592,21592,21593, 0,21593,21593,21593,21594, 0,21594,21594,21594,21595, 0,21595,21595,21595,21596, 0,21596,21596,21596,21597, 0,21597,21597,21597,21598, 0,21598,21598,21598,21599, 0,21599,21599,21599,21600, 0,21600,21600,21600,21601, 0,21601,21601,21601,21602, 0,21602,21602,21602,21603, 21603,21603,21603,21603,21604, 0,21604,21604,21604,21605, 21605,21605,21605,21605,21606,21606,21606,21606,21606,21607, 21607,21607,21607,21607,21608, 0,21608,21608,21608,21609, 0,21609,21609,21609,21610, 0,21610,21610,21610,21611, 0,21611,21611,21611,21612, 0,21612,21612,21612,21613, 0,21613,21613,21613,21614, 0,21614,21614,21614,21615, 0,21615,21615,21615,21616, 0,21616,21616,21616,21617, 0,21617,21617,21617,21618,21618,21618,21618,21618,21619, 21619,21619,21619,21619,21620, 0,21620,21620,21620,21621, 0,21621,21621,21621,21622, 0,21622,21622,21622,21623, 0,21623,21623,21623,21624, 0,21624,21624,21624,21625, 0,21625,21625,21625,21626, 0,21626,21626,21626,21627, 0,21627,21627,21627,21628,21628,21628,21628,21628,21629, 21629,21629,21629,21629,21630, 0,21630,21630,21630,21631, 21631,21631,21631,21631,21632, 0,21632,21632,21632,21633, 21633,21633,21633,21633,21634, 0,21634,21634,21634,21635, 21635,21635,21635,21635,21636, 0,21636,21636,21636,21637, 0,21637,21637,21637,21638, 0,21638,21638,21638,21639, 0,21639,21639,21639,21640, 0,21640,21640,21640,21641, 0,21641,21641,21641,21642, 0,21642,21642,21642,21643, 0,21643,21643,21643,21644, 0,21644,21644,21644,21645, 0,21645,21645,21645,21646, 0,21646,21646,21646,21647, 0,21647,21647,21647,21648, 0,21648,21648,21648,21649, 0,21649,21649,21649,21650, 0,21650,21650,21650,21651, 0,21651,21651,21651,21652, 0,21652,21652,21652,21653, 0,21653,21653,21653,21654, 0,21654,21654,21654,21655, 0,21655,21655,21655,21656, 0,21656,21656,21656,21657, 0,21657,21657,21657,21658, 0,21658,21658,21658,21659, 0,21659,21659,21659,21660, 0,21660,21660,21660,21661, 0,21661,21661,21661,21662, 0,21662,21662,21662,21663, 0,21663,21663,21663,21664, 0,21664,21664,21664,21665, 0,21665,21665,21665,21666, 0,21666,21666,21666,21667, 0,21667,21667,21667,21668, 0,21668,21668,21668,21669, 0,21669,21669,21669,21670, 0,21670,21670,21670,21671, 0,21671,21671,21671,21672, 0,21672,21672,21672,21673, 0,21673,21673,21673,21674, 0,21674,21674,21674,21675, 0,21675,21675,21675,21676, 0,21676,21676,21676,21677, 0,21677,21677,21677,21678, 0,21678,21678,21678,21679, 0,21679,21679,21679,21680, 0,21680,21680,21680,21681, 0,21681,21681,21681,21682, 0,21682,21682,21682,21683, 0,21683,21683,21683,21684, 0,21684,21684,21684,21685, 0,21685,21685,21685,21686, 0,21686,21686,21686,21687, 0,21687,21687,21687,21688, 0,21688,21688,21688,21689, 0,21689,21689,21689,21690,21690,21690,21690,21690,21691, 0,21691,21691,21691,21692,21692,21692,21692,21692,21693, 0,21693,21693,21693,21694, 0,21694,21694,21694,21695, 0,21695,21695,21695,21696, 0,21696,21696,21696,21697, 0,21697,21697,21697,21698, 0,21698,21698,21698,21699, 0,21699,21699,21699,21700, 0,21700,21700,21700,21701, 0,21701,21701,21701,21702, 0,21702,21702,21702,21703, 0,21703,21703,21703,21704, 0,21704,21704,21704,21705, 0,21705,21705,21705,21706, 0,21706,21706,21706,21707, 0,21707,21707,21707,21708, 0,21708,21708,21708,21709, 0,21709,21709,21709,21710, 0,21710,21710,21710,21711, 0,21711,21711,21711,21712,21712,21712,21712,21712,21713, 0,21713,21713,21713,21714, 0,21714,21714,21714,21715, 21715,21715,21715,21715,21716, 0,21716,21716,21716,21717, 21717,21717,21717,21717,21718, 0,21718,21718,21718,21719, 0,21719,21719,21719,21720, 0,21720,21720,21720,21721, 0,21721,21721,21721,21722, 0,21722,21722,21722,21723, 0,21723,21723,21723,21724, 0,21724,21724,21724,21725, 0,21725,21725,21725,21726, 0,21726,21726,21726,21727, 0,21727,21727,21727,21728,21728,21728,21728,21728,21729, 21729,21729,21729,21729,21730, 0,21730,21730,21730,21731, 0,21731,21731,21731,21732, 0,21732,21732,21732,21733, 0,21733,21733,21733,21734, 0,21734,21734,21734,21735, 0,21735,21735,21735,21736, 0,21736,21736,21736,21737, 0,21737,21737,21737,21738,21738,21738,21738,21738,21739, 21739,21739,21739,21739,21740, 0,21740,21740,21740,21741, 21741,21741,21741,21741,21742, 0,21742,21742,21742,21743, 21743,21743,21743,21743,21744, 0,21744,21744,21744,21745, 21745,21745,21745,21745,21746, 0,21746,21746,21746,21747, 0,21747,21747,21747,21748, 0,21748,21748,21748,21749, 0,21749,21749,21749,21750, 0,21750,21750,21750,21751, 0,21751,21751,21751,21752, 0,21752,21752,21752,21753, 0,21753,21753,21753,21754, 0,21754,21754,21754,21755, 0,21755,21755,21755,21756, 0,21756,21756,21756,21757, 0,21757,21757,21757,21758, 0,21758,21758,21758,21759, 0,21759,21759,21759,21760, 0,21760,21760,21760,21761, 0,21761,21761,21761,21762, 0,21762,21762,21762,21763, 0,21763,21763,21763,21764, 0,21764,21764,21764,21765, 0,21765,21765,21765,21766, 0,21766,21766,21766,21767, 0,21767,21767,21767,21768, 0,21768,21768,21768,21769, 0,21769,21769,21769,21770, 0,21770,21770,21770,21771, 0,21771,21771,21771,21772, 0,21772,21772,21772,21773, 0,21773,21773,21773,21774,21774,21774,21774,21774,21775, 0,21775,21775,21775,21776, 0,21776,21776,21776,21777, 0,21777,21777,21777,21778, 0,21778,21778,21778,21779, 0,21779,21779,21779,21780, 0,21780,21780,21780,21781, 0,21781,21781,21781,21782, 0,21782,21782,21782,21783, 0,21783,21783,21783,21784, 0,21784,21784,21784,21785, 21785,21785,21785,21785,21786, 0,21786,21786,21786,21787, 21787,21787,21787,21787,21788,21788,21788,21788,21788,21789, 0,21789,21789,21789,21790, 0,21790,21790,21790,21791, 0,21791,21791,21791,21792, 0,21792,21792,21792,21793, 0,21793,21793,21793,21794, 0,21794,21794,21794,21795, 0,21795,21795,21795,21796, 0,21796,21796,21796,21797, 0,21797,21797,21797,21798, 0,21798,21798,21798,21799, 21799,21799,21799,21799,21800,21800,21800,21800,21800,21801, 0,21801,21801,21801,21802, 0,21802,21802,21802,21803, 0,21803,21803,21803,21804, 0,21804,21804,21804,21805, 0,21805,21805,21805,21806, 0,21806,21806,21806,21807, 0,21807,21807,21807,21808, 0,21808,21808,21808,21809, 21809,21809,21809,21809,21810,21810,21810,21810,21810,21811, 0,21811,21811,21811,21812, 0,21812,21812,21812,21813, 21813,21813,21813,21813,21814, 0,21814,21814,21814,21815, 21815,21815,21815,21815,21816, 0,21816,21816,21816,21817, 0,21817,21817,21817,21818, 0,21818,21818,21818,21819, 0,21819,21819,21819,21820, 0,21820,21820,21820,21821, 0,21821,21821,21821,21822, 0,21822,21822,21822,21823, 0,21823,21823,21823,21824, 0,21824,21824,21824,21825, 0,21825,21825,21825,21826, 0,21826,21826,21826,21827, 0,21827,21827,21827,21828, 0,21828,21828,21828,21829, 0,21829,21829,21829,21830, 0,21830,21830,21830,21831, 0,21831,21831,21831,21832, 0,21832,21832,21832,21833, 0,21833,21833,21833,21834, 0,21834,21834,21834,21835, 0,21835,21835,21835,21836, 0,21836,21836,21836,21837, 0,21837,21837,21837,21838,21838,21838,21838,21838,21839, 0,21839,21839,21839,21840,21840,21840,21840,21840,21841, 21841, 0,21841,21841,21842, 0,21842,21842,21842,21843, 0,21843,21843,21843,21844, 0,21844,21844,21844,21845, 0,21845,21845,21845,21846, 0,21846,21846,21846,21847, 0,21847,21847,21847,21848, 0,21848,21848,21848,21849, 21849,21849,21849,21849,21850, 0,21850,21850,21850,21851, 21851,21851,21851,21851,21852, 0,21852,21852,21852,21853, 0,21853,21853,21853,21854, 0,21854,21854,21854,21855, 0,21855,21855,21855,21856, 0,21856,21856,21856,21857, 0,21857,21857,21857,21858, 0,21858,21858,21858,21859, 0,21859,21859,21859,21860, 0,21860,21860,21860,21861, 0,21861,21861,21861,21862,21862,21862,21862,21862,21863, 21863,21863,21863,21863,21864, 0,21864,21864,21864,21865, 0,21865,21865,21865,21866, 0,21866,21866,21866,21867, 0,21867,21867,21867,21868, 0,21868,21868,21868,21869, 0,21869,21869,21869,21870, 0,21870,21870,21870,21871, 0,21871,21871,21871,21872, 0,21872,21872,21872,21873, 21873,21873,21873,21873,21874,21874,21874,21874,21874,21875, 0,21875,21875,21875,21876, 0,21876,21876,21876,21877, 21877,21877,21877,21877,21878,21878,21878,21878,21878,21879, 0,21879,21879,21879,21880, 0,21880,21880,21880,21881, 0,21881,21881,21881,21882, 0,21882,21882,21882,21883, 0,21883,21883,21883,21884, 0,21884,21884,21884,21885, 0,21885,21885,21885,21886, 0,21886,21886,21886,21887, 0,21887,21887,21887,21888, 0,21888,21888,21888,21889, 0,21889,21889,21889,21890, 0,21890,21890,21890,21891, 0,21891,21891,21891,21892, 0,21892,21892,21892,21893, 0,21893,21893,21893,21894, 0,21894,21894,21894,21895, 0,21895,21895,21895,21896, 0,21896,21896,21896,21897, 0,21897,21897,21897,21898, 0,21898,21898,21898,21899, 0,21899,21899,21899,21900, 0,21900,21900,21900,21901, 0,21901,21901,21901,21902, 0,21902,21902,21902,21903, 0,21903,21903,21903,21904, 0,21904,21904,21904,21905, 0,21905,21905,21905,21906, 0,21906,21906,21906,21907, 0,21907,21907,21907,21908,21908,21908,21908,21908,21909, 21909,21909,21909,21909,21910, 0,21910,21910,21910,21911, 0,21911,21911,21911,21912, 0,21912,21912,21912,21913, 0,21913,21913,21913,21914, 0,21914,21914,21914,21915, 0,21915,21915,21915,21916, 0,21916,21916,21916,21917, 21917,21917,21917,21917,21918, 0,21918,21918,21918,21919, 21919,21919,21919,21919,21920, 0,21920,21920,21920,21921, 0,21921,21921,21921,21922, 0,21922,21922,21922,21923, 0,21923,21923,21923,21924, 0,21924,21924,21924,21925, 0,21925,21925,21925,21926, 0,21926,21926,21926,21927, 0,21927,21927,21927,21928, 0,21928,21928,21928,21929, 0,21929,21929,21929,21930, 0,21930,21930,21930,21931, 21931,21931,21931,21931,21932,21932,21932,21932,21932,21933, 0,21933,21933,21933,21934, 0,21934,21934,21934,21935, 0,21935,21935,21935,21936, 0,21936,21936,21936,21937, 0,21937,21937,21937,21938, 0,21938,21938,21938,21939, 0,21939,21939,21939,21940, 0,21940,21940,21940,21941, 0,21941,21941,21941,21942,21942,21942,21942,21942,21943, 21943,21943,21943,21943,21944, 0,21944,21944,21944,21945, 0,21945,21945,21945,21946,21946,21946,21946,21946,21947, 21947,21947,21947,21947,21948, 0,21948,21948,21948,21949, 0,21949,21949,21949,21950, 0,21950,21950,21950,21951, 0,21951,21951,21951,21952, 0,21952,21952,21952,21953, 0,21953,21953,21953,21954, 0,21954,21954,21954,21955, 0,21955,21955,21955,21956, 0,21956,21956,21956,21957, 0,21957,21957,21957,21958, 0,21958,21958,21958,21959, 0,21959,21959,21959,21960, 0,21960,21960,21960,21961, 0,21961,21961,21961,21962, 0,21962,21962,21962,21963, 0,21963,21963,21963,21964, 0,21964,21964,21964,21965, 0,21965,21965,21965,21966, 0,21966,21966,21966,21967, 0,21967,21967,21967,21968, 0,21968,21968,21968,21969, 0,21969,21969,21969,21970,21970,21970,21970,21970,21971, 0,21971,21971,21971,21972, 0,21972,21972,21972,21973, 0,21973,21973,21973,21974, 0,21974,21974,21974,21975, 0,21975,21975,21975,21976, 0,21976,21976,21976,21977, 0,21977,21977,21977,21978, 0,21978,21978,21978,21979, 21979,21979,21979,21979,21980, 0,21980,21980,21980,21981, 21981,21981,21981,21981,21982, 0,21982,21982,21982,21983, 0,21983,21983,21983,21984, 0,21984,21984,21984,21985, 0,21985,21985,21985,21986, 0,21986,21986,21986,21987, 0,21987,21987,21987,21988, 0,21988,21988,21988,21989, 0,21989,21989,21989,21990, 0,21990,21990,21990,21991, 0,21991,21991,21991,21992, 0,21992,21992,21992,21993, 21993,21993,21993,21993,21994,21994,21994,21994,21994,21995, 0,21995,21995,21995,21996, 0,21996,21996,21996,21997, 0,21997,21997,21997,21998, 0,21998,21998,21998,21999, 0,21999,21999,21999,22000, 0,22000,22000,22000,22001, 0,22001,22001,22001,22002, 0,22002,22002,22002,22003, 0,22003,22003,22003,22004,22004,22004,22004,22004,22005, 0,22005,22005,22005,22006,22006,22006,22006,22006,22007, 0,22007,22007,22007,22008,22008,22008,22008,22008,22009, 22009,22009,22009,22009,22010, 0,22010,22010,22010,22011, 0,22011,22011,22011,22012, 0,22012,22012,22012,22013, 0,22013,22013,22013,22014, 0,22014,22014,22014,22015, 0,22015,22015,22015,22016, 0,22016,22016,22016,22017, 0,22017,22017,22017,22018, 0,22018,22018,22018,22019, 0,22019,22019,22019,22020, 0,22020,22020,22020,22021, 0,22021,22021,22021,22022, 0,22022,22022,22022,22023, 0,22023,22023,22023,22024, 0,22024,22024,22024,22025, 0,22025,22025,22025,22026, 0,22026,22026,22026,22027, 0,22027,22027,22027,22028,22028,22028,22028,22028,22029, 0,22029,22029,22029,22030, 0,22030,22030,22030,22031, 0,22031,22031,22031,22032, 0,22032,22032,22032,22033, 0,22033,22033,22033,22034, 0,22034,22034,22034,22035, 0,22035,22035,22035,22036,22036,22036,22036,22036,22037, 0,22037,22037,22037,22038,22038,22038,22038,22038,22039, 0,22039,22039,22039,22040, 0,22040,22040,22040,22041, 0,22041,22041,22041,22042, 0,22042,22042,22042,22043, 0,22043,22043,22043,22044, 0,22044,22044,22044,22045, 0,22045,22045,22045,22046, 0,22046,22046,22046,22047, 0,22047,22047,22047,22048, 0,22048,22048,22048,22049, 22049,22049,22049,22049,22050,22050,22050,22050,22050,22051, 0,22051,22051,22051,22052, 0,22052,22052,22052,22053, 0,22053,22053,22053,22054, 0,22054,22054,22054,22055, 0,22055,22055,22055,22056, 0,22056,22056,22056,22057, 0,22057,22057,22057,22058, 0,22058,22058,22058,22059, 0,22059,22059,22059,22060, 0,22060,22060,22060,22061, 22061,22061,22061,22061,22062, 0,22062,22062,22062,22063, 22063,22063,22063,22063,22064, 0,22064,22064,22064,22065, 22065,22065,22065,22065,22066, 0,22066,22066,22066,22067, 0,22067,22067,22067,22068, 0,22068,22068,22068,22069, 0,22069,22069,22069,22070, 0,22070,22070,22070,22071, 0,22071,22071,22071,22072, 0,22072,22072,22072,22073, 0,22073,22073,22073,22074, 0,22074,22074,22074,22075, 0,22075,22075,22075,22076, 0,22076,22076,22076,22077, 0,22077,22077,22077,22078, 0,22078,22078,22078,22079, 0,22079,22079,22079,22080, 0,22080,22080,22080,22081, 0,22081,22081,22081,22082, 0,22082,22082,22082,22083, 0,22083,22083,22083,22084, 0,22084,22084,22084,22085, 0,22085,22085,22085,22086,22086,22086,22086,22086,22087, 0,22087,22087,22087,22088, 0,22088,22088,22088,22089, 0,22089,22089,22089,22090, 0,22090,22090,22090,22091, 0,22091,22091,22091,22092, 0,22092,22092,22092,22093, 22093,22093,22093,22093,22094, 0,22094,22094,22094,22095, 22095,22095,22095,22095,22096,22096,22096,22096,22096,22097, 0,22097,22097,22097,22098, 0,22098,22098,22098,22099, 0,22099,22099,22099,22100, 0,22100,22100,22100,22101, 0,22101,22101,22101,22102, 0,22102,22102,22102,22103, 0,22103,22103,22103,22104, 0,22104,22104,22104,22105, 22105,22105,22105,22105,22106,22106,22106,22106,22106,22107, 0,22107,22107,22107,22108, 0,22108,22108,22108,22109, 0,22109,22109,22109,22110, 0,22110,22110,22110,22111, 0,22111,22111,22111,22112, 0,22112,22112,22112,22113, 0,22113,22113,22113,22114, 0,22114,22114,22114,22115, 0,22115,22115,22115,22116, 0,22116,22116,22116,22117, 22117,22117,22117,22117,22118, 0,22118,22118,22118,22119, 22119,22119,22119,22119,22120, 0,22120,22120,22120,22121, 22121,22121,22121,22121,22122, 0,22122,22122,22122,22123, 0,22123,22123,22123,22124, 0,22124,22124,22124,22125, 0,22125,22125,22125,22126, 0,22126,22126,22126,22127, 0,22127,22127,22127,22128, 0,22128,22128,22128,22129, 0,22129,22129,22129,22130, 0,22130,22130,22130,22131, 0,22131,22131,22131,22132, 0,22132,22132,22132,22133, 0,22133,22133,22133,22134, 0,22134,22134,22134,22135, 0,22135,22135,22135,22136, 0,22136,22136,22136,22137, 22137,22137,22137,22137,22138, 0,22138,22138,22138,22139, 22139,22139,22139,22139,22140,22140,22140,22140,22140,22141, 0,22141,22141,22141,22142, 0,22142,22142,22142,22143, 0,22143,22143,22143,22144, 0,22144,22144,22144,22145, 0,22145,22145,22145,22146, 0,22146,22146,22146,22147, 0,22147,22147,22147,22148, 0,22148,22148,22148,22149, 22149,22149,22149,22149,22150,22150,22150,22150,22150,22151, 0,22151,22151,22151,22152, 0,22152,22152,22152,22153, 0,22153,22153,22153,22154, 0,22154,22154,22154,22155, 0,22155,22155,22155,22156, 0,22156,22156,22156,22157, 0,22157,22157,22157,22158, 0,22158,22158,22158,22159, 0,22159,22159,22159,22160, 0,22160,22160,22160,22161, 0,22161,22161,22161,22162,22162,22162,22162,22162,22163, 0,22163,22163,22163,22164,22164,22164,22164,22164,22165, 0,22165,22165,22165,22166,22166,22166,22166,22166,22167, 0,22167,22167,22167,22168, 0,22168,22168,22168,22169, 0,22169,22169,22169,22170, 0,22170,22170,22170,22171, 0,22171,22171,22171,22172, 0,22172,22172,22172,22173, 0,22173,22173,22173,22174, 0,22174,22174,22174,22175, 0,22175,22175,22175,22176, 0,22176,22176,22176,22177, 0,22177,22177,22177,22178,22178,22178,22178,22178,22179, 0,22179,22179,22179,22180,22180,22180,22180,22180,22181, 22181,22181,22181,22181,22182, 0,22182,22182,22182,22183, 0,22183,22183,22183,22184, 0,22184,22184,22184,22185, 0,22185,22185,22185,22186, 0,22186,22186,22186,22187, 0,22187,22187,22187,22188, 0,22188,22188,22188,22189, 0,22189,22189,22189,22190,22190,22190,22190,22190,22191, 0,22191,22191,22191,22192, 0,22192,22192,22192,22193, 0,22193,22193,22193,22194, 0,22194,22194,22194,22195, 0,22195,22195,22195,22196, 0,22196,22196,22196,22197, 0,22197,22197,22197,22198, 0,22198,22198,22198,22199, 0,22199,22199,22199,22200, 0,22200,22200,22200,22201, 22201,22201,22201,22201,22202, 0,22202,22202,22202,22203, 22203,22203,22203,22203,22204, 0,22204,22204,22204,22205, 22205,22205,22205,22205,22206, 0,22206,22206,22206,22207, 0,22207,22207,22207,22208, 0,22208,22208,22208,22209, 0,22209,22209,22209,22210, 0,22210,22210,22210,22211, 0,22211,22211,22211,22212, 0,22212,22212,22212,22213, 0,22213,22213,22213,22214, 0,22214,22214,22214,22215, 0,22215,22215,22215,22216,22216,22216,22216,22216,22217, 0,22217,22217,22217,22218,22218,22218,22218,22218,22219, 22219,22219,22219,22219,22220, 0,22220,22220,22220,22221, 0,22221,22221,22221,22222, 0,22222,22222,22222,22223, 0,22223,22223,22223,22224, 0,22224,22224,22224,22225, 0,22225,22225,22225,22226, 0,22226,22226,22226,22227, 0,22227,22227,22227,22228,22228,22228,22228,22228,22229, 0,22229,22229,22229,22230, 0,22230,22230,22230,22231, 0,22231,22231,22231,22232, 0,22232,22232,22232,22233, 0,22233,22233,22233,22234, 0,22234,22234,22234,22235, 0,22235,22235,22235,22236, 0,22236,22236,22236,22237, 0,22237,22237,22237,22238, 0,22238,22238,22238,22239, 22239,22239,22239,22239,22240, 0,22240,22240,22240,22241, 22241,22241,22241,22241,22242, 0,22242,22242,22242,22243, 22243,22243,22243,22243,22244, 0,22244,22244,22244,22245, 0,22245,22245,22245,22246, 0,22246,22246,22246,22247, 0,22247,22247,22247,22248, 0,22248,22248,22248,22249, 0,22249,22249,22249,22250, 0,22250,22250,22250,22251, 0,22251,22251,22251,22252, 0,22252,22252,22252,22253, 0,22253,22253,22253,22254,22254,22254,22254,22254,22255, 0,22255,22255,22255,22256,22256,22256,22256,22256,22257, 22257,22257,22257,22257,22258, 0,22258,22258,22258,22259, 0,22259,22259,22259,22260, 0,22260,22260,22260,22261, 0,22261,22261,22261,22262, 0,22262,22262,22262,22263, 0,22263,22263,22263,22264,22264,22264,22264,22264,22265, 0,22265,22265,22265,22266, 0,22266,22266,22266,22267, 0,22267,22267,22267,22268, 0,22268,22268,22268,22269, 0,22269,22269,22269,22270, 0,22270,22270,22270,22271, 0,22271,22271,22271,22272, 0,22272,22272,22272,22273, 0,22273,22273,22273,22274, 0,22274,22274,22274,22275, 22275,22275,22275,22275,22276, 0,22276,22276,22276,22277, 22277,22277,22277,22277,22278, 0,22278,22278,22278,22279, 22279,22279,22279,22279,22280, 0,22280,22280,22280,22281, 0,22281,22281,22281,22282, 0,22282,22282,22282,22283, 0,22283,22283,22283,22284, 0,22284,22284,22284,22285, 0,22285,22285,22285,22286, 0,22286,22286,22286,22287, 0,22287,22287,22287,22288, 0,22288,22288,22288,22289, 22289,22289,22289,22289,22290, 0,22290,22290,22290,22291, 22291,22291,22291,22291,22292,22292,22292,22292,22292,22293, 0,22293,22293,22293,22294, 0,22294,22294,22294,22295, 0,22295,22295,22295,22296, 0,22296,22296,22296,22297, 0,22297,22297,22297,22298,22298,22298,22298,22298,22299, 0,22299,22299,22299,22300, 0,22300,22300,22300,22301, 0,22301,22301,22301,22302, 0,22302,22302,22302,22303, 0,22303,22303,22303,22304, 0,22304,22304,22304,22305, 0,22305,22305,22305,22306, 0,22306,22306,22306,22307, 0,22307,22307,22307,22308, 0,22308,22308,22308,22309, 22309,22309,22309,22309,22310, 0,22310,22310,22310,22311, 22311,22311,22311,22311,22312, 0,22312,22312,22312,22313, 22313,22313,22313,22313,22314, 0,22314,22314,22314,22315, 0,22315,22315,22315,22316, 0,22316,22316,22316,22317, 0,22317,22317,22317,22318, 0,22318,22318,22318,22319, 0,22319,22319,22319,22320, 0,22320,22320,22320,22321, 0,22321,22321,22321,22322,22322,22322,22322,22322,22323, 0,22323,22323,22323,22324,22324,22324,22324,22324,22325, 22325,22325,22325,22325,22326, 0,22326,22326,22326,22327, 0,22327,22327,22327,22328, 0,22328,22328,22328,22329, 0,22329,22329,22329,22330, 0,22330,22330,22330,22331, 22331,22331,22331,22331,22332, 0,22332,22332,22332,22333, 0,22333,22333,22333,22334, 0,22334,22334,22334,22335, 0,22335,22335,22335,22336, 0,22336,22336,22336,22337, 0,22337,22337,22337,22338, 0,22338,22338,22338,22339, 0,22339,22339,22339,22340, 0,22340,22340,22340,22341, 0,22341,22341,22341,22342,22342,22342,22342,22342,22343, 0,22343,22343,22343,22344,22344,22344,22344,22344,22345, 0,22345,22345,22345,22346,22346,22346,22346,22346,22347, 0,22347,22347,22347,22348, 0,22348,22348,22348,22349, 0,22349,22349,22349,22350, 0,22350,22350,22350,22351, 0,22351,22351,22351,22352, 0,22352,22352,22352,22353, 0,22353,22353,22353,22354,22354,22354,22354,22354,22355, 0,22355,22355,22355,22356,22356,22356,22356,22356,22357, 22357,22357,22357,22357,22358, 0,22358,22358,22358,22359, 0,22359,22359,22359,22360, 0,22360,22360,22360,22361, 0,22361,22361,22361,22362,22362,22362,22362,22362,22363, 0,22363,22363,22363,22364, 0,22364,22364,22364,22365, 0,22365,22365,22365,22366, 0,22366,22366,22366,22367, 0,22367,22367,22367,22368, 0,22368,22368,22368,22369, 0,22369,22369,22369,22370, 0,22370,22370,22370,22371, 0,22371,22371,22371,22372, 0,22372,22372,22372,22373, 0,22373,22373,22373,22374, 0,22374,22374,22374,22375, 22375,22375,22375,22375,22376, 0,22376,22376,22376,22377, 22377,22377,22377,22377,22378, 0,22378,22378,22378,22379, 0,22379,22379,22379,22380, 0,22380,22380,22380,22381, 0,22381,22381,22381,22382, 0,22382,22382,22382,22383, 0,22383,22383,22383,22384,22384,22384,22384,22384,22385, 0,22385,22385,22385,22386,22386,22386,22386,22386,22387, 22387,22387,22387,22387,22388, 0,22388,22388,22388,22389, 0,22389,22389,22389,22390, 0,22390,22390,22390,22391, 0,22391,22391,22391,22392, 0,22392,22392,22392,22393, 0,22393,22393,22393,22394, 0,22394,22394,22394,22395, 0,22395,22395,22395,22396, 0,22396,22396,22396,22397, 0,22397,22397,22397,22398, 0,22398,22398,22398,22399, 0,22399,22399,22399,22400, 0,22400,22400,22400,22401, 0,22401,22401,22401,22402, 0,22402,22402,22402,22403, 0,22403,22403,22403,22404,22404,22404,22404,22404,22405, 22405,22405,22405,22405,22406, 0,22406,22406,22406,22407, 0,22407,22407,22407,22408, 0,22408,22408,22408,22409, 0,22409,22409,22409,22410, 0,22410,22410,22410,22411, 0,22411,22411,22411,22412, 0,22412,22412,22412,22413, 0,22413,22413,22413,22414,22414,22414,22414,22414,22415, 22415,22415,22415,22415,22416, 0,22416,22416,22416,22417, 0,22417,22417,22417,22418, 0,22418,22418,22418,22419, 0,22419,22419,22419,22420, 0,22420,22420,22420,22421, 0,22421,22421,22421,22422, 0,22422,22422,22422,22423, 0,22423,22423,22423,22424, 0,22424,22424,22424,22425, 0,22425,22425,22425,22426, 0,22426,22426,22426,22427, 0,22427,22427,22427,22428, 0,22428,22428,22428,22429, 0,22429,22429,22429,22430, 0,22430,22430,22430,22431, 0,22431,22431,22431,22432, 0,22432,22432,22432,22433, 22433,22433,22433,22433,22434, 0,22434,22434,22434,22435, 22435,22435,22435,22435,22436, 0,22436,22436,22436,22437, 0,22437,22437,22437,22438, 0,22438,22438,22438,22439, 0,22439,22439,22439,22440, 0,22440,22440,22440,22441, 0,22441,22441,22441,22442,22442,22442,22442,22442,22443, 22443,22443,22443,22443,22444, 0,22444,22444,22444,22445, 0,22445,22445,22445,22446, 0,22446,22446,22446,22447, 0,22447,22447,22447,22448, 0,22448,22448,22448,22449, 0,22449,22449,22449,22450, 0,22450,22450,22450,22451, 0,22451,22451,22451,22452, 0,22452,22452,22452,22453, 0,22453,22453,22453,22454, 0,22454,22454,22454,22455, 0,22455,22455,22455,22456, 0,22456,22456,22456,22457, 0,22457,22457,22457,22458, 0,22458,22458,22458,22459, 0,22459,22459,22459,22460, 0,22460,22460,22460,22461, 22461,22461,22461,22461,22462, 0,22462,22462,22462,22463, 22463,22463,22463,22463,22464, 0,22464,22464,22464,22465, 0,22465,22465,22465,22466, 0,22466,22466,22466,22467, 0,22467,22467,22467,22468, 0,22468,22468,22468,22469, 22469,22469,22469,22469,22470,22470,22470,22470,22470,22471, 0,22471,22471,22471,22472, 0,22472,22472,22472,22473, 0,22473,22473,22473,22474, 0,22474,22474,22474,22475, 0,22475,22475,22475,22476, 0,22476,22476,22476,22477, 0,22477,22477,22477,22478, 0,22478,22478,22478,22479, 0,22479,22479,22479,22480, 0,22480,22480,22480,22481, 0,22481,22481,22481,22482, 0,22482,22482,22482,22483, 0,22483,22483,22483,22484, 0,22484,22484,22484,22485, 0,22485,22485,22485,22486, 0,22486,22486,22486,22487, 0,22487,22487,22487,22488,22488,22488,22488,22488,22489, 0,22489,22489,22489,22490,22490,22490,22490,22490,22491, 0,22491,22491,22491,22492, 0,22492,22492,22492,22493, 0,22493,22493,22493,22494, 0,22494,22494,22494,22495, 0,22495,22495,22495,22496, 0,22496,22496,22496,22497, 22497,22497,22497,22497,22498,22498,22498,22498,22498,22499, 0,22499,22499,22499,22500, 0,22500,22500,22500,22501, 0,22501,22501,22501,22502, 0,22502,22502,22502,22503, 0,22503,22503,22503,22504, 0,22504,22504,22504,22505, 0,22505,22505,22505,22506, 0,22506,22506,22506,22507, 0,22507,22507,22507,22508, 0,22508,22508,22508,22509, 0,22509,22509,22509,22510, 0,22510,22510,22510,22511, 0,22511,22511,22511,22512, 0,22512,22512,22512,22513, 0,22513,22513,22513,22514, 0,22514,22514,22514,22515, 0,22515,22515,22515,22516,22516,22516,22516,22516,22517, 0,22517,22517,22517,22518,22518,22518,22518,22518,22519, 0,22519,22519,22519,22520, 0,22520,22520,22520,22521, 0,22521,22521,22521,22522, 0,22522,22522,22522,22523, 22523,22523,22523,22523,22524,22524,22524,22524,22524,22525, 0,22525,22525,22525,22526, 0,22526,22526,22526,22527, 0,22527,22527,22527,22528, 0,22528,22528,22528,22529, 0,22529,22529,22529,22530, 0,22530,22530,22530,22531, 0,22531,22531,22531,22532, 0,22532,22532,22532,22533, 0,22533,22533,22533,22534, 0,22534,22534,22534,22535, 0,22535,22535,22535,22536, 0,22536,22536,22536,22537, 0,22537,22537,22537,22538, 0,22538,22538,22538,22539, 0,22539,22539,22539,22540, 0,22540,22540,22540,22541, 0,22541,22541,22541,22542,22542,22542,22542,22542,22543, 0,22543,22543,22543,22544,22544,22544,22544,22544,22545, 0,22545,22545,22545,22546, 0,22546,22546,22546,22547, 0,22547,22547,22547,22548,22548,22548,22548,22548,22549, 0,22549,22549,22549,22550, 0,22550,22550,22550,22551, 0,22551,22551,22551,22552, 0,22552,22552,22552,22553, 0,22553,22553,22553,22554, 0,22554,22554,22554,22555, 0,22555,22555,22555,22556, 0,22556,22556,22556,22557, 0,22557,22557,22557,22558, 0,22558,22558,22558,22559, 0,22559,22559,22559,22560, 0,22560,22560,22560,22561, 0,22561,22561,22561,22562, 0,22562,22562,22562,22563, 0,22563,22563,22563,22564, 0,22564,22564,22564,22565, 0,22565,22565,22565,22566, 0,22566,22566,22566,22567, 22567,22567,22567,22567,22568, 0,22568,22568,22568,22569, 22569,22569,22569,22569,22570, 0,22570,22570,22570,22571, 0,22571,22571,22571,22572,22572,22572,22572,22572,22573, 0,22573,22573,22573,22574, 0,22574,22574,22574,22575, 0,22575,22575,22575,22576, 0,22576,22576,22576,22577, 0,22577,22577,22577,22578, 0,22578,22578,22578,22579, 0,22579,22579,22579,22580, 0,22580,22580,22580,22581, 0,22581,22581,22581,22582, 0,22582,22582,22582,22583, 0,22583,22583,22583,22584, 0,22584,22584,22584,22585, 0,22585,22585,22585,22586, 0,22586,22586,22586,22587, 0,22587,22587,22587,22588, 0,22588,22588,22588,22589, 0,22589,22589,22589,22590, 0,22590,22590,22590,22591, 0,22591,22591,22591,22592, 0,22592,22592,22592,22593, 0,22593,22593,22593,22594, 0,22594,22594,22594,22595, 0,22595,22595,22595,22596, 0,22596,22596,22596,22597, 0,22597,22597,22597,22598, 0,22598,22598,22598,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007,19007, 19007,19007,19007,19007,19007,19007,19007,19007,19007 } ; static yy_state_type yy_last_accepting_state; static char *yy_last_accepting_cpos; extern int yy_flex_debug; int yy_flex_debug = 1; static yyconst flex_int16_t yy_rule_linenum[88] = { 0, 127, 133, 137, 146, 151, 157, 163, 164, 167, 168, 171, 173, 175, 176, 179, 180, 184, 187, 188, 191, 192, 193, 194, 197, 198, 200, 201, 204, 205, 206, 207, 210, 213, 214, 216, 217, 220, 221, 224, 225, 228, 229, 232, 235, 236, 238, 239, 242, 243, 244, 246, 247, 250, 251, 254, 255, 257, 258, 261, 262, 265, 266, 269, 270, 273, 274, 277, 280, 284, 288, 289, 291, 294, 297, 302, 303, 307, 310, 311, 314, 317, 318, 321, 323, 326, 327, 330 } ; /* The intent behind this definition is that it'll catch * any uses of REJECT which flex missed. */ #define REJECT reject_used_but_not_detected #define yymore() yymore_used_but_not_detected #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET #ifndef YYLMAX #define YYLMAX 8192 #endif char yytext[YYLMAX]; char *yytext_ptr; #line 1 "attack_scanner.l" /* * Copyright (c) 2007,2008,2009,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #line 22 "attack_scanner.l" #include #include #include "attack.h" #include "attack_parser.h" static int getsyslogpid(char *syslogbanner, int length); #define YY_NO_INPUT 1 /* Start Conditions */ /* for Login services */ /* for SSHGuard */ /* for Mail services */ /* for FTP services */ /* for HTTP services */ /* all words but "sshguard" provided that posix regex don't support negation nor intersection: * 1) all words of 2 to 7 characters or 8-* chars * 2) words of 7 chars different to "sshguard" (^s.* | s^s.* | ss^h.* */ /* IPv4 address (used in IPv6 address too, for IPv4 encapsulation) */ /* IPv6 addresses including compressed variants (RFC 2373) */ /* an IPv4 packed in IPv6 as IPv4-mapped IPv6 address */ /* Common Log Format. */ /* Common configuration for http botsearch * Adapted from fail2ban botsearch filters & tweaked by alip☮exherbo.org, * Original author: Frantisek Sumsal */ #line 80697 "attack_scanner.c" #define INITIAL 0 #define ssh_notallowed 1 #define ssh_reversemap 2 #define ssh_disconnect 3 #define ssh_badproto 4 #define ssh_badkex 5 #define cockpit_authfail 6 #define sshguard_attack 7 #define sshguard_block 8 #define dovecot_loginerr 9 #define cyrusimap_loginerr 10 #define exim_esmtp_autherr 11 #define exim_esmtp_loginerr 12 #define sendmail_relaydenied 13 #define sendmail_authfailure 14 #define postfix_loginerr 15 #define postfix_greylist 16 #define opensmtpd_failedcmd 17 #define freebsdftpd_loginerr 18 #define proftpd_loginerr 19 #define pureftpd_loginerr 20 #define vsftpd_loginerr 21 #define clf_request 22 #define clf_request_withuser 23 #define clf_unauhtorized 24 #define clfwebprobes_botsearch 25 #ifndef YY_NO_UNISTD_H /* Special case for "unistd.h", since it is non-ANSI. We include it way * down here because we want the user's section 1 to have been scanned first. * The user has a chance to override it with an option. */ /* %if-c-only */ #include /* %endif */ /* %if-c++-only */ /* %endif */ #endif #ifndef YY_EXTRA_TYPE #define YY_EXTRA_TYPE void * #endif /* %if-c-only Reentrant structure and macros (non-C++). */ /* %if-reentrant */ /* %if-c-only */ static int yy_init_globals (void ); /* %endif */ /* %if-reentrant */ /* %endif */ /* %endif End reentrant structures and macros. */ /* Accessor methods to globals. These are made visible to non-reentrant scanners for convenience. */ int yylex_destroy (void ); int yyget_debug (void ); void yyset_debug (int debug_flag ); YY_EXTRA_TYPE yyget_extra (void ); void yyset_extra (YY_EXTRA_TYPE user_defined ); FILE *yyget_in (void ); void yyset_in (FILE * in_str ); FILE *yyget_out (void ); void yyset_out (FILE * out_str ); yy_size_t yyget_leng (void ); char *yyget_text (void ); int yyget_lineno (void ); void yyset_lineno (int line_number ); /* %if-bison-bridge */ /* %endif */ /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int yywrap (void ); #else extern int yywrap (void ); #endif #endif /* %not-for-header */ /* %ok-for-header */ /* %endif */ #ifndef yytext_ptr static void yy_flex_strncpy (char *,yyconst char *,int ); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * ); #endif #ifndef YY_NO_INPUT /* %if-c-only Standard (non-C++) definition */ /* %not-for-header */ #ifdef __cplusplus static int yyinput (void ); #else static int input (void ); #endif /* %ok-for-header */ /* %endif */ #endif /* %if-c-only */ /* %endif */ /* Amount of stuff to slurp up with each read. */ #ifndef YY_READ_BUF_SIZE #define YY_READ_BUF_SIZE 8192 #endif /* Copy whatever the last rule matched to the standard output. */ #ifndef ECHO /* %if-c-only Standard (non-C++) definition */ /* This used to be an fputs(), but since the string might contain NUL's, * we now use fwrite(). */ #define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0) /* %endif */ /* %if-c++-only C++ definition */ /* %endif */ #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, * is returned in "result". */ #ifndef YY_INPUT #define YY_INPUT(buf,result,max_size) \ /* %% [5.0] fread()/read() definition of YY_INPUT goes here unless we're doing C++ \ */\ if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ { \ int c = '*'; \ size_t n; \ for ( n = 0; n < max_size && \ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ buf[n] = (char) c; \ if ( c == '\n' ) \ buf[n++] = (char) c; \ if ( c == EOF && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ result = n; \ } \ else \ { \ errno=0; \ while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \ { \ if( errno != EINTR) \ { \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ break; \ } \ errno=0; \ clearerr(yyin); \ } \ }\ \ /* %if-c++-only C++ definition \ */\ /* %endif */ #endif /* No semi-colon after return; correct usage is to write "yyterminate();" - * we don't want an extra ';' after the "return" because that will cause * some compilers to complain about unreachable statements. */ #ifndef yyterminate #define yyterminate() return YY_NULL #endif /* Number of entries by which start-condition stack grows. */ #ifndef YY_START_STACK_INCR #define YY_START_STACK_INCR 25 #endif /* Report a fatal error. */ #ifndef YY_FATAL_ERROR /* %if-c-only */ #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) /* %endif */ /* %if-c++-only */ /* %endif */ #endif /* %if-tables-serialization structures and prototypes */ /* %not-for-header */ /* %ok-for-header */ /* %not-for-header */ /* %tables-yydmap generated elements */ /* %endif */ /* end tables serialization structures and prototypes */ /* %ok-for-header */ /* Default declaration of generated scanner - a define so the user can * easily add parameters. */ #ifndef YY_DECL #define YY_DECL_IS_OURS 1 /* %if-c-only Standard (non-C++) definition */ extern int yylex (void); #define YY_DECL int yylex (void) /* %endif */ /* %if-c++-only C++ definition */ /* %endif */ #endif /* !YY_DECL */ /* Code executed at the beginning of each rule, after yytext and yyleng * have been set up. */ #ifndef YY_USER_ACTION #define YY_USER_ACTION #endif /* Code executed at the end of each rule. */ #ifndef YY_BREAK #define YY_BREAK break; #endif /* %% [6.0] YY_RULE_SETUP definition goes here */ #define YY_RULE_SETUP \ YY_USER_ACTION /* %not-for-header */ /** The main scanner function which does all the work. */ YY_DECL { yy_state_type yy_current_state; char *yy_cp, *yy_bp; int yy_act; /* %% [7.0] user's declarations go here */ #line 115 "attack_scanner.l" /* * syslog banner, eg "Nov 22 09:58:58 freyja sshd[94637]: " * tokenized as: timestamp hostname procname(subname) [pid]: * both the subname and pid parts can be missing * * return SYSLOG_BANNER_PID or SYSLOG_BANNER depending on the presence of [pid] */ /* handle entries with PID and without PID from processes other than sshguard */ #line 80975 "attack_scanner.c" if ( !(yy_init) ) { (yy_init) = 1; #ifdef YY_USER_INIT YY_USER_INIT; #endif if ( ! (yy_start) ) (yy_start) = 1; /* first start state */ if ( ! yyin ) /* %if-c-only */ yyin = stdin; /* %endif */ /* %if-c++-only */ /* %endif */ if ( ! yyout ) /* %if-c-only */ yyout = stdout; /* %endif */ /* %if-c++-only */ /* %endif */ if ( ! YY_CURRENT_BUFFER ) { yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin,YY_BUF_SIZE ); } yy_load_buffer_state( ); } while ( 1 ) /* loops until end-of-file is reached */ { /* %% [8.0] yymore()-related code goes here */ yy_cp = (yy_c_buf_p); /* Support of yytext. */ *yy_cp = (yy_hold_char); /* yy_bp points to the position in yy_ch_buf of the start of * the current run. */ yy_bp = yy_cp; /* %% [9.0] code to set up and find next match goes here */ yy_current_state = (yy_start); yy_match: do { YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ; if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 19008 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; ++yy_cp; } while ( yy_base[yy_current_state] != 331800 ); yy_find_action: /* %% [10.0] code to find the action number goes here */ yy_act = yy_accept[yy_current_state]; if ( yy_act == 0 ) { /* have to back up */ yy_cp = (yy_last_accepting_cpos); yy_current_state = (yy_last_accepting_state); yy_act = yy_accept[yy_current_state]; } YY_DO_BEFORE_ACTION; /* %% [11.0] code for yylineno update goes here */ do_action: /* This label is used only to access EOF actions. */ /* %% [12.0] debug code goes here */ if ( yy_flex_debug ) { if ( yy_act == 0 ) fprintf( stderr, "--scanner backing up\n" ); else if ( yy_act < 88 ) fprintf( stderr, "--accepting rule at line %ld (\"%s\")\n", (long)yy_rule_linenum[yy_act], yytext ); else if ( yy_act == 88 ) fprintf( stderr, "--accepting default rule (\"%s\")\n", yytext ); else if ( yy_act == 89 ) fprintf( stderr, "--(end of buffer or a NUL)\n" ); else fprintf( stderr, "--EOF (start condition %d)\n", YY_START ); } switch ( yy_act ) { /* beginning of action switch */ /* %% [13.0] actions go here */ case 0: /* must back up */ /* undo the effects of YY_DO_BEFORE_ACTION */ *yy_cp = (yy_hold_char); yy_cp = (yy_last_accepting_cpos); yy_current_state = (yy_last_accepting_state); goto yy_find_action; case 1: YY_RULE_SETUP #line 127 "attack_scanner.l" { /* extract PID */ yylval.num = getsyslogpid(yytext, yyleng); return SYSLOG_BANNER_PID; } YY_BREAK case 2: YY_RULE_SETUP #line 133 "attack_scanner.l" { return SYSLOG_BANNER; } YY_BREAK /* metalog banner */ case 3: YY_RULE_SETUP #line 137 "attack_scanner.l" { return METALOG_BANNER; } YY_BREAK /* * socklog banner, eg * "2015-05-27T04:31:28.10040 auth.info: May 27 04:31:28 sshd[30993]: " * * Some strip the redundant timestamp, eg * "2015-05-27T04:31:28.10040 auth.info: sshd[30993]: " */ case 4: YY_RULE_SETUP #line 146 "attack_scanner.l" { yylval.num = getsyslogpid(yytext, yyleng); return SOCKLOG_BANNER_PID; } YY_BREAK case 5: YY_RULE_SETUP #line 151 "attack_scanner.l" { return SOCKLOG_BANNER; } YY_BREAK /* * Busybox syslog banner, e/g/ * "Jun 20 02:18:39 vps auth.info sshd[13482]: " */ case 6: YY_RULE_SETUP #line 157 "attack_scanner.l" { yylval.num = getsyslogpid(yytext, yyleng); return BUSYBOX_SYSLOG_BANNER_PID; } YY_BREAK /* SSH: invalid or rejected user (cross platform [generated by openssh]) */ case 7: /* rule 7 can match eol */ YY_RULE_SETUP #line 163 "attack_scanner.l" { return SSH_INVALUSERPREF; } YY_BREAK case 8: YY_RULE_SETUP #line 164 "attack_scanner.l" { return SSH_INVALUSERPREF; } YY_BREAK /* match disallowed user (not in AllowUsers/AllowGroups or in DenyUsers/DenyGroups) on Linux Ubuntu/FreeBSD */ /* "User tinydns from 1.2.3.4 not allowed because not listed in AllowUsers" */ case 9: YY_RULE_SETUP #line 167 "attack_scanner.l" { BEGIN(ssh_notallowed); return SSH_NOTALLOWEDPREF; } YY_BREAK case 10: YY_RULE_SETUP #line 168 "attack_scanner.l" { BEGIN(INITIAL); return SSH_NOTALLOWEDSUFF; } YY_BREAK /* match disallowed user root (with PermitRootLogin = no) */ /* "ROOT LOGIN REFUSED FROM 1.2.3.4" */ case 11: YY_RULE_SETUP #line 171 "attack_scanner.l" { BEGIN(ssh_notallowed); return SSH_NOTALLOWEDPREF; } YY_BREAK case 12: YY_RULE_SETUP #line 173 "attack_scanner.l" { return SSH_MAXAUTH; } YY_BREAK case 13: YY_RULE_SETUP #line 175 "attack_scanner.l" { return SSH_ADDR_SUFF; } YY_BREAK case 14: YY_RULE_SETUP #line 176 "attack_scanner.l" { return SSH_ADDR_SUFF; } YY_BREAK /* Solaris-own */ case 15: YY_RULE_SETUP #line 179 "attack_scanner.l" { BEGIN(ssh_notallowed); return SSH_NOTALLOWEDPREF; } YY_BREAK case 16: YY_RULE_SETUP #line 180 "attack_scanner.l" { BEGIN(INITIAL); return SSH_NOTALLOWEDSUFF; } YY_BREAK /* get this instead: match invalid login @ Linux Ubuntu */ /* "Failed password for validuser from 1.2.3.4 port 54609 ssh2" */ case 17: /* rule 17 can match eol */ YY_RULE_SETUP #line 184 "attack_scanner.l" { return SSH_LOGINERR_PREF; } YY_BREAK /* wrong password for valid user @ FreeBSD, Debian */ case 18: YY_RULE_SETUP #line 187 "attack_scanner.l" { return SSH_LOGINERR_PAM; } YY_BREAK case 19: YY_RULE_SETUP #line 188 "attack_scanner.l" { return SSH_VIA; } YY_BREAK /* SSH: connections open and closed without auth attempts */ case 20: YY_RULE_SETUP #line 191 "attack_scanner.l" { return SSH_NOIDENTIFSTR; } YY_BREAK case 21: YY_RULE_SETUP #line 192 "attack_scanner.l" { BEGIN(ssh_disconnect); return SSH_DISCONNECT_PREF; } YY_BREAK case 22: YY_RULE_SETUP #line 193 "attack_scanner.l" { BEGIN(ssh_disconnect); return SSH_CONNECTION_CLOSED; } YY_BREAK case 23: YY_RULE_SETUP #line 194 "attack_scanner.l" { BEGIN(INITIAL); return SSH_PREAUTH_SUFF; } YY_BREAK /* SSH: clients connecting with other application protocols */ case 24: YY_RULE_SETUP #line 197 "attack_scanner.l" { BEGIN(ssh_badproto); return SSH_BADPROTOCOLIDENTIF; } YY_BREAK case 25: /* rule 25 can match eol */ YY_RULE_SETUP #line 198 "attack_scanner.l" { BEGIN(INITIAL); return SSH_BADPROTOCOLIDENTIF_SUFF; } YY_BREAK case 26: YY_RULE_SETUP #line 200 "attack_scanner.l" { BEGIN(ssh_badkex); return SSH_BADKEX_PREF; } YY_BREAK case 27: YY_RULE_SETUP #line 201 "attack_scanner.l" { BEGIN(INITIAL); return SSH_BADKEX_SUFF; } YY_BREAK /* SSHGuard */ case 28: YY_RULE_SETUP #line 204 "attack_scanner.l" { BEGIN(sshguard_attack); return SSHGUARD_ATTACK_PREF; } YY_BREAK case 29: YY_RULE_SETUP #line 205 "attack_scanner.l" { BEGIN(INITIAL); return SSHGUARD_ATTACK_SUFF; } YY_BREAK case 30: YY_RULE_SETUP #line 206 "attack_scanner.l" { BEGIN(sshguard_block); return SSHGUARD_BLOCK_PREF; } YY_BREAK case 31: YY_RULE_SETUP #line 207 "attack_scanner.l" { BEGIN(INITIAL); return SSHGUARD_BLOCK_SUFF; } YY_BREAK /* Cucipop */ case 32: /* rule 32 can match eol */ YY_RULE_SETUP #line 210 "attack_scanner.l" { return CUCIPOP_AUTHFAIL; } YY_BREAK /* Exim */ case 33: YY_RULE_SETUP #line 213 "attack_scanner.l" { BEGIN(exim_esmtp_autherr); return EXIM_ESMTP_AUTHFAIL_PREF; } YY_BREAK case 34: YY_RULE_SETUP #line 214 "attack_scanner.l" { BEGIN(INITIAL); return EXIM_ESMTP_AUTHFAIL_SUFF; } YY_BREAK case 35: YY_RULE_SETUP #line 216 "attack_scanner.l" { BEGIN(exim_esmtp_loginerr); return EXIM_ESMTP_LOGINFAIL_PREF; } YY_BREAK case 36: YY_RULE_SETUP #line 217 "attack_scanner.l" { BEGIN(INITIAL); return EXIM_ESMTP_LOGINFAIL_SUFF; } YY_BREAK /* Sendmail */ case 37: YY_RULE_SETUP #line 220 "attack_scanner.l" { BEGIN(sendmail_relaydenied); return SENDMAIL_RELAYDENIED_PREF; } YY_BREAK case 38: YY_RULE_SETUP #line 221 "attack_scanner.l" { BEGIN(INITIAL); return SENDMAIL_RELAYDENIED_SUFF; } YY_BREAK /* Sendmail */ case 39: YY_RULE_SETUP #line 224 "attack_scanner.l" { BEGIN(sendmail_authfailure); return SENDMAIL_AUTHFAILURE_PREF; } YY_BREAK case 40: YY_RULE_SETUP #line 225 "attack_scanner.l" { BEGIN(INITIAL); return SENDMAIL_AUTHFAILURE_SUFF; } YY_BREAK /* dovecot */ case 41: YY_RULE_SETUP #line 228 "attack_scanner.l" { BEGIN(dovecot_loginerr); return DOVECOT_IMAP_LOGINERR_PREF; } YY_BREAK case 42: YY_RULE_SETUP #line 229 "attack_scanner.l" { BEGIN(INITIAL); return DOVECOT_IMAP_LOGINERR_SUFF; } YY_BREAK /* UWimap login errors */ case 43: /* rule 43 can match eol */ YY_RULE_SETUP #line 232 "attack_scanner.l" { return UWIMAP_LOGINERR; } YY_BREAK /* cyrus-imap login error */ case 44: /* rule 44 can match eol */ YY_RULE_SETUP #line 235 "attack_scanner.l" { BEGIN(cyrusimap_loginerr); return CYRUSIMAP_SASL_LOGINERR_PREF; } YY_BREAK case 45: *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 236 "attack_scanner.l" { BEGIN(INITIAL); return CYRUSIMAP_SASL_LOGINERR_SUFF; } YY_BREAK case 46: YY_RULE_SETUP #line 238 "attack_scanner.l" { return CYRUSIMAP_TLS_ERR_PREF; } YY_BREAK case 47: YY_RULE_SETUP #line 239 "attack_scanner.l" { return CYRUSIMAP_TLS_ERR_PREF; } YY_BREAK /* postfix */ case 48: YY_RULE_SETUP #line 242 "attack_scanner.l" { BEGIN(postfix_loginerr); return POSTFIX_SASL_LOGINERR_PREF; } YY_BREAK case 49: YY_RULE_SETUP #line 243 "attack_scanner.l" { BEGIN(INITIAL); return POSTFIX_SASL_LOGINERR_SUFF; } YY_BREAK case 50: YY_RULE_SETUP #line 244 "attack_scanner.l" { return POSTFIX_NO_AUTH_PREF; } YY_BREAK case 51: YY_RULE_SETUP #line 246 "attack_scanner.l" { BEGIN(postfix_greylist); return POSTFIX_GREYLIST; } YY_BREAK case 52: YY_RULE_SETUP #line 247 "attack_scanner.l" { BEGIN(INITIAL); return POSTFIX_GREYLIST_SUFF; } YY_BREAK /* FreeBSD's ftpd login errors */ case 53: YY_RULE_SETUP #line 250 "attack_scanner.l" { BEGIN(freebsdftpd_loginerr); return FREEBSDFTPD_LOGINERR_PREF; } YY_BREAK case 54: YY_RULE_SETUP #line 251 "attack_scanner.l" { BEGIN(INITIAL); return FREEBSDFTPD_LOGINERR_SUFF; } YY_BREAK /* ProFTPd */ case 55: /* rule 55 can match eol */ YY_RULE_SETUP #line 254 "attack_scanner.l" { BEGIN(proftpd_loginerr); return PROFTPD_LOGINERR_PREF; } YY_BREAK case 56: YY_RULE_SETUP #line 255 "attack_scanner.l" { BEGIN(INITIAL); return PROFTPD_LOGINERR_SUFF; } YY_BREAK /* another log entry from ProFTPd */ case 57: YY_RULE_SETUP #line 257 "attack_scanner.l" { BEGIN(proftpd_loginerr); return PROFTPD_LOGINERR_PREF; } YY_BREAK case 58: YY_RULE_SETUP #line 258 "attack_scanner.l" { BEGIN(INITIAL); return PROFTPD_LOGINERR_SUFF; } YY_BREAK /* Pure-FTPd */ case 59: YY_RULE_SETUP #line 261 "attack_scanner.l" { BEGIN(pureftpd_loginerr); return PUREFTPD_LOGINERR_PREF; } YY_BREAK case 60: YY_RULE_SETUP #line 262 "attack_scanner.l" { BEGIN(INITIAL); return PUREFTPD_LOGINERR_SUFF; } YY_BREAK /* vsftpd */ case 61: YY_RULE_SETUP #line 265 "attack_scanner.l" { BEGIN(vsftpd_loginerr); return VSFTPD_LOGINERR_PREF; } YY_BREAK case 62: YY_RULE_SETUP #line 266 "attack_scanner.l" { BEGIN(INITIAL); return VSFTPD_LOGINERR_SUFF; } YY_BREAK /* cockpit */ case 63: YY_RULE_SETUP #line 269 "attack_scanner.l" { BEGIN(cockpit_authfail); return COCKPIT_AUTHFAIL_PREF; } YY_BREAK case 64: YY_RULE_SETUP #line 270 "attack_scanner.l" { BEGIN(INITIAL); return COCKPIT_AUTHFAIL_SUFF; } YY_BREAK /* HTTP Basic AUTH – unauthorized. */ case 65: YY_RULE_SETUP #line 273 "attack_scanner.l" { BEGIN(clf_request_withuser); return CLF_UNAUTHOIRIZED_PREF; } YY_BREAK case 66: YY_RULE_SETUP #line 274 "attack_scanner.l" { BEGIN(INITIAL); return CLF_UNAUTHOIRIZED_SUFF; } YY_BREAK /* Common Log Format */ case 67: YY_RULE_SETUP #line 277 "attack_scanner.l" { BEGIN(clf_request); return CLF_REQUEST_PREF; } YY_BREAK /* HTTP probes for common web services. */ case 68: /* rule 68 can match eol */ YY_RULE_SETUP #line 280 "attack_scanner.l" { BEGIN(INITIAL); return CLFWEBPROBES_BOTSEARCH_SUFF; } YY_BREAK /* WordPress. HTTP 200 OK responses to /wp-login.php via POST are failed requests, but GET or 302 aren’t. */ case 69: YY_RULE_SETUP #line 284 "attack_scanner.l" { BEGIN(INITIAL); return CLF_WORDPRESS_SUFF; } YY_BREAK /* OpenSMTPD. */ /* Unsupported command when attempting to log in. */ case 70: YY_RULE_SETUP #line 288 "attack_scanner.l" { BEGIN(opensmtpd_failedcmd); return OPENSMTPD_FAILED_CMD_PREF; } YY_BREAK case 71: YY_RULE_SETUP #line 289 "attack_scanner.l" { BEGIN(INITIAL); return OPENSMTPD_UNSUPPORTED_CMD_SUFF; } YY_BREAK /* Bad credentials */ case 72: YY_RULE_SETUP #line 291 "attack_scanner.l" { BEGIN(INITIAL); return OPENSMTPD_AUTHFAIL_SUFF; } YY_BREAK /* Courier IMAP/POP */ case 73: /* rule 73 can match eol */ YY_RULE_SETUP #line 294 "attack_scanner.l" { return COURIER_AUTHFAIL_PREF; } YY_BREAK /* OpenVPN */ case 74: YY_RULE_SETUP #line 297 "attack_scanner.l" { return OPENVPN_TLS_ERR_SUFF; } YY_BREAK /** COMMON-USE TOKENS do not touch these **/ /* an IPv4 address */ case 75: YY_RULE_SETUP #line 302 "attack_scanner.l" { yylval.str = yytext; return IPv4; } YY_BREAK case 76: YY_RULE_SETUP #line 303 "attack_scanner.l" { yylval.str = strrchr(yytext, ':')+1; return IPv4; } YY_BREAK /* an IPv6 address */ /* standard | clouds implied | embedded IPv4 */ case 77: YY_RULE_SETUP #line 307 "attack_scanner.l" { yylval.str = strdup(yytext); return IPv6; } YY_BREAK /* an host address (PTR) */ case 78: YY_RULE_SETUP #line 310 "attack_scanner.l" { yylval.str = yytext; return HOSTADDR; } YY_BREAK case 79: YY_RULE_SETUP #line 311 "attack_scanner.l" { yylval.num = (int)strtol(yytext, (char **)NULL, 10); return INTEGER; } YY_BREAK /* syslog timestamp */ /*{MONTH}\ +{DAYNO}\ +{HOUR}:{MINPS}:{MINPS} { return TIMESTAMP_SYSLOG; }*/ case 80: YY_RULE_SETUP #line 314 "attack_scanner.l" { return TIMESTAMP_SYSLOG; } YY_BREAK /* TAI64 timestamp */ case 81: YY_RULE_SETUP #line 317 "attack_scanner.l" { return AT_TIMESTAMP_TAI64; } YY_BREAK case 82: YY_RULE_SETUP #line 318 "attack_scanner.l" { return TIMESTAMP_TAI64; } YY_BREAK /* iso8601 timestamp */ case 83: YY_RULE_SETUP #line 321 "attack_scanner.l" { return TIMESTAMP_ISO8601; } YY_BREAK case 84: YY_RULE_SETUP #line 323 "attack_scanner.l" return REPETITIONS; YY_BREAK /*[^ :]+:[^ ]+ { return FACILITYPRIORITY; } */ case 85: YY_RULE_SETUP #line 326 "attack_scanner.l" { yylval.str = yytext; return WORD; } YY_BREAK case 86: /* rule 86 can match eol */ YY_RULE_SETUP #line 327 "attack_scanner.l" /* eat blanks */ YY_BREAK /* literals */ /*\n { return NEWLINE; } */ case 87: YY_RULE_SETUP #line 330 "attack_scanner.l" { return yytext[0]; } YY_BREAK /** end of COMMON-USE TOKENS **/ case 88: YY_RULE_SETUP #line 334 "attack_scanner.l" ECHO; YY_BREAK #line 81613 "attack_scanner.c" case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(ssh_notallowed): case YY_STATE_EOF(ssh_reversemap): case YY_STATE_EOF(ssh_disconnect): case YY_STATE_EOF(ssh_badproto): case YY_STATE_EOF(ssh_badkex): case YY_STATE_EOF(cockpit_authfail): case YY_STATE_EOF(sshguard_attack): case YY_STATE_EOF(sshguard_block): case YY_STATE_EOF(dovecot_loginerr): case YY_STATE_EOF(cyrusimap_loginerr): case YY_STATE_EOF(exim_esmtp_autherr): case YY_STATE_EOF(exim_esmtp_loginerr): case YY_STATE_EOF(sendmail_relaydenied): case YY_STATE_EOF(sendmail_authfailure): case YY_STATE_EOF(postfix_loginerr): case YY_STATE_EOF(postfix_greylist): case YY_STATE_EOF(opensmtpd_failedcmd): case YY_STATE_EOF(freebsdftpd_loginerr): case YY_STATE_EOF(proftpd_loginerr): case YY_STATE_EOF(pureftpd_loginerr): case YY_STATE_EOF(vsftpd_loginerr): case YY_STATE_EOF(clf_request): case YY_STATE_EOF(clf_request_withuser): case YY_STATE_EOF(clf_unauhtorized): case YY_STATE_EOF(clfwebprobes_botsearch): yyterminate(); case YY_END_OF_BUFFER: { /* Amount of text matched not including the EOB char. */ int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1; /* Undo the effects of YY_DO_BEFORE_ACTION. */ *yy_cp = (yy_hold_char); YY_RESTORE_YY_MORE_OFFSET if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) { /* We're scanning a new file or input source. It's * possible that this happened because the user * just pointed yyin at a new source and called * yylex(). If so, then we have to assure * consistency between YY_CURRENT_BUFFER and our * globals. Here is the right place to do so, because * this is the first action (other than possibly a * back-up) that will match for the new input source. */ (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; } /* Note that here we test for yy_c_buf_p "<=" to the position * of the first EOB in the buffer, since yy_c_buf_p will * already have been incremented past the NUL character * (since all states make transitions on EOB to the * end-of-buffer state). Contrast this with the test * in input(). */ if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) { /* This was really a NUL. */ yy_state_type yy_next_state; (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); /* Okay, we're now positioned to make the NUL * transition. We couldn't have * yy_get_previous_state() go ahead and do it * for us because it doesn't know how to deal * with the possibility of jamming (and we don't * want to build jamming into it because then it * will run more slowly). */ yy_next_state = yy_try_NUL_trans( yy_current_state ); yy_bp = (yytext_ptr) + YY_MORE_ADJ; if ( yy_next_state ) { /* Consume the NUL. */ yy_cp = ++(yy_c_buf_p); yy_current_state = yy_next_state; goto yy_match; } else { /* %% [14.0] code to do back-up for compressed tables and set up yy_cp goes here */ yy_cp = (yy_c_buf_p); goto yy_find_action; } } else switch ( yy_get_next_buffer( ) ) { case EOB_ACT_END_OF_FILE: { (yy_did_buffer_switch_on_eof) = 0; if ( yywrap( ) ) { /* Note: because we've taken care in * yy_get_next_buffer() to have set up * yytext, we can now set up * yy_c_buf_p so that if some total * hoser (like flex itself) wants to * call the scanner after we return the * YY_NULL, it'll still work - another * YY_NULL will get returned. */ (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ; yy_act = YY_STATE_EOF(YY_START); goto do_action; } else { if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; } break; } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_match; case EOB_ACT_LAST_MATCH: (yy_c_buf_p) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)]; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_find_action; } break; } default: YY_FATAL_ERROR( "fatal flex scanner internal error--no action found" ); } /* end of action switch */ } /* end of scanning one token */ } /* end of yylex */ /* %ok-for-header */ /* %if-c++-only */ /* %not-for-header */ /* %ok-for-header */ /* %endif */ /* yy_get_next_buffer - try to read in a new buffer * * Returns a code representing an action: * EOB_ACT_LAST_MATCH - * EOB_ACT_CONTINUE_SCAN - continue scanning from current position * EOB_ACT_END_OF_FILE - end of file */ /* %if-c-only */ static int yy_get_next_buffer (void) /* %endif */ /* %if-c++-only */ /* %endif */ { char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; char *source = (yytext_ptr); int number_to_move, i; int ret_val; if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) { /* Don't try to fill the buffer, so this is an EOF. */ if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 ) { /* We matched a single character, the EOB, so * treat this as a final EOF. */ return EOB_ACT_END_OF_FILE; } else { /* We matched some text prior to the EOB, first * process it. */ return EOB_ACT_LAST_MATCH; } } /* Try to read more data. */ /* First move last chars to start of buffer. */ number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1; for ( i = 0; i < number_to_move; ++i ) *(dest++) = *(source++); if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) /* don't do the read, it's not guaranteed to return an EOF, * just force an EOF */ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0; else { yy_size_t num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ /* just a shorter name for the current buffer */ YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE; int yy_c_buf_p_offset = (int) ((yy_c_buf_p) - b->yy_ch_buf); if ( b->yy_is_our_buffer ) { yy_size_t new_size = b->yy_buf_size * 2; if ( new_size <= 0 ) b->yy_buf_size += b->yy_buf_size / 8; else b->yy_buf_size *= 2; b->yy_ch_buf = (char *) /* Include room in for 2 EOB chars. */ yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 ); } else /* Can't grow it, we don't own it. */ b->yy_ch_buf = 0; if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "fatal error - scanner input buffer overflow" ); (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset]; num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; } if ( num_to_read > YY_READ_BUF_SIZE ) num_to_read = YY_READ_BUF_SIZE; /* Read in more data. */ YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), (yy_n_chars), num_to_read ); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } if ( (yy_n_chars) == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; yyrestart(yyin ); } else { ret_val = EOB_ACT_LAST_MATCH; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { /* Extend the array by 50%, plus the number we really need. */ yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1); YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ); if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); } (yy_n_chars) += number_to_move; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR; (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; return ret_val; } /* yy_get_previous_state - get the state just before the EOB char was reached */ /* %if-c-only */ /* %not-for-header */ static yy_state_type yy_get_previous_state (void) /* %endif */ /* %if-c++-only */ /* %endif */ { yy_state_type yy_current_state; char *yy_cp; /* %% [15.0] code to get the start state into yy_current_state goes here */ yy_current_state = (yy_start); for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) { /* %% [16.0] code to find the next state goes here */ YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 19008 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; } return yy_current_state; } /* yy_try_NUL_trans - try to make a transition on the NUL character * * synopsis * next_state = yy_try_NUL_trans( current_state ); */ /* %if-c-only */ static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state ) /* %endif */ /* %if-c++-only */ /* %endif */ { int yy_is_jam; /* %% [17.0] code to find the next state, and perhaps do backing up, goes here */ char *yy_cp = (yy_c_buf_p); YY_CHAR yy_c = 1; if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 19008 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; yy_is_jam = (yy_current_state == 19007); return yy_is_jam ? 0 : yy_current_state; } /* %if-c-only */ /* %endif */ /* %if-c-only */ #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (void) #else static int input (void) #endif /* %endif */ /* %if-c++-only */ /* %endif */ { int c; *(yy_c_buf_p) = (yy_hold_char); if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR ) { /* yy_c_buf_p now points to the character we want to return. * If this occurs *before* the EOB characters, then it's a * valid NUL; if not, then we've hit the end of the buffer. */ if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) /* This was really a NUL. */ *(yy_c_buf_p) = '\0'; else { /* need more input */ yy_size_t offset = (yy_c_buf_p) - (yytext_ptr); ++(yy_c_buf_p); switch ( yy_get_next_buffer( ) ) { case EOB_ACT_LAST_MATCH: /* This happens because yy_g_n_b() * sees that we've accumulated a * token and flags that we need to * try matching the token before * proceeding. But for input(), * there's no matching to consider. * So convert the EOB_ACT_LAST_MATCH * to EOB_ACT_END_OF_FILE. */ /* Reset buffer status. */ yyrestart(yyin ); /*FALLTHROUGH*/ case EOB_ACT_END_OF_FILE: { if ( yywrap( ) ) return EOF; if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(); #else return input(); #endif } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + offset; break; } } } c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */ *(yy_c_buf_p) = '\0'; /* preserve yytext */ (yy_hold_char) = *++(yy_c_buf_p); /* %% [19.0] update BOL and yylineno */ return c; } /* %if-c-only */ #endif /* ifndef YY_NO_INPUT */ /* %endif */ /** Immediately switch to a different input stream. * @param input_file A readable stream. * * @note This function does not reset the start condition to @c INITIAL . */ /* %if-c-only */ void yyrestart (FILE * input_file ) /* %endif */ /* %if-c++-only */ /* %endif */ { if ( ! YY_CURRENT_BUFFER ){ yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin,YY_BUF_SIZE ); } yy_init_buffer(YY_CURRENT_BUFFER,input_file ); yy_load_buffer_state( ); } /** Switch to a different input buffer. * @param new_buffer The new input buffer. * */ /* %if-c-only */ void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ) /* %endif */ /* %if-c++-only */ /* %endif */ { /* TODO. We should be able to replace this entire function body * with * yypop_buffer_state(); * yypush_buffer_state(new_buffer); */ yyensure_buffer_stack (); if ( YY_CURRENT_BUFFER == new_buffer ) return; if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } YY_CURRENT_BUFFER_LVALUE = new_buffer; yy_load_buffer_state( ); /* We don't actually know whether we did this switch during * EOF (yywrap()) processing, but the only time this flag * is looked at is after yywrap() is called, so it's safe * to go ahead and always set it. */ (yy_did_buffer_switch_on_eof) = 1; } /* %if-c-only */ static void yy_load_buffer_state (void) /* %endif */ /* %if-c++-only */ /* %endif */ { (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; (yy_hold_char) = *(yy_c_buf_p); } /** Allocate and initialize an input buffer state. * @param file A readable stream. * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. * * @return the allocated buffer state. */ /* %if-c-only */ YY_BUFFER_STATE yy_create_buffer (FILE * file, int size ) /* %endif */ /* %if-c++-only */ /* %endif */ { YY_BUFFER_STATE b; b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_buf_size = size; /* yy_ch_buf has to be 2 characters longer than the size given because * we need to put in 2 end-of-buffer characters. */ b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 ); if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_is_our_buffer = 1; yy_init_buffer(b,file ); return b; } /** Destroy the buffer. * @param b a buffer created with yy_create_buffer() * */ /* %if-c-only */ void yy_delete_buffer (YY_BUFFER_STATE b ) /* %endif */ /* %if-c++-only */ /* %endif */ { if ( ! b ) return; if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) yyfree((void *) b->yy_ch_buf ); yyfree((void *) b ); } /* Initializes or reinitializes a buffer. * This function is sometimes called more than once on the same buffer, * such as during a yyrestart() or at EOF. */ /* %if-c-only */ static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file ) /* %endif */ /* %if-c++-only */ /* %endif */ { int oerrno = errno; yy_flush_buffer(b ); b->yy_input_file = file; b->yy_fill_buffer = 1; /* If b is the current buffer, then yy_init_buffer was _probably_ * called from yyrestart() or through yy_get_next_buffer. * In that case, we don't want to reset the lineno or column. */ if (b != YY_CURRENT_BUFFER){ b->yy_bs_lineno = 1; b->yy_bs_column = 0; } /* %if-c-only */ b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; /* %endif */ /* %if-c++-only */ /* %endif */ errno = oerrno; } /** Discard all buffered characters. On the next scan, YY_INPUT will be called. * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. * */ /* %if-c-only */ void yy_flush_buffer (YY_BUFFER_STATE b ) /* %endif */ /* %if-c++-only */ /* %endif */ { if ( ! b ) return; b->yy_n_chars = 0; /* We always need two end-of-buffer characters. The first causes * a transition to the end-of-buffer state. The second causes * a jam in that state. */ b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; b->yy_buf_pos = &b->yy_ch_buf[0]; b->yy_at_bol = 1; b->yy_buffer_status = YY_BUFFER_NEW; if ( b == YY_CURRENT_BUFFER ) yy_load_buffer_state( ); } /* %if-c-or-c++ */ /** Pushes the new state onto the stack. The new state becomes * the current state. This function will allocate the stack * if necessary. * @param new_buffer The new state. * */ /* %if-c-only */ void yypush_buffer_state (YY_BUFFER_STATE new_buffer ) /* %endif */ /* %if-c++-only */ /* %endif */ { if (new_buffer == NULL) return; yyensure_buffer_stack(); /* This block is copied from yy_switch_to_buffer. */ if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } /* Only push if top exists. Otherwise, replace top. */ if (YY_CURRENT_BUFFER) (yy_buffer_stack_top)++; YY_CURRENT_BUFFER_LVALUE = new_buffer; /* copied from yy_switch_to_buffer. */ yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } /* %endif */ /* %if-c-or-c++ */ /** Removes and deletes the top of the stack, if present. * The next element becomes the new top. * */ /* %if-c-only */ void yypop_buffer_state (void) /* %endif */ /* %if-c++-only */ /* %endif */ { if (!YY_CURRENT_BUFFER) return; yy_delete_buffer(YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; if ((yy_buffer_stack_top) > 0) --(yy_buffer_stack_top); if (YY_CURRENT_BUFFER) { yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } } /* %endif */ /* %if-c-or-c++ */ /* Allocates the stack if it does not exist. * Guarantees space for at least one push. */ /* %if-c-only */ static void yyensure_buffer_stack (void) /* %endif */ /* %if-c++-only */ /* %endif */ { yy_size_t num_to_alloc; if (!(yy_buffer_stack)) { /* First allocation is just for 2 elements, since we don't know if this * scanner will even need a stack. We use 2 instead of 1 to avoid an * immediate realloc on the next call. */ num_to_alloc = 1; (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc (num_to_alloc * sizeof(struct yy_buffer_state*) ); if ( ! (yy_buffer_stack) ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; (yy_buffer_stack_top) = 0; return; } if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){ /* Increase the buffer to prepare for a possible push. */ int grow_size = 8 /* arbitrary grow size */; num_to_alloc = (yy_buffer_stack_max) + grow_size; (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc ((yy_buffer_stack), num_to_alloc * sizeof(struct yy_buffer_state*) ); if ( ! (yy_buffer_stack) ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); /* zero only the new slots.*/ memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; } } /* %endif */ /* %if-c-only */ /** Setup the input buffer state to scan directly from a user-specified character buffer. * @param base the character buffer * @param size the size in bytes of the character buffer * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) { YY_BUFFER_STATE b; if ( size < 2 || base[size-2] != YY_END_OF_BUFFER_CHAR || base[size-1] != YY_END_OF_BUFFER_CHAR ) /* They forgot to leave room for the EOB's. */ return 0; b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ b->yy_buf_pos = b->yy_ch_buf = base; b->yy_is_our_buffer = 0; b->yy_input_file = 0; b->yy_n_chars = b->yy_buf_size; b->yy_is_interactive = 0; b->yy_at_bol = 1; b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; yy_switch_to_buffer(b ); return b; } /* %endif */ /* %if-c-only */ /** Setup the input buffer state to scan a string. The next call to yylex() will * scan from a @e copy of @a str. * @param yystr a NUL-terminated string to scan * * @return the newly allocated buffer state object. * @note If you want to scan bytes that may contain NUL values, then use * yy_scan_bytes() instead. */ YY_BUFFER_STATE yy_scan_string (yyconst char * yystr ) { return yy_scan_bytes(yystr,strlen(yystr) ); } /* %endif */ /* %if-c-only */ /** Setup the input buffer state to scan the given bytes. The next call to yylex() will * scan from a @e copy of @a bytes. * @param yybytes the byte buffer to scan * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes. * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, yy_size_t _yybytes_len ) { YY_BUFFER_STATE b; char *buf; yy_size_t n; yy_size_t i; /* Get memory for full buffer, including space for trailing EOB's. */ n = _yybytes_len + 2; buf = (char *) yyalloc(n ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); for ( i = 0; i < _yybytes_len; ++i ) buf[i] = yybytes[i]; buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; b = yy_scan_buffer(buf,n ); if ( ! b ) YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); /* It's okay to grow etc. this buffer, and we should throw it * away when we're done. */ b->yy_is_our_buffer = 1; return b; } /* %endif */ #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif /* %if-c-only */ static void yy_fatal_error (yyconst char* msg ) { (void) fprintf( stderr, "%s\n", msg ); exit( YY_EXIT_FAILURE ); } /* %endif */ /* %if-c++-only */ /* %endif */ /* Redefine yyless() so it works in section 3 code. */ #undef yyless #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ yytext[yyleng] = (yy_hold_char); \ (yy_c_buf_p) = yytext + yyless_macro_arg; \ (yy_hold_char) = *(yy_c_buf_p); \ *(yy_c_buf_p) = '\0'; \ yyleng = yyless_macro_arg; \ } \ while ( 0 ) /* Accessor methods (get/set functions) to struct members. */ /* %if-c-only */ /* %if-reentrant */ /* %endif */ /** Get the current line number. * */ int yyget_lineno (void) { return yylineno; } /** Get the input stream. * */ FILE *yyget_in (void) { return yyin; } /** Get the output stream. * */ FILE *yyget_out (void) { return yyout; } /** Get the length of the current token. * */ yy_size_t yyget_leng (void) { return yyleng; } /** Get the current token. * */ char *yyget_text (void) { return yytext; } /* %if-reentrant */ /* %endif */ /** Set the current line number. * @param line_number * */ void yyset_lineno (int line_number ) { yylineno = line_number; } /** Set the input stream. This does not discard the current * input buffer. * @param in_str A readable stream. * * @see yy_switch_to_buffer */ void yyset_in (FILE * in_str ) { yyin = in_str ; } void yyset_out (FILE * out_str ) { yyout = out_str ; } int yyget_debug (void) { return yy_flex_debug; } void yyset_debug (int bdebug ) { yy_flex_debug = bdebug ; } /* %endif */ /* %if-reentrant */ /* %if-bison-bridge */ /* %endif */ /* %endif if-c-only */ /* %if-c-only */ static int yy_init_globals (void) { /* Initialization is the same as for the non-reentrant scanner. * This function is called from yylex_destroy(), so don't allocate here. */ (yy_buffer_stack) = 0; (yy_buffer_stack_top) = 0; (yy_buffer_stack_max) = 0; (yy_c_buf_p) = (char *) 0; (yy_init) = 0; (yy_start) = 0; /* Defined in main.c */ #ifdef YY_STDINIT yyin = stdin; yyout = stdout; #else yyin = (FILE *) 0; yyout = (FILE *) 0; #endif /* For future reference: Set errno on error, since we are called by * yylex_init() */ return 0; } /* %endif */ /* %if-c-only SNIP! this currently causes conflicts with the c++ scanner */ /* yylex_destroy is for both reentrant and non-reentrant scanners. */ int yylex_destroy (void) { /* Pop the buffer stack, destroying each element. */ while(YY_CURRENT_BUFFER){ yy_delete_buffer(YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; yypop_buffer_state(); } /* Destroy the stack itself. */ yyfree((yy_buffer_stack) ); (yy_buffer_stack) = NULL; /* Reset the globals. This is important in a non-reentrant scanner so the next time * yylex() is called, initialization will occur. */ yy_init_globals( ); /* %if-reentrant */ /* %endif */ return 0; } /* %endif */ /* * Internal utility routines. */ #ifndef yytext_ptr static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) { int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * s ) { int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif void *yyalloc (yy_size_t size ) { return (void *) malloc( size ); } void *yyrealloc (void * ptr, yy_size_t size ) { /* The cast to (char *) in the following accommodates both * implementations that use char* generic pointers, and those * that use void* generic pointers. It works with the latter * because both ANSI C and C++ allow castless assignment from * any pointer type to void*, and deal with argument conversions * as though doing an assignment. */ return (void *) realloc( (char *) ptr, size ); } void yyfree (void * ptr ) { free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ } /* %if-tables-serialization definitions */ /* %define-yytables The name for this specific scanner's tables. */ #define YYTABLES_NAME "yytables" /* %endif */ /* %ok-for-header */ #line 334 "attack_scanner.l" void scanner_init(char *str) { yy_scan_string(str); } void scanner_fin() { yy_delete_buffer(YY_CURRENT_BUFFER); } static int getsyslogpid(char *syslogbanner, int length) { int i; syslogbanner[length-2] = '\0'; for (i = length; syslogbanner[i] != '['; i--); return strtol(& syslogbanner[i+1], (char **)NULL, 10); } sshguard-2.3.1/src/parser/parser.h000644 001751 001751 00000002303 13405335557 017755 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #pragma once /* also define global var yydebug = 1 for enabling debugging at runtime */ #define YYDEBUG 1 #ifdef YYDEBUG extern int yydebug; extern int yy_flex_debug; #endif #include "attack.h" /** * Parse a single line of a log for an attack. If an attack is found, return * zero and store the attack in the given pointer. */ int parse_line(char *str, attack_t *attack); sshguard-2.3.1/src/parser/test-sshg-parser000755 001751 001751 00000000057 13405335557 021455 0ustar00kevinzkevinz000000 000000 #!/bin/sh ./sshg-parser -t < $srcdir/tests.txt sshguard-2.3.1/src/parser/attack_parser.c000644 001751 001751 00000204243 13411746464 021306 0ustar00kevinzkevinz000000 000000 /* A Bison parser, made by GNU Bison 3.2.2. */ /* Bison implementation for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2015, 2018 Free Software Foundation, Inc. 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 3 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, see . */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* C LALR(1) parser skeleton written by Richard Stallman, by simplifying the original so-called "semantic" parser. */ /* All symbols defined below should begin with yy or YY, to avoid infringing on user name space. This should be done even for local variables, as they might otherwise be expanded by user macros. There are some unavoidable exceptions within include files to define necessary library symbols; they are noted "INFRINGES ON USER NAME SPACE" below. */ /* Undocumented macros, especially those whose name start with YY_, are private implementation details. Do not rely on them. */ /* Identify Bison output. */ #define YYBISON 1 /* Bison version. */ #define YYBISON_VERSION "3.2.2" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" /* Pure parsers. */ #define YYPURE 0 /* Push parsers. */ #define YYPUSH 0 /* Pull parsers. */ #define YYPULL 1 /* First part of user prologue. */ #line 1 "attack_parser.y" /* yacc.c:338 */ /* * Copyright (c) 2007,2008,2009,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #include #include "parser.h" #define DEFAULT_ATTACKS_DANGEROUSNESS 10 /* stuff exported by the scanner */ extern void scanner_init(); extern void scanner_fin(); extern int yylex(); static void yyerror(attack_t *, const char *); #line 106 "attack_parser.c" /* yacc.c:338 */ # ifndef YY_NULLPTR # if defined __cplusplus # if 201103L <= __cplusplus # define YY_NULLPTR nullptr # else # define YY_NULLPTR 0 # endif # else # define YY_NULLPTR ((void*)0) # endif # endif /* Enabling verbose error messages. */ #ifdef YYERROR_VERBOSE # undef YYERROR_VERBOSE # define YYERROR_VERBOSE 1 #else # define YYERROR_VERBOSE 0 #endif /* In a future release of Bison, this section will be replaced by #include "y.tab.h". */ #ifndef YY_YY_ATTACK_PARSER_H_INCLUDED # define YY_YY_ATTACK_PARSER_H_INCLUDED /* Debug traces. */ #ifndef YYDEBUG # define YYDEBUG 0 #endif #if YYDEBUG extern int yydebug; #endif /* Token type. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE enum yytokentype { IPv4 = 258, IPv6 = 259, HOSTADDR = 260, WORD = 261, INTEGER = 262, SYSLOG_BANNER_PID = 263, SOCKLOG_BANNER_PID = 264, BUSYBOX_SYSLOG_BANNER_PID = 265, SYSLOG_BANNER = 266, TIMESTAMP_SYSLOG = 267, TIMESTAMP_ISO8601 = 268, TIMESTAMP_TAI64 = 269, AT_TIMESTAMP_TAI64 = 270, METALOG_BANNER = 271, SOCKLOG_BANNER = 272, REPETITIONS = 273, HTTP_REQUEST = 274, HTTP_VERSION = 275, HTTP_REDIRECT = 276, HTTP_AUTHFAIL = 277, HTTP_CLIERROR = 278, HTTP_BOTSEARCH_WEBMAIL = 279, HTTP_BOTSEARCH_PHPMYADMIN = 280, HTTP_BOTSEARCH_WORDPRESS = 281, HTTP_BOTSEARCH = 282, SSH_INVALUSERPREF = 283, SSH_NOTALLOWEDPREF = 284, SSH_NOTALLOWEDSUFF = 285, SSH_LOGINERR_PREF = 286, SSH_LOGINERR_PAM = 287, SSH_VIA = 288, SSH_MAXAUTH = 289, SSH_ADDR_SUFF = 290, SSH_NOIDENTIFSTR = 291, SSH_BADPROTOCOLIDENTIF = 292, SSH_BADPROTOCOLIDENTIF_SUFF = 293, SSH_BADKEX_PREF = 294, SSH_BADKEX_SUFF = 295, SSH_DISCONNECT_PREF = 296, SSH_CONNECTION_CLOSED = 297, SSH_PREAUTH_SUFF = 298, SSHGUARD_ATTACK_PREF = 299, SSHGUARD_ATTACK_SUFF = 300, SSHGUARD_BLOCK_PREF = 301, SSHGUARD_BLOCK_SUFF = 302, DOVECOT_IMAP_LOGINERR_PREF = 303, DOVECOT_IMAP_LOGINERR_SUFF = 304, UWIMAP_LOGINERR = 305, CYRUSIMAP_SASL_LOGINERR_PREF = 306, CYRUSIMAP_SASL_LOGINERR_SUFF = 307, CYRUSIMAP_TLS_ERR_PREF = 308, CUCIPOP_AUTHFAIL = 309, EXIM_ESMTP_AUTHFAIL_PREF = 310, EXIM_ESMTP_AUTHFAIL_SUFF = 311, EXIM_ESMTP_LOGINFAIL_PREF = 312, EXIM_ESMTP_LOGINFAIL_SUFF = 313, SENDMAIL_RELAYDENIED_PREF = 314, SENDMAIL_RELAYDENIED_SUFF = 315, SENDMAIL_AUTHFAILURE_PREF = 316, SENDMAIL_AUTHFAILURE_SUFF = 317, POSTFIX_NO_AUTH_PREF = 318, POSTFIX_SASL_LOGINERR_PREF = 319, POSTFIX_SASL_LOGINERR_SUFF = 320, POSTFIX_GREYLIST = 321, POSTFIX_GREYLIST_SUFF = 322, FREEBSDFTPD_LOGINERR_PREF = 323, FREEBSDFTPD_LOGINERR_SUFF = 324, PROFTPD_LOGINERR_PREF = 325, PROFTPD_LOGINERR_SUFF = 326, PUREFTPD_LOGINERR_PREF = 327, PUREFTPD_LOGINERR_SUFF = 328, VSFTPD_LOGINERR_PREF = 329, VSFTPD_LOGINERR_SUFF = 330, COCKPIT_AUTHFAIL_PREF = 331, COCKPIT_AUTHFAIL_SUFF = 332, CLF_REQUEST_PREF = 333, CLF_UNAUTHOIRIZED_PREF = 334, CLF_UNAUTHOIRIZED_SUFF = 335, CLFWEBPROBES_BOTSEARCH_SUFF = 336, CLF_WORDPRESS_SUFF = 337, OPENSMTPD_FAILED_CMD_PREF = 338, OPENSMTPD_AUTHFAIL_SUFF = 339, OPENSMTPD_UNSUPPORTED_CMD_SUFF = 340, COURIER_AUTHFAIL_PREF = 341, OPENVPN_TLS_ERR_SUFF = 342 }; #endif /* Tokens. */ #define IPv4 258 #define IPv6 259 #define HOSTADDR 260 #define WORD 261 #define INTEGER 262 #define SYSLOG_BANNER_PID 263 #define SOCKLOG_BANNER_PID 264 #define BUSYBOX_SYSLOG_BANNER_PID 265 #define SYSLOG_BANNER 266 #define TIMESTAMP_SYSLOG 267 #define TIMESTAMP_ISO8601 268 #define TIMESTAMP_TAI64 269 #define AT_TIMESTAMP_TAI64 270 #define METALOG_BANNER 271 #define SOCKLOG_BANNER 272 #define REPETITIONS 273 #define HTTP_REQUEST 274 #define HTTP_VERSION 275 #define HTTP_REDIRECT 276 #define HTTP_AUTHFAIL 277 #define HTTP_CLIERROR 278 #define HTTP_BOTSEARCH_WEBMAIL 279 #define HTTP_BOTSEARCH_PHPMYADMIN 280 #define HTTP_BOTSEARCH_WORDPRESS 281 #define HTTP_BOTSEARCH 282 #define SSH_INVALUSERPREF 283 #define SSH_NOTALLOWEDPREF 284 #define SSH_NOTALLOWEDSUFF 285 #define SSH_LOGINERR_PREF 286 #define SSH_LOGINERR_PAM 287 #define SSH_VIA 288 #define SSH_MAXAUTH 289 #define SSH_ADDR_SUFF 290 #define SSH_NOIDENTIFSTR 291 #define SSH_BADPROTOCOLIDENTIF 292 #define SSH_BADPROTOCOLIDENTIF_SUFF 293 #define SSH_BADKEX_PREF 294 #define SSH_BADKEX_SUFF 295 #define SSH_DISCONNECT_PREF 296 #define SSH_CONNECTION_CLOSED 297 #define SSH_PREAUTH_SUFF 298 #define SSHGUARD_ATTACK_PREF 299 #define SSHGUARD_ATTACK_SUFF 300 #define SSHGUARD_BLOCK_PREF 301 #define SSHGUARD_BLOCK_SUFF 302 #define DOVECOT_IMAP_LOGINERR_PREF 303 #define DOVECOT_IMAP_LOGINERR_SUFF 304 #define UWIMAP_LOGINERR 305 #define CYRUSIMAP_SASL_LOGINERR_PREF 306 #define CYRUSIMAP_SASL_LOGINERR_SUFF 307 #define CYRUSIMAP_TLS_ERR_PREF 308 #define CUCIPOP_AUTHFAIL 309 #define EXIM_ESMTP_AUTHFAIL_PREF 310 #define EXIM_ESMTP_AUTHFAIL_SUFF 311 #define EXIM_ESMTP_LOGINFAIL_PREF 312 #define EXIM_ESMTP_LOGINFAIL_SUFF 313 #define SENDMAIL_RELAYDENIED_PREF 314 #define SENDMAIL_RELAYDENIED_SUFF 315 #define SENDMAIL_AUTHFAILURE_PREF 316 #define SENDMAIL_AUTHFAILURE_SUFF 317 #define POSTFIX_NO_AUTH_PREF 318 #define POSTFIX_SASL_LOGINERR_PREF 319 #define POSTFIX_SASL_LOGINERR_SUFF 320 #define POSTFIX_GREYLIST 321 #define POSTFIX_GREYLIST_SUFF 322 #define FREEBSDFTPD_LOGINERR_PREF 323 #define FREEBSDFTPD_LOGINERR_SUFF 324 #define PROFTPD_LOGINERR_PREF 325 #define PROFTPD_LOGINERR_SUFF 326 #define PUREFTPD_LOGINERR_PREF 327 #define PUREFTPD_LOGINERR_SUFF 328 #define VSFTPD_LOGINERR_PREF 329 #define VSFTPD_LOGINERR_SUFF 330 #define COCKPIT_AUTHFAIL_PREF 331 #define COCKPIT_AUTHFAIL_SUFF 332 #define CLF_REQUEST_PREF 333 #define CLF_UNAUTHOIRIZED_PREF 334 #define CLF_UNAUTHOIRIZED_SUFF 335 #define CLFWEBPROBES_BOTSEARCH_SUFF 336 #define CLF_WORDPRESS_SUFF 337 #define OPENSMTPD_FAILED_CMD_PREF 338 #define OPENSMTPD_AUTHFAIL_SUFF 339 #define OPENSMTPD_UNSUPPORTED_CMD_SUFF 340 #define COURIER_AUTHFAIL_PREF 341 #define OPENVPN_TLS_ERR_SUFF 342 /* Value type. */ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED union YYSTYPE { #line 43 "attack_parser.y" /* yacc.c:353 */ char *str; int num; #line 328 "attack_parser.c" /* yacc.c:353 */ }; typedef union YYSTYPE YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 # define YYSTYPE_IS_DECLARED 1 #endif extern YYSTYPE yylval; int yyparse (attack_t *attack); #endif /* !YY_YY_ATTACK_PARSER_H_INCLUDED */ #ifdef short # undef short #endif #ifdef YYTYPE_UINT8 typedef YYTYPE_UINT8 yytype_uint8; #else typedef unsigned char yytype_uint8; #endif #ifdef YYTYPE_INT8 typedef YYTYPE_INT8 yytype_int8; #else typedef signed char yytype_int8; #endif #ifdef YYTYPE_UINT16 typedef YYTYPE_UINT16 yytype_uint16; #else typedef unsigned short yytype_uint16; #endif #ifdef YYTYPE_INT16 typedef YYTYPE_INT16 yytype_int16; #else typedef short yytype_int16; #endif #ifndef YYSIZE_T # ifdef __SIZE_TYPE__ # define YYSIZE_T __SIZE_TYPE__ # elif defined size_t # define YYSIZE_T size_t # elif ! defined YYSIZE_T # include /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # else # define YYSIZE_T unsigned # endif #endif #define YYSIZE_MAXIMUM ((YYSIZE_T) -1) #ifndef YY_ # if defined YYENABLE_NLS && YYENABLE_NLS # if ENABLE_NLS # include /* INFRINGES ON USER NAME SPACE */ # define YY_(Msgid) dgettext ("bison-runtime", Msgid) # endif # endif # ifndef YY_ # define YY_(Msgid) Msgid # endif #endif #ifndef YY_ATTRIBUTE # if (defined __GNUC__ \ && (2 < __GNUC__ || (__GNUC__ == 2 && 96 <= __GNUC_MINOR__))) \ || defined __SUNPRO_C && 0x5110 <= __SUNPRO_C # define YY_ATTRIBUTE(Spec) __attribute__(Spec) # else # define YY_ATTRIBUTE(Spec) /* empty */ # endif #endif #ifndef YY_ATTRIBUTE_PURE # define YY_ATTRIBUTE_PURE YY_ATTRIBUTE ((__pure__)) #endif #ifndef YY_ATTRIBUTE_UNUSED # define YY_ATTRIBUTE_UNUSED YY_ATTRIBUTE ((__unused__)) #endif /* Suppress unused-variable warnings by "using" E. */ #if ! defined lint || defined __GNUC__ # define YYUSE(E) ((void) (E)) #else # define YYUSE(E) /* empty */ #endif #if defined __GNUC__ && ! defined __ICC && 407 <= __GNUC__ * 100 + __GNUC_MINOR__ /* Suppress an incorrect diagnostic about yylval being uninitialized. */ # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \ _Pragma ("GCC diagnostic push") \ _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")\ _Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"") # define YY_IGNORE_MAYBE_UNINITIALIZED_END \ _Pragma ("GCC diagnostic pop") #else # define YY_INITIAL_VALUE(Value) Value #endif #ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN # define YY_IGNORE_MAYBE_UNINITIALIZED_END #endif #ifndef YY_INITIAL_VALUE # define YY_INITIAL_VALUE(Value) /* Nothing. */ #endif #if ! defined yyoverflow || YYERROR_VERBOSE /* The parser invokes alloca or malloc; define the necessary symbols. */ # ifdef YYSTACK_USE_ALLOCA # if YYSTACK_USE_ALLOCA # ifdef __GNUC__ # define YYSTACK_ALLOC __builtin_alloca # elif defined __BUILTIN_VA_ARG_INCR # include /* INFRINGES ON USER NAME SPACE */ # elif defined _AIX # define YYSTACK_ALLOC __alloca # elif defined _MSC_VER # include /* INFRINGES ON USER NAME SPACE */ # define alloca _alloca # else # define YYSTACK_ALLOC alloca # if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS # include /* INFRINGES ON USER NAME SPACE */ /* Use EXIT_SUCCESS as a witness for stdlib.h. */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # endif # endif # endif # ifdef YYSTACK_ALLOC /* Pacify GCC's 'empty if-body' warning. */ # define YYSTACK_FREE(Ptr) do { /* empty */; } while (0) # ifndef YYSTACK_ALLOC_MAXIMUM /* The OS might guarantee only one guard page at the bottom of the stack, and a page size can be as small as 4096 bytes. So we cannot safely invoke alloca (N) if N exceeds 4096. Use a slightly smaller number to allow for a few compiler-allocated temporary stack slots. */ # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ # endif # else # define YYSTACK_ALLOC YYMALLOC # define YYSTACK_FREE YYFREE # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM # endif # if (defined __cplusplus && ! defined EXIT_SUCCESS \ && ! ((defined YYMALLOC || defined malloc) \ && (defined YYFREE || defined free))) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # ifndef YYMALLOC # define YYMALLOC malloc # if ! defined malloc && ! defined EXIT_SUCCESS void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ # endif # endif # ifndef YYFREE # define YYFREE free # if ! defined free && ! defined EXIT_SUCCESS void free (void *); /* INFRINGES ON USER NAME SPACE */ # endif # endif # endif #endif /* ! defined yyoverflow || YYERROR_VERBOSE */ #if (! defined yyoverflow \ && (! defined __cplusplus \ || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) /* A type that is properly aligned for any stack member. */ union yyalloc { yytype_int16 yyss_alloc; YYSTYPE yyvs_alloc; }; /* The size of the maximum gap between one aligned stack and the next. */ # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) /* The size of an array large to enough to hold all stacks, each with N elements. */ # define YYSTACK_BYTES(N) \ ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ + YYSTACK_GAP_MAXIMUM) # define YYCOPY_NEEDED 1 /* Relocate STACK from its old location to the new one. The local variables YYSIZE and YYSTACKSIZE give the old and new number of elements in the stack, and YYPTR gives the new location of the stack. Advance YYPTR to a properly aligned location for the next stack. */ # define YYSTACK_RELOCATE(Stack_alloc, Stack) \ do \ { \ YYSIZE_T yynewbytes; \ YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ Stack = &yyptr->Stack_alloc; \ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ yyptr += yynewbytes / sizeof (*yyptr); \ } \ while (0) #endif #if defined YYCOPY_NEEDED && YYCOPY_NEEDED /* Copy COUNT objects from SRC to DST. The source and destination do not overlap. */ # ifndef YYCOPY # if defined __GNUC__ && 1 < __GNUC__ # define YYCOPY(Dst, Src, Count) \ __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src))) # else # define YYCOPY(Dst, Src, Count) \ do \ { \ YYSIZE_T yyi; \ for (yyi = 0; yyi < (Count); yyi++) \ (Dst)[yyi] = (Src)[yyi]; \ } \ while (0) # endif # endif #endif /* !YYCOPY_NEEDED */ /* YYFINAL -- State number of the termination state. */ #define YYFINAL 120 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 267 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 91 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 36 /* YYNRULES -- Number of rules. */ #define YYNRULES 89 /* YYNSTATES -- Number of states. */ #define YYNSTATES 167 /* YYTRANSLATE[YYX] -- Symbol number corresponding to YYX as returned by yylex, with out-of-bounds checking. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 342 #define YYTRANSLATE(YYX) \ ((unsigned) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) /* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM as returned by yylex, without out-of-bounds checking. */ static const yytype_uint8 yytranslate[] = { 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 88, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 89, 2, 90, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87 }; #if YYDEBUG /* YYRLINE[YYN] -- Source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 116, 116, 117, 118, 119, 120, 121, 134, 137, 138, 139, 144, 148, 153, 154, 159, 164, 167, 168, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 196, 200, 205, 211, 223, 225, 226, 227, 228, 233, 234, 236, 240, 241, 242, 243, 247, 248, 249, 250, 254, 258, 263, 264, 269, 274, 278, 279, 284, 289, 290, 294, 295, 299, 300, 301, 306, 311, 316, 321, 326, 327, 332, 337, 342, 347, 348, 353, 358, 359 }; #endif #if YYDEBUG || YYERROR_VERBOSE || 0 /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. First, the terminals, then, starting at YYNTOKENS, nonterminals. */ static const char *const yytname[] = { "$end", "error", "$undefined", "IPv4", "IPv6", "HOSTADDR", "WORD", "INTEGER", "SYSLOG_BANNER_PID", "SOCKLOG_BANNER_PID", "BUSYBOX_SYSLOG_BANNER_PID", "SYSLOG_BANNER", "TIMESTAMP_SYSLOG", "TIMESTAMP_ISO8601", "TIMESTAMP_TAI64", "AT_TIMESTAMP_TAI64", "METALOG_BANNER", "SOCKLOG_BANNER", "REPETITIONS", "HTTP_REQUEST", "HTTP_VERSION", "HTTP_REDIRECT", "HTTP_AUTHFAIL", "HTTP_CLIERROR", "HTTP_BOTSEARCH_WEBMAIL", "HTTP_BOTSEARCH_PHPMYADMIN", "HTTP_BOTSEARCH_WORDPRESS", "HTTP_BOTSEARCH", "SSH_INVALUSERPREF", "SSH_NOTALLOWEDPREF", "SSH_NOTALLOWEDSUFF", "SSH_LOGINERR_PREF", "SSH_LOGINERR_PAM", "SSH_VIA", "SSH_MAXAUTH", "SSH_ADDR_SUFF", "SSH_NOIDENTIFSTR", "SSH_BADPROTOCOLIDENTIF", "SSH_BADPROTOCOLIDENTIF_SUFF", "SSH_BADKEX_PREF", "SSH_BADKEX_SUFF", "SSH_DISCONNECT_PREF", "SSH_CONNECTION_CLOSED", "SSH_PREAUTH_SUFF", "SSHGUARD_ATTACK_PREF", "SSHGUARD_ATTACK_SUFF", "SSHGUARD_BLOCK_PREF", "SSHGUARD_BLOCK_SUFF", "DOVECOT_IMAP_LOGINERR_PREF", "DOVECOT_IMAP_LOGINERR_SUFF", "UWIMAP_LOGINERR", "CYRUSIMAP_SASL_LOGINERR_PREF", "CYRUSIMAP_SASL_LOGINERR_SUFF", "CYRUSIMAP_TLS_ERR_PREF", "CUCIPOP_AUTHFAIL", "EXIM_ESMTP_AUTHFAIL_PREF", "EXIM_ESMTP_AUTHFAIL_SUFF", "EXIM_ESMTP_LOGINFAIL_PREF", "EXIM_ESMTP_LOGINFAIL_SUFF", "SENDMAIL_RELAYDENIED_PREF", "SENDMAIL_RELAYDENIED_SUFF", "SENDMAIL_AUTHFAILURE_PREF", "SENDMAIL_AUTHFAILURE_SUFF", "POSTFIX_NO_AUTH_PREF", "POSTFIX_SASL_LOGINERR_PREF", "POSTFIX_SASL_LOGINERR_SUFF", "POSTFIX_GREYLIST", "POSTFIX_GREYLIST_SUFF", "FREEBSDFTPD_LOGINERR_PREF", "FREEBSDFTPD_LOGINERR_SUFF", "PROFTPD_LOGINERR_PREF", "PROFTPD_LOGINERR_SUFF", "PUREFTPD_LOGINERR_PREF", "PUREFTPD_LOGINERR_SUFF", "VSFTPD_LOGINERR_PREF", "VSFTPD_LOGINERR_SUFF", "COCKPIT_AUTHFAIL_PREF", "COCKPIT_AUTHFAIL_SUFF", "CLF_REQUEST_PREF", "CLF_UNAUTHOIRIZED_PREF", "CLF_UNAUTHOIRIZED_SUFF", "CLFWEBPROBES_BOTSEARCH_SUFF", "CLF_WORDPRESS_SUFF", "OPENSMTPD_FAILED_CMD_PREF", "OPENSMTPD_AUTHFAIL_SUFF", "OPENSMTPD_UNSUPPORTED_CMD_SUFF", "COURIER_AUTHFAIL_PREF", "OPENVPN_TLS_ERR_SUFF", "'%'", "'['", "']'", "$accept", "text", "syslogent", "multilogent", "metalogent", "socklogent", "busyboxent", "logmsg", "repetition_suffix", "msg_single", "addr", "sshmsg", "ssh_illegaluser", "ssh_authfail", "ssh_noidentifstring", "ssh_badprotocol", "ssh_badkex", "sshguardmsg", "dovecotmsg", "uwimapmsg", "cyrusimapmsg", "cucipopmsg", "eximmsg", "sendmailmsg", "postfixmsg", "freebsdftpdmsg", "proftpdmsg", "pureftpdmsg", "vsftpdmsg", "cockpitmsg", "clfunauhtdmsg", "clfwebprobesmsg", "clfwordpressmsg", "opensmtpdmsg", "couriermsg", "openvpnmsg", YY_NULLPTR }; #endif # ifdef YYPRINT /* YYTOKNUM[NUM] -- (External) token number corresponding to the (internal) symbol number NUM (which must be that of a token). */ static const yytype_uint16 yytoknum[] = { 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 37, 91, 93 }; # endif #define YYPACT_NINF -76 #define yypact_value_is_default(Yystate) \ (!!((Yystate) == (-76))) #define YYTABLE_NINF -1 #define yytable_value_is_error(Yytable_value) \ 0 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ static const yytype_int16 yypact[] = { 29, -76, -75, -76, 178, 178, 178, 178, 104, 178, 178, 178, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, -74, 116, -59, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, -48, 116, 59, -76, -76, -76, -76, -76, -76, 25, -23, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, 56, -76, -76, -76, -76, 178, -76, -76, -76, -76, 34, 37, 39, 45, 41, 46, 47, 54, 44, 53, 27, 51, 55, 116, 48, 116, -76, 60, 64, 42, 49, 33, 52, 57, 58, 63, 66, 50, 65, -49, 116, 38, -76, -76, -76, 32, 67, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, 40, -76, 61, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, 70, 62, -76, -76, -76, -76, -76, -76, -76 }; /* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM. Performed when YYTABLE does not specify something else to do. Zero means the default is an error. */ static const yytype_uint8 yydefact[] = { 0, 40, 41, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 4, 5, 6, 7, 18, 0, 20, 44, 45, 46, 47, 48, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 0, 8, 14, 16, 9, 0, 10, 12, 13, 15, 49, 0, 0, 53, 0, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 0, 0, 0, 1, 19, 17, 0, 0, 88, 42, 11, 50, 51, 52, 54, 55, 57, 60, 61, 58, 59, 62, 63, 64, 0, 66, 0, 69, 70, 71, 72, 74, 73, 75, 76, 77, 78, 79, 80, 85, 86, 0, 0, 83, 84, 82, 65, 67, 87, 89 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int8 yypgoto[] = { -76, -76, -76, -76, -76, -76, -76, 43, -76, -76, -12, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76, -76 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int8 yydefgoto[] = { -1, 44, 45, 46, 47, 48, 49, 50, 122, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77 }; /* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If positive, shift that token. If negative, reduce the rule whose number is the opposite. If YYTABLE_NINF, syntax error. */ static const yytype_uint8 yytable[] = { 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 78, 102, 101, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 103, 119, 1, 2, 3, 156, 157, 4, 5, 6, 7, 118, 8, 121, 9, 10, 11, 79, 80, 81, 82, 84, 85, 86, 87, 123, 124, 12, 13, 120, 14, 15, 126, 16, 125, 17, 18, 129, 19, 128, 20, 21, 138, 22, 130, 23, 132, 24, 131, 25, 26, 133, 27, 28, 29, 134, 30, 136, 31, 141, 32, 143, 33, 34, 135, 35, 137, 36, 139, 37, 142, 38, 146, 39, 140, 40, 158, 1, 2, 3, 83, 147, 41, 160, 161, 42, 144, 149, 43, 1, 2, 3, 145, 148, 150, 154, 127, 151, 159, 0, 163, 0, 12, 13, 152, 14, 15, 0, 16, 153, 17, 18, 155, 19, 0, 20, 21, 162, 22, 166, 23, 164, 24, 0, 25, 26, 0, 27, 28, 29, 165, 30, 0, 31, 0, 32, 0, 33, 34, 0, 35, 0, 36, 0, 37, 0, 38, 0, 39, 0, 40, 1, 2, 3, 0, 0, 0, 41, 0, 0, 42, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 13, 0, 14, 15, 0, 16, 0, 17, 18, 0, 19, 0, 20, 21, 0, 22, 0, 23, 0, 24, 0, 25, 26, 0, 27, 28, 29, 0, 30, 0, 31, 0, 32, 0, 33, 34, 0, 35, 0, 36, 0, 37, 0, 38, 0, 39, 0, 40, 0, 0, 0, 0, 0, 0, 41, 0, 0, 42, 0, 0, 43 }; static const yytype_int8 yycheck[] = { 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 88, 26, 89, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 89, 43, 3, 4, 5, 84, 85, 8, 9, 10, 11, 89, 13, 18, 15, 16, 17, 4, 5, 6, 7, 8, 9, 10, 11, 78, 79, 28, 29, 0, 31, 32, 6, 34, 87, 36, 37, 30, 39, 35, 41, 42, 45, 44, 35, 46, 35, 48, 33, 50, 51, 35, 53, 54, 55, 38, 57, 43, 59, 101, 61, 103, 63, 64, 40, 66, 43, 68, 47, 70, 52, 72, 60, 74, 49, 76, 118, 3, 4, 5, 6, 62, 83, 81, 82, 86, 56, 65, 89, 3, 4, 5, 58, 90, 67, 75, 83, 69, 90, -1, 90, -1, 28, 29, 71, 31, 32, -1, 34, 73, 36, 37, 77, 39, -1, 41, 42, 80, 44, 87, 46, 90, 48, -1, 50, 51, -1, 53, 54, 55, 90, 57, -1, 59, -1, 61, -1, 63, 64, -1, 66, -1, 68, -1, 70, -1, 72, -1, 74, -1, 76, 3, 4, 5, -1, -1, -1, 83, -1, -1, 86, -1, -1, 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, -1, 31, 32, -1, 34, -1, 36, 37, -1, 39, -1, 41, 42, -1, 44, -1, 46, -1, 48, -1, 50, 51, -1, 53, 54, 55, -1, 57, -1, 59, -1, 61, -1, 63, 64, -1, 66, -1, 68, -1, 70, -1, 72, -1, 74, -1, 76, -1, -1, -1, -1, -1, -1, 83, -1, -1, 86, -1, -1, 89 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const yytype_uint8 yystos[] = { 0, 3, 4, 5, 8, 9, 10, 11, 13, 15, 16, 17, 28, 29, 31, 32, 34, 36, 37, 39, 41, 42, 44, 46, 48, 50, 51, 53, 54, 55, 57, 59, 61, 63, 64, 66, 68, 70, 72, 74, 76, 83, 86, 89, 92, 93, 94, 95, 96, 97, 98, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 88, 98, 98, 98, 98, 6, 98, 98, 98, 98, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 89, 101, 89, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 89, 101, 0, 18, 99, 78, 79, 87, 6, 98, 35, 30, 35, 33, 35, 35, 38, 40, 43, 43, 45, 47, 49, 101, 52, 101, 56, 58, 60, 62, 90, 65, 67, 69, 71, 73, 75, 77, 84, 85, 101, 90, 81, 82, 80, 90, 90, 90, 87 }; /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint8 yyr1[] = { 0, 91, 92, 92, 92, 92, 92, 92, 93, 93, 93, 93, 94, 95, 96, 96, 97, 98, 99, 99, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 101, 101, 101, 101, 102, 102, 102, 102, 102, 103, 103, 103, 104, 104, 104, 104, 105, 105, 105, 105, 106, 107, 108, 108, 109, 110, 111, 111, 112, 113, 113, 114, 114, 115, 115, 115, 116, 117, 118, 119, 120, 120, 121, 122, 123, 124, 124, 125, 126, 126 }; /* YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. */ static const yytype_uint8 yyr2[] = { 0, 2, 1, 1, 1, 1, 1, 1, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 2, 3, 3, 3, 2, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 4, 2, 4 }; #define yyerrok (yyerrstatus = 0) #define yyclearin (yychar = YYEMPTY) #define YYEMPTY (-2) #define YYEOF 0 #define YYACCEPT goto yyacceptlab #define YYABORT goto yyabortlab #define YYERROR goto yyerrorlab #define YYRECOVERING() (!!yyerrstatus) #define YYBACKUP(Token, Value) \ do \ if (yychar == YYEMPTY) \ { \ yychar = (Token); \ yylval = (Value); \ YYPOPSTACK (yylen); \ yystate = *yyssp; \ goto yybackup; \ } \ else \ { \ yyerror (attack, YY_("syntax error: cannot back up")); \ YYERROR; \ } \ while (0) /* Error token number */ #define YYTERROR 1 #define YYERRCODE 256 /* Enable debugging if requested. */ #if YYDEBUG # ifndef YYFPRINTF # include /* INFRINGES ON USER NAME SPACE */ # define YYFPRINTF fprintf # endif # define YYDPRINTF(Args) \ do { \ if (yydebug) \ YYFPRINTF Args; \ } while (0) /* This macro is provided for backward compatibility. */ #ifndef YY_LOCATION_PRINT # define YY_LOCATION_PRINT(File, Loc) ((void) 0) #endif # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \ do { \ if (yydebug) \ { \ YYFPRINTF (stderr, "%s ", Title); \ yy_symbol_print (stderr, \ Type, Value, attack); \ YYFPRINTF (stderr, "\n"); \ } \ } while (0) /*-----------------------------------. | Print this symbol's value on YYO. | `-----------------------------------*/ static void yy_symbol_value_print (FILE *yyo, int yytype, YYSTYPE const * const yyvaluep, attack_t *attack) { FILE *yyoutput = yyo; YYUSE (yyoutput); YYUSE (attack); if (!yyvaluep) return; # ifdef YYPRINT if (yytype < YYNTOKENS) YYPRINT (yyo, yytoknum[yytype], *yyvaluep); # endif YYUSE (yytype); } /*---------------------------. | Print this symbol on YYO. | `---------------------------*/ static void yy_symbol_print (FILE *yyo, int yytype, YYSTYPE const * const yyvaluep, attack_t *attack) { YYFPRINTF (yyo, "%s %s (", yytype < YYNTOKENS ? "token" : "nterm", yytname[yytype]); yy_symbol_value_print (yyo, yytype, yyvaluep, attack); YYFPRINTF (yyo, ")"); } /*------------------------------------------------------------------. | yy_stack_print -- Print the state stack from its BOTTOM up to its | | TOP (included). | `------------------------------------------------------------------*/ static void yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop) { YYFPRINTF (stderr, "Stack now"); for (; yybottom <= yytop; yybottom++) { int yybot = *yybottom; YYFPRINTF (stderr, " %d", yybot); } YYFPRINTF (stderr, "\n"); } # define YY_STACK_PRINT(Bottom, Top) \ do { \ if (yydebug) \ yy_stack_print ((Bottom), (Top)); \ } while (0) /*------------------------------------------------. | Report that the YYRULE is going to be reduced. | `------------------------------------------------*/ static void yy_reduce_print (yytype_int16 *yyssp, YYSTYPE *yyvsp, int yyrule, attack_t *attack) { unsigned long yylno = yyrline[yyrule]; int yynrhs = yyr2[yyrule]; int yyi; YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", yyrule - 1, yylno); /* The symbols being reduced. */ for (yyi = 0; yyi < yynrhs; yyi++) { YYFPRINTF (stderr, " $%d = ", yyi + 1); yy_symbol_print (stderr, yystos[yyssp[yyi + 1 - yynrhs]], &(yyvsp[(yyi + 1) - (yynrhs)]) , attack); YYFPRINTF (stderr, "\n"); } } # define YY_REDUCE_PRINT(Rule) \ do { \ if (yydebug) \ yy_reduce_print (yyssp, yyvsp, Rule, attack); \ } while (0) /* Nonzero means print parse trace. It is left uninitialized so that multiple parsers can coexist. */ int yydebug; #else /* !YYDEBUG */ # define YYDPRINTF(Args) # define YY_SYMBOL_PRINT(Title, Type, Value, Location) # define YY_STACK_PRINT(Bottom, Top) # define YY_REDUCE_PRINT(Rule) #endif /* !YYDEBUG */ /* YYINITDEPTH -- initial size of the parser's stacks. */ #ifndef YYINITDEPTH # define YYINITDEPTH 200 #endif /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only if the built-in stack extension method is used). Do not make this value too large; the results are undefined if YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH) evaluated with infinite-precision integer arithmetic. */ #ifndef YYMAXDEPTH # define YYMAXDEPTH 10000 #endif #if YYERROR_VERBOSE # ifndef yystrlen # if defined __GLIBC__ && defined _STRING_H # define yystrlen strlen # else /* Return the length of YYSTR. */ static YYSIZE_T yystrlen (const char *yystr) { YYSIZE_T yylen; for (yylen = 0; yystr[yylen]; yylen++) continue; return yylen; } # endif # endif # ifndef yystpcpy # if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE # define yystpcpy stpcpy # else /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in YYDEST. */ static char * yystpcpy (char *yydest, const char *yysrc) { char *yyd = yydest; const char *yys = yysrc; while ((*yyd++ = *yys++) != '\0') continue; return yyd - 1; } # endif # endif # ifndef yytnamerr /* Copy to YYRES the contents of YYSTR after stripping away unnecessary quotes and backslashes, so that it's suitable for yyerror. The heuristic is that double-quoting is unnecessary unless the string contains an apostrophe, a comma, or backslash (other than backslash-backslash). YYSTR is taken from yytname. If YYRES is null, do not copy; instead, return the length of what the result would have been. */ static YYSIZE_T yytnamerr (char *yyres, const char *yystr) { if (*yystr == '"') { YYSIZE_T yyn = 0; char const *yyp = yystr; for (;;) switch (*++yyp) { case '\'': case ',': goto do_not_strip_quotes; case '\\': if (*++yyp != '\\') goto do_not_strip_quotes; /* Fall through. */ default: if (yyres) yyres[yyn] = *yyp; yyn++; break; case '"': if (yyres) yyres[yyn] = '\0'; return yyn; } do_not_strip_quotes: ; } if (! yyres) return yystrlen (yystr); return (YYSIZE_T) (yystpcpy (yyres, yystr) - yyres); } # endif /* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message about the unexpected token YYTOKEN for the state stack whose top is YYSSP. Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is not large enough to hold the message. In that case, also set *YYMSG_ALLOC to the required number of bytes. Return 2 if the required number of bytes is too large to store. */ static int yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg, yytype_int16 *yyssp, int yytoken) { YYSIZE_T yysize0 = yytnamerr (YY_NULLPTR, yytname[yytoken]); YYSIZE_T yysize = yysize0; enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; /* Internationalized format string. */ const char *yyformat = YY_NULLPTR; /* Arguments of yyformat. */ char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; /* Number of reported tokens (one for the "unexpected", one per "expected"). */ int yycount = 0; /* There are many possibilities here to consider: - If this state is a consistent state with a default action, then the only way this function was invoked is if the default action is an error action. In that case, don't check for expected tokens because there are none. - The only way there can be no lookahead present (in yychar) is if this state is a consistent state with a default action. Thus, detecting the absence of a lookahead is sufficient to determine that there is no unexpected or expected token to report. In that case, just report a simple "syntax error". - Don't assume there isn't a lookahead just because this state is a consistent state with a default action. There might have been a previous inconsistent state, consistent state with a non-default action, or user semantic action that manipulated yychar. - Of course, the expected token list depends on states to have correct lookahead information, and it depends on the parser not to perform extra reductions after fetching a lookahead from the scanner and before detecting a syntax error. Thus, state merging (from LALR or IELR) and default reductions corrupt the expected token list. However, the list is correct for canonical LR with one exception: it will still contain any token that will not be accepted due to an error action in a later state. */ if (yytoken != YYEMPTY) { int yyn = yypact[*yyssp]; yyarg[yycount++] = yytname[yytoken]; if (!yypact_value_is_default (yyn)) { /* Start YYX at -YYN if negative to avoid negative indexes in YYCHECK. In other words, skip the first -YYN actions for this state because they are default actions. */ int yyxbegin = yyn < 0 ? -yyn : 0; /* Stay within bounds of both yycheck and yytname. */ int yychecklim = YYLAST - yyn + 1; int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; int yyx; for (yyx = yyxbegin; yyx < yyxend; ++yyx) if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR && !yytable_value_is_error (yytable[yyx + yyn])) { if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) { yycount = 1; yysize = yysize0; break; } yyarg[yycount++] = yytname[yyx]; { YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULLPTR, yytname[yyx]); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; } } } } switch (yycount) { # define YYCASE_(N, S) \ case N: \ yyformat = S; \ break default: /* Avoid compiler warnings. */ YYCASE_(0, YY_("syntax error")); YYCASE_(1, YY_("syntax error, unexpected %s")); YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); # undef YYCASE_ } { YYSIZE_T yysize1 = yysize + yystrlen (yyformat); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; } if (*yymsg_alloc < yysize) { *yymsg_alloc = 2 * yysize; if (! (yysize <= *yymsg_alloc && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM)) *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM; return 1; } /* Avoid sprintf, as that infringes on the user's name space. Don't have undefined behavior even if the translation produced a string with the wrong number of "%s"s. */ { char *yyp = *yymsg; int yyi = 0; while ((*yyp = *yyformat) != '\0') if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount) { yyp += yytnamerr (yyp, yyarg[yyi++]); yyformat += 2; } else { yyp++; yyformat++; } } return 0; } #endif /* YYERROR_VERBOSE */ /*-----------------------------------------------. | Release the memory associated to this symbol. | `-----------------------------------------------*/ static void yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, attack_t *attack) { YYUSE (yyvaluep); YYUSE (attack); if (!yymsg) yymsg = "Deleting"; YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN YYUSE (yytype); YY_IGNORE_MAYBE_UNINITIALIZED_END } /* The lookahead symbol. */ int yychar; /* The semantic value of the lookahead symbol. */ YYSTYPE yylval; /* Number of syntax errors so far. */ int yynerrs; /*----------. | yyparse. | `----------*/ int yyparse (attack_t *attack) { int yystate; /* Number of tokens to shift before error messages enabled. */ int yyerrstatus; /* The stacks and their tools: 'yyss': related to states. 'yyvs': related to semantic values. Refer to the stacks through separate pointers, to allow yyoverflow to reallocate them elsewhere. */ /* The state stack. */ yytype_int16 yyssa[YYINITDEPTH]; yytype_int16 *yyss; yytype_int16 *yyssp; /* The semantic value stack. */ YYSTYPE yyvsa[YYINITDEPTH]; YYSTYPE *yyvs; YYSTYPE *yyvsp; YYSIZE_T yystacksize; int yyn; int yyresult; /* Lookahead token as an internal (translated) token number. */ int yytoken = 0; /* The variables used to return semantic value and location from the action routines. */ YYSTYPE yyval; #if YYERROR_VERBOSE /* Buffer for error messages, and its allocated size. */ char yymsgbuf[128]; char *yymsg = yymsgbuf; YYSIZE_T yymsg_alloc = sizeof yymsgbuf; #endif #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) /* The number of symbols on the RHS of the reduced rule. Keep to zero when no symbol should be popped. */ int yylen = 0; yyssp = yyss = yyssa; yyvsp = yyvs = yyvsa; yystacksize = YYINITDEPTH; YYDPRINTF ((stderr, "Starting parse\n")); yystate = 0; yyerrstatus = 0; yynerrs = 0; yychar = YYEMPTY; /* Cause a token to be read. */ goto yysetstate; /*------------------------------------------------------------. | yynewstate -- Push a new state, which is found in yystate. | `------------------------------------------------------------*/ yynewstate: /* In all cases, when you get here, the value and location stacks have just been pushed. So pushing a state here evens the stacks. */ yyssp++; yysetstate: *yyssp = (yytype_int16) yystate; if (yyss + yystacksize - 1 <= yyssp) { /* Get the current used size of the three stacks, in elements. */ YYSIZE_T yysize = (YYSIZE_T) (yyssp - yyss + 1); #ifdef yyoverflow { /* Give user a chance to reallocate the stack. Use copies of these so that the &'s don't force the real ones into memory. */ YYSTYPE *yyvs1 = yyvs; yytype_int16 *yyss1 = yyss; /* Each stack pointer address is followed by the size of the data in use in that stack, in bytes. This used to be a conditional around just the two extra args, but that might be undefined if yyoverflow is a macro. */ yyoverflow (YY_("memory exhausted"), &yyss1, yysize * sizeof (*yyssp), &yyvs1, yysize * sizeof (*yyvsp), &yystacksize); yyss = yyss1; yyvs = yyvs1; } #else /* no yyoverflow */ # ifndef YYSTACK_RELOCATE goto yyexhaustedlab; # else /* Extend the stack our own way. */ if (YYMAXDEPTH <= yystacksize) goto yyexhaustedlab; yystacksize *= 2; if (YYMAXDEPTH < yystacksize) yystacksize = YYMAXDEPTH; { yytype_int16 *yyss1 = yyss; union yyalloc *yyptr = (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); if (! yyptr) goto yyexhaustedlab; YYSTACK_RELOCATE (yyss_alloc, yyss); YYSTACK_RELOCATE (yyvs_alloc, yyvs); # undef YYSTACK_RELOCATE if (yyss1 != yyssa) YYSTACK_FREE (yyss1); } # endif #endif /* no yyoverflow */ yyssp = yyss + yysize - 1; yyvsp = yyvs + yysize - 1; YYDPRINTF ((stderr, "Stack size increased to %lu\n", (unsigned long) yystacksize)); if (yyss + yystacksize - 1 <= yyssp) YYABORT; } YYDPRINTF ((stderr, "Entering state %d\n", yystate)); if (yystate == YYFINAL) YYACCEPT; goto yybackup; /*-----------. | yybackup. | `-----------*/ yybackup: /* Do appropriate processing given the current state. Read a lookahead token if we need one and don't already have one. */ /* First try to decide what to do without reference to lookahead token. */ yyn = yypact[yystate]; if (yypact_value_is_default (yyn)) goto yydefault; /* Not known => get a lookahead token if don't already have one. */ /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token: ")); yychar = yylex (); } if (yychar <= YYEOF) { yychar = yytoken = YYEOF; YYDPRINTF ((stderr, "Now at end of input.\n")); } else { yytoken = YYTRANSLATE (yychar); YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc); } /* If the proper action on seeing token YYTOKEN is to reduce or to detect an error, take that action. */ yyn += yytoken; if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken) goto yydefault; yyn = yytable[yyn]; if (yyn <= 0) { if (yytable_value_is_error (yyn)) goto yyerrlab; yyn = -yyn; goto yyreduce; } /* Count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; /* Shift the lookahead token. */ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); /* Discard the shifted token. */ yychar = YYEMPTY; yystate = yyn; YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN *++yyvsp = yylval; YY_IGNORE_MAYBE_UNINITIALIZED_END goto yynewstate; /*-----------------------------------------------------------. | yydefault -- do the default action for the current state. | `-----------------------------------------------------------*/ yydefault: yyn = yydefact[yystate]; if (yyn == 0) goto yyerrlab; goto yyreduce; /*-----------------------------. | yyreduce -- Do a reduction. | `-----------------------------*/ yyreduce: /* yyn is the number of a rule to reduce with. */ yylen = yyr2[yyn]; /* If YYLEN is nonzero, implement the default value of the action: '$$ = $1'. Otherwise, the following line sets YYVAL to garbage. This behavior is undocumented and Bison users should not rely upon it. Assigning to YYVAL unconditionally makes the parser a bit smaller, and it avoids a GCC warning that YYVAL may be used uninitialized. */ yyval = yyvsp[1-yylen]; YY_REDUCE_PRINT (yyn); switch (yyn) { case 20: #line 172 "attack_parser.y" /* yacc.c:1645 */ { attack->service = SERVICES_SSH; } #line 1588 "attack_parser.c" /* yacc.c:1645 */ break; case 21: #line 173 "attack_parser.y" /* yacc.c:1645 */ { attack->service = SERVICES_SSHGUARD; } #line 1594 "attack_parser.c" /* yacc.c:1645 */ break; case 22: #line 174 "attack_parser.y" /* yacc.c:1645 */ { attack->service = SERVICES_DOVECOT; } #line 1600 "attack_parser.c" /* yacc.c:1645 */ break; case 23: #line 175 "attack_parser.y" /* yacc.c:1645 */ { attack->service = SERVICES_UWIMAP; } #line 1606 "attack_parser.c" /* yacc.c:1645 */ break; case 24: #line 176 "attack_parser.y" /* yacc.c:1645 */ { attack->service = SERVICES_CYRUSIMAP; } #line 1612 "attack_parser.c" /* yacc.c:1645 */ break; case 25: #line 177 "attack_parser.y" /* yacc.c:1645 */ { attack->service = SERVICES_CUCIPOP; } #line 1618 "attack_parser.c" /* yacc.c:1645 */ break; case 26: #line 178 "attack_parser.y" /* yacc.c:1645 */ { attack->service = SERVICES_EXIM; } #line 1624 "attack_parser.c" /* yacc.c:1645 */ break; case 27: #line 179 "attack_parser.y" /* yacc.c:1645 */ { attack->service = SERVICES_SENDMAIL; } #line 1630 "attack_parser.c" /* yacc.c:1645 */ break; case 28: #line 180 "attack_parser.y" /* yacc.c:1645 */ { attack->service = SERVICES_POSTFIX; } #line 1636 "attack_parser.c" /* yacc.c:1645 */ break; case 29: #line 181 "attack_parser.y" /* yacc.c:1645 */ { attack->service = SERVICES_FREEBSDFTPD; } #line 1642 "attack_parser.c" /* yacc.c:1645 */ break; case 30: #line 182 "attack_parser.y" /* yacc.c:1645 */ { attack->service = SERVICES_PROFTPD; } #line 1648 "attack_parser.c" /* yacc.c:1645 */ break; case 31: #line 183 "attack_parser.y" /* yacc.c:1645 */ { attack->service = SERVICES_PUREFTPD; } #line 1654 "attack_parser.c" /* yacc.c:1645 */ break; case 32: #line 184 "attack_parser.y" /* yacc.c:1645 */ { attack->service = SERVICES_VSFTPD; } #line 1660 "attack_parser.c" /* yacc.c:1645 */ break; case 33: #line 185 "attack_parser.y" /* yacc.c:1645 */ { attack->service = SERVICES_COCKPIT; } #line 1666 "attack_parser.c" /* yacc.c:1645 */ break; case 34: #line 186 "attack_parser.y" /* yacc.c:1645 */ { attack->service = SERVICES_CLF_UNAUTH; } #line 1672 "attack_parser.c" /* yacc.c:1645 */ break; case 35: #line 187 "attack_parser.y" /* yacc.c:1645 */ { attack->service = SERVICES_CLF_PROBES; } #line 1678 "attack_parser.c" /* yacc.c:1645 */ break; case 36: #line 188 "attack_parser.y" /* yacc.c:1645 */ { attack->service = SERVICES_CLF_WORDPRESS; } #line 1684 "attack_parser.c" /* yacc.c:1645 */ break; case 37: #line 189 "attack_parser.y" /* yacc.c:1645 */ { attack->service = SERVICES_OPENSMTPD; } #line 1690 "attack_parser.c" /* yacc.c:1645 */ break; case 38: #line 190 "attack_parser.y" /* yacc.c:1645 */ { attack->service = SERVICES_COURIER; } #line 1696 "attack_parser.c" /* yacc.c:1645 */ break; case 39: #line 191 "attack_parser.y" /* yacc.c:1645 */ { attack->service = SERVICES_OPENVPN; } #line 1702 "attack_parser.c" /* yacc.c:1645 */ break; case 40: #line 196 "attack_parser.y" /* yacc.c:1645 */ { attack->address.kind = ADDRKIND_IPv4; strcpy(attack->address.value, (yyvsp[0].str)); } #line 1711 "attack_parser.c" /* yacc.c:1645 */ break; case 41: #line 200 "attack_parser.y" /* yacc.c:1645 */ { attack->address.kind = ADDRKIND_IPv6; strcpy(attack->address.value, (yyvsp[0].str)); free((yyvsp[0].str)); } #line 1721 "attack_parser.c" /* yacc.c:1645 */ break; case 42: #line 206 "attack_parser.y" /* yacc.c:1645 */ { attack->address.kind = ADDRKIND_IPv6; strcpy(attack->address.value, (yyvsp[-2].str)); free((yyvsp[-2].str)); } #line 1731 "attack_parser.c" /* yacc.c:1645 */ break; case 43: #line 211 "attack_parser.y" /* yacc.c:1645 */ { if (!attack_from_hostname(attack, (yyvsp[0].str))) { YYABORT; } } #line 1741 "attack_parser.c" /* yacc.c:1645 */ break; case 59: #line 250 "attack_parser.y" /* yacc.c:1645 */ { attack->dangerousness = 2; } #line 1747 "attack_parser.c" /* yacc.c:1645 */ break; #line 1751 "attack_parser.c" /* yacc.c:1645 */ default: break; } /* User semantic actions sometimes alter yychar, and that requires that yytoken be updated with the new translation. We take the approach of translating immediately before every use of yytoken. One alternative is translating here after every semantic action, but that translation would be missed if the semantic action invokes YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an incorrect destructor might then be invoked immediately. In the case of YYERROR or YYBACKUP, subsequent parser actions might lead to an incorrect destructor call or verbose syntax error message before the lookahead is translated. */ YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); *++yyvsp = yyval; /* Now 'shift' the result of the reduction. Determine what state that goes to, based on the state we popped back to and the rule number reduced by. */ { const int yylhs = yyr1[yyn] - YYNTOKENS; const int yyi = yypgoto[yylhs] + *yyssp; yystate = (0 <= yyi && yyi <= YYLAST && yycheck[yyi] == *yyssp ? yytable[yyi] : yydefgoto[yylhs]); } goto yynewstate; /*--------------------------------------. | yyerrlab -- here on detecting error. | `--------------------------------------*/ yyerrlab: /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar); /* If not already recovering from an error, report this error. */ if (!yyerrstatus) { ++yynerrs; #if ! YYERROR_VERBOSE yyerror (attack, YY_("syntax error")); #else # define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \ yyssp, yytoken) { char const *yymsgp = YY_("syntax error"); int yysyntax_error_status; yysyntax_error_status = YYSYNTAX_ERROR; if (yysyntax_error_status == 0) yymsgp = yymsg; else if (yysyntax_error_status == 1) { if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc); if (!yymsg) { yymsg = yymsgbuf; yymsg_alloc = sizeof yymsgbuf; yysyntax_error_status = 2; } else { yysyntax_error_status = YYSYNTAX_ERROR; yymsgp = yymsg; } } yyerror (attack, yymsgp); if (yysyntax_error_status == 2) goto yyexhaustedlab; } # undef YYSYNTAX_ERROR #endif } if (yyerrstatus == 3) { /* If just tried and failed to reuse lookahead token after an error, discard it. */ if (yychar <= YYEOF) { /* Return failure if at end of input. */ if (yychar == YYEOF) YYABORT; } else { yydestruct ("Error: discarding", yytoken, &yylval, attack); yychar = YYEMPTY; } } /* Else will try to reuse lookahead token after shifting the error token. */ goto yyerrlab1; /*---------------------------------------------------. | yyerrorlab -- error raised explicitly by YYERROR. | `---------------------------------------------------*/ yyerrorlab: /* Pacify compilers like GCC when the user code never invokes YYERROR and the label yyerrorlab therefore never appears in user code. */ if (/*CONSTCOND*/ 0) goto yyerrorlab; /* Do not reclaim the symbols of the rule whose action triggered this YYERROR. */ YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); yystate = *yyssp; goto yyerrlab1; /*-------------------------------------------------------------. | yyerrlab1 -- common code for both syntax error and YYERROR. | `-------------------------------------------------------------*/ yyerrlab1: yyerrstatus = 3; /* Each real token shifted decrements this. */ for (;;) { yyn = yypact[yystate]; if (!yypact_value_is_default (yyn)) { yyn += YYTERROR; if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) { yyn = yytable[yyn]; if (0 < yyn) break; } } /* Pop the current state because it cannot handle the error token. */ if (yyssp == yyss) YYABORT; yydestruct ("Error: popping", yystos[yystate], yyvsp, attack); YYPOPSTACK (1); yystate = *yyssp; YY_STACK_PRINT (yyss, yyssp); } YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN *++yyvsp = yylval; YY_IGNORE_MAYBE_UNINITIALIZED_END /* Shift the error token. */ YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp); yystate = yyn; goto yynewstate; /*-------------------------------------. | yyacceptlab -- YYACCEPT comes here. | `-------------------------------------*/ yyacceptlab: yyresult = 0; goto yyreturn; /*-----------------------------------. | yyabortlab -- YYABORT comes here. | `-----------------------------------*/ yyabortlab: yyresult = 1; goto yyreturn; #if !defined yyoverflow || YYERROR_VERBOSE /*-------------------------------------------------. | yyexhaustedlab -- memory exhaustion comes here. | `-------------------------------------------------*/ yyexhaustedlab: yyerror (attack, YY_("memory exhausted")); yyresult = 2; /* Fall through. */ #endif yyreturn: if (yychar != YYEMPTY) { /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = YYTRANSLATE (yychar); yydestruct ("Cleanup: discarding lookahead", yytoken, &yylval, attack); } /* Do not reclaim the symbols of the rule whose action triggered this YYABORT or YYACCEPT. */ YYPOPSTACK (yylen); YY_STACK_PRINT (yyss, yyssp); while (yyssp != yyss) { yydestruct ("Cleanup: popping", yystos[*yyssp], yyvsp, attack); YYPOPSTACK (1); } #ifndef yyoverflow if (yyss != yyssa) YYSTACK_FREE (yyss); #endif #if YYERROR_VERBOSE if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); #endif return yyresult; } #line 362 "attack_parser.y" /* yacc.c:1903 */ static void yyerror(__attribute__((unused)) attack_t *a, __attribute__((unused)) const char *s) { /* do nothing */ } int parse_line(char *str, attack_t *attack) { /* TODO: reduce danger for SERVICES_CLF_PROBES */ attack->dangerousness = DEFAULT_ATTACKS_DANGEROUSNESS; scanner_init(str); int ret = yyparse(attack); scanner_fin(); return ret; } sshguard-2.3.1/src/parser/attack.c000644 001751 001751 00000003630 13405335557 017727 0ustar00kevinzkevinz000000 000000 #include #include #include #include #include #include #include #include #include "attack.h" int attack_from_hostname(attack_t *attack, const char *name) { struct addrinfo addrinfo_hints; struct addrinfo *addrinfo_result; int res; /* look up IPv4 first */ memset(&addrinfo_hints, 0x00, sizeof(addrinfo_hints)); addrinfo_hints.ai_family = AF_INET; res = getaddrinfo(name, NULL, &addrinfo_hints, &addrinfo_result); if (res == 0) { struct sockaddr_in *foo4; /* pick the first (IPv4) result address and return */ attack->address.kind = ADDRKIND_IPv4; foo4 = (struct sockaddr_in *)(addrinfo_result->ai_addr); if (inet_ntop(AF_INET, &foo4->sin_addr, attack->address.value, sizeof(attack->address.value)) == NULL) { freeaddrinfo(addrinfo_result); perror("Unable to resolve hostname to IP4 address"); return false; } } else { /* try IPv6 */ addrinfo_hints.ai_family = AF_INET6; res = getaddrinfo(name, NULL, &addrinfo_hints, &addrinfo_result); if (res == 0) { struct sockaddr_in6 *foo6; /* pick the first (IPv6) result address and return */ attack->address.kind = ADDRKIND_IPv6; foo6 = (struct sockaddr_in6 *)(addrinfo_result->ai_addr); if (inet_ntop(AF_INET6, &foo6->sin6_addr, attack->address.value, sizeof(attack->address.value)) == NULL) { perror("Unable to resolve hostname to IP6 address"); freeaddrinfo(addrinfo_result); return false; } } else { fprintf(stderr, "Could not resolve '%s' to address\n", name); return false; } } freeaddrinfo(addrinfo_result); return true; } sshguard-2.3.1/src/parser/Makefile.am000644 001751 001751 00000000574 13405335557 020354 0ustar00kevinzkevinz000000 000000 AM_CFLAGS=-I$(top_srcdir)/src/common -DSIMCLIST_NO_DUMPRESTORE AM_YFLAGS = -d libexec_PROGRAMS = sshg-parser BUILT_SOURCES = attack_parser.h EXTRA_DIST = tests.txt $(TESTS) LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) \ $(top_srcdir)/tap-driver.sh TESTS = test-sshg-parser sshg_parser_SOURCES = \ attack.c \ attack_parser.y \ attack_scanner.l \ parser.c \ parser.h sshguard-2.3.1/src/parser/attack_parser.h000644 001751 001751 00000017037 13405337331 021306 0ustar00kevinzkevinz000000 000000 /* A Bison parser, made by GNU Bison 3.2.2. */ /* Bison interface for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2015, 2018 Free Software Foundation, Inc. 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 3 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, see . */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* Undocumented macros, especially those whose name start with YY_, are private implementation details. Do not rely on them. */ #ifndef YY_YY_ATTACK_PARSER_H_INCLUDED # define YY_YY_ATTACK_PARSER_H_INCLUDED /* Debug traces. */ #ifndef YYDEBUG # define YYDEBUG 0 #endif #if YYDEBUG extern int yydebug; #endif /* Token type. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE enum yytokentype { IPv4 = 258, IPv6 = 259, HOSTADDR = 260, WORD = 261, INTEGER = 262, SYSLOG_BANNER_PID = 263, SOCKLOG_BANNER_PID = 264, BUSYBOX_SYSLOG_BANNER_PID = 265, SYSLOG_BANNER = 266, TIMESTAMP_SYSLOG = 267, TIMESTAMP_ISO8601 = 268, TIMESTAMP_TAI64 = 269, AT_TIMESTAMP_TAI64 = 270, METALOG_BANNER = 271, SOCKLOG_BANNER = 272, REPETITIONS = 273, HTTP_REQUEST = 274, HTTP_VERSION = 275, HTTP_REDIRECT = 276, HTTP_AUTHFAIL = 277, HTTP_CLIERROR = 278, HTTP_BOTSEARCH_WEBMAIL = 279, HTTP_BOTSEARCH_PHPMYADMIN = 280, HTTP_BOTSEARCH_WORDPRESS = 281, HTTP_BOTSEARCH = 282, SSH_INVALUSERPREF = 283, SSH_NOTALLOWEDPREF = 284, SSH_NOTALLOWEDSUFF = 285, SSH_LOGINERR_PREF = 286, SSH_LOGINERR_PAM = 287, SSH_VIA = 288, SSH_MAXAUTH = 289, SSH_ADDR_SUFF = 290, SSH_NOIDENTIFSTR = 291, SSH_BADPROTOCOLIDENTIF = 292, SSH_BADPROTOCOLIDENTIF_SUFF = 293, SSH_BADKEX_PREF = 294, SSH_BADKEX_SUFF = 295, SSH_DISCONNECT_PREF = 296, SSH_CONNECTION_CLOSED = 297, SSH_PREAUTH_SUFF = 298, SSHGUARD_ATTACK_PREF = 299, SSHGUARD_ATTACK_SUFF = 300, SSHGUARD_BLOCK_PREF = 301, SSHGUARD_BLOCK_SUFF = 302, DOVECOT_IMAP_LOGINERR_PREF = 303, DOVECOT_IMAP_LOGINERR_SUFF = 304, UWIMAP_LOGINERR = 305, CYRUSIMAP_SASL_LOGINERR_PREF = 306, CYRUSIMAP_SASL_LOGINERR_SUFF = 307, CYRUSIMAP_TLS_ERR_PREF = 308, CUCIPOP_AUTHFAIL = 309, EXIM_ESMTP_AUTHFAIL_PREF = 310, EXIM_ESMTP_AUTHFAIL_SUFF = 311, EXIM_ESMTP_LOGINFAIL_PREF = 312, EXIM_ESMTP_LOGINFAIL_SUFF = 313, SENDMAIL_RELAYDENIED_PREF = 314, SENDMAIL_RELAYDENIED_SUFF = 315, SENDMAIL_AUTHFAILURE_PREF = 316, SENDMAIL_AUTHFAILURE_SUFF = 317, POSTFIX_NO_AUTH_PREF = 318, POSTFIX_SASL_LOGINERR_PREF = 319, POSTFIX_SASL_LOGINERR_SUFF = 320, POSTFIX_GREYLIST = 321, POSTFIX_GREYLIST_SUFF = 322, FREEBSDFTPD_LOGINERR_PREF = 323, FREEBSDFTPD_LOGINERR_SUFF = 324, PROFTPD_LOGINERR_PREF = 325, PROFTPD_LOGINERR_SUFF = 326, PUREFTPD_LOGINERR_PREF = 327, PUREFTPD_LOGINERR_SUFF = 328, VSFTPD_LOGINERR_PREF = 329, VSFTPD_LOGINERR_SUFF = 330, COCKPIT_AUTHFAIL_PREF = 331, COCKPIT_AUTHFAIL_SUFF = 332, CLF_REQUEST_PREF = 333, CLF_UNAUTHOIRIZED_PREF = 334, CLF_UNAUTHOIRIZED_SUFF = 335, CLFWEBPROBES_BOTSEARCH_SUFF = 336, CLF_WORDPRESS_SUFF = 337, OPENSMTPD_FAILED_CMD_PREF = 338, OPENSMTPD_AUTHFAIL_SUFF = 339, OPENSMTPD_UNSUPPORTED_CMD_SUFF = 340, COURIER_AUTHFAIL_PREF = 341, OPENVPN_TLS_ERR_SUFF = 342 }; #endif /* Tokens. */ #define IPv4 258 #define IPv6 259 #define HOSTADDR 260 #define WORD 261 #define INTEGER 262 #define SYSLOG_BANNER_PID 263 #define SOCKLOG_BANNER_PID 264 #define BUSYBOX_SYSLOG_BANNER_PID 265 #define SYSLOG_BANNER 266 #define TIMESTAMP_SYSLOG 267 #define TIMESTAMP_ISO8601 268 #define TIMESTAMP_TAI64 269 #define AT_TIMESTAMP_TAI64 270 #define METALOG_BANNER 271 #define SOCKLOG_BANNER 272 #define REPETITIONS 273 #define HTTP_REQUEST 274 #define HTTP_VERSION 275 #define HTTP_REDIRECT 276 #define HTTP_AUTHFAIL 277 #define HTTP_CLIERROR 278 #define HTTP_BOTSEARCH_WEBMAIL 279 #define HTTP_BOTSEARCH_PHPMYADMIN 280 #define HTTP_BOTSEARCH_WORDPRESS 281 #define HTTP_BOTSEARCH 282 #define SSH_INVALUSERPREF 283 #define SSH_NOTALLOWEDPREF 284 #define SSH_NOTALLOWEDSUFF 285 #define SSH_LOGINERR_PREF 286 #define SSH_LOGINERR_PAM 287 #define SSH_VIA 288 #define SSH_MAXAUTH 289 #define SSH_ADDR_SUFF 290 #define SSH_NOIDENTIFSTR 291 #define SSH_BADPROTOCOLIDENTIF 292 #define SSH_BADPROTOCOLIDENTIF_SUFF 293 #define SSH_BADKEX_PREF 294 #define SSH_BADKEX_SUFF 295 #define SSH_DISCONNECT_PREF 296 #define SSH_CONNECTION_CLOSED 297 #define SSH_PREAUTH_SUFF 298 #define SSHGUARD_ATTACK_PREF 299 #define SSHGUARD_ATTACK_SUFF 300 #define SSHGUARD_BLOCK_PREF 301 #define SSHGUARD_BLOCK_SUFF 302 #define DOVECOT_IMAP_LOGINERR_PREF 303 #define DOVECOT_IMAP_LOGINERR_SUFF 304 #define UWIMAP_LOGINERR 305 #define CYRUSIMAP_SASL_LOGINERR_PREF 306 #define CYRUSIMAP_SASL_LOGINERR_SUFF 307 #define CYRUSIMAP_TLS_ERR_PREF 308 #define CUCIPOP_AUTHFAIL 309 #define EXIM_ESMTP_AUTHFAIL_PREF 310 #define EXIM_ESMTP_AUTHFAIL_SUFF 311 #define EXIM_ESMTP_LOGINFAIL_PREF 312 #define EXIM_ESMTP_LOGINFAIL_SUFF 313 #define SENDMAIL_RELAYDENIED_PREF 314 #define SENDMAIL_RELAYDENIED_SUFF 315 #define SENDMAIL_AUTHFAILURE_PREF 316 #define SENDMAIL_AUTHFAILURE_SUFF 317 #define POSTFIX_NO_AUTH_PREF 318 #define POSTFIX_SASL_LOGINERR_PREF 319 #define POSTFIX_SASL_LOGINERR_SUFF 320 #define POSTFIX_GREYLIST 321 #define POSTFIX_GREYLIST_SUFF 322 #define FREEBSDFTPD_LOGINERR_PREF 323 #define FREEBSDFTPD_LOGINERR_SUFF 324 #define PROFTPD_LOGINERR_PREF 325 #define PROFTPD_LOGINERR_SUFF 326 #define PUREFTPD_LOGINERR_PREF 327 #define PUREFTPD_LOGINERR_SUFF 328 #define VSFTPD_LOGINERR_PREF 329 #define VSFTPD_LOGINERR_SUFF 330 #define COCKPIT_AUTHFAIL_PREF 331 #define COCKPIT_AUTHFAIL_SUFF 332 #define CLF_REQUEST_PREF 333 #define CLF_UNAUTHOIRIZED_PREF 334 #define CLF_UNAUTHOIRIZED_SUFF 335 #define CLFWEBPROBES_BOTSEARCH_SUFF 336 #define CLF_WORDPRESS_SUFF 337 #define OPENSMTPD_FAILED_CMD_PREF 338 #define OPENSMTPD_AUTHFAIL_SUFF 339 #define OPENSMTPD_UNSUPPORTED_CMD_SUFF 340 #define COURIER_AUTHFAIL_PREF 341 #define OPENVPN_TLS_ERR_SUFF 342 /* Value type. */ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED union YYSTYPE { #line 43 "attack_parser.y" /* yacc.c:1906 */ char *str; int num; #line 236 "attack_parser.h" /* yacc.c:1906 */ }; typedef union YYSTYPE YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 # define YYSTYPE_IS_DECLARED 1 #endif extern YYSTYPE yylval; int yyparse (attack_t *attack); #endif /* !YY_YY_ATTACK_PARSER_H_INCLUDED */ sshguard-2.3.1/src/parser/parser.c000644 001751 001751 00000007034 13405335557 017756 0ustar00kevinzkevinz000000 000000 /** * @file * Parse and display individual attacks from standard input */ #include #include #include #include #include #include "parser.h" #include "sandbox.h" #define MAX_LEN 1000 unsigned int test_counter = 0; static void print_attack(const attack_t *attack) { printf("%d %s %d %d\n", attack->service, attack->address.value, attack->address.kind, attack->dangerousness); } static void parse_to_buf(char buf[static 1], char dst[static MAX_LEN]) { attack_t attack; bool is_attack = !parse_line(buf, &attack); if (is_attack) { snprintf(dst, MAX_LEN, "%d %s %d %d\n", attack.service, attack.address.value, attack.address.kind, attack.dangerousness); } else { strncpy(dst, "*\n", MAX_LEN); } } static void print_usage() { fprintf(stderr, "usage: sshg-parser [-adht]\n"); } static void test_next_line(char buf[static MAX_LEN]) { static unsigned char state = 0; static char expected[MAX_LEN], result[MAX_LEN]; static bool match; if (buf[0] == '\n' || buf[0] == '#') { // skip blank lines and comments return; } switch (state) { case 0: // line with input strncpy(expected, buf, sizeof(expected)); parse_to_buf(buf, result); state++; break; case 1: // line with expected output match = strcmp(buf, result) == 0; state++; break; case 2: // line with type of test test_counter += 1; if (match) { printf("ok %d", test_counter); } else { printf("not ok %d", test_counter); } switch (buf[0]) { case 'M': // expected match putchar('\n'); break; case 'X': // expected fail printf(" # TODO\n"); break; default: puts("Bail out! Malformed expected test result"); exit(99); } printf("# %s", expected); state = 0; break; default: abort(); } } int main(int argc, char *argv[]) { bool annotate = false, debug = false, test_mode = false; char buf[MAX_LEN]; int flag; sandbox_init(); while ((flag = getopt(argc, argv, "adht")) != -1) { switch (flag) { case 'a': annotate = true; break; case 'd': debug = true; break; case 'h': print_usage(); return 0; case 't': test_mode = true; break; case '?': print_usage(); return 1; } } yydebug = yy_flex_debug = debug; while (fgets(buf, sizeof(buf), stdin) != NULL) { if (test_mode) { test_next_line(buf); } else { attack_t attack; bool is_attack = !parse_line(buf, &attack); if (annotate) { if (is_attack) { fputs("* ", stdout); } else { fputs(" ", stdout); } fputs(buf, stdout); fflush(stdout); } else { if (is_attack) { print_attack(&attack); fflush(stdout); } } } } if (test_mode) { printf("1..%d\n", test_counter); } } sshguard-2.3.1/src/parser/attack_scanner.l000644 001751 001751 00000045003 13407005335 021437 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2009,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ %{ #include #include #include "attack.h" #include "attack_parser.h" static int getsyslogpid(char *syslogbanner, int length); %} %option debug %option noinput %option nounput %option noyywrap %array /* Start Conditions */ /* for Login services */ %s ssh_notallowed ssh_reversemap ssh_disconnect ssh_badproto ssh_badkex cockpit_authfail /* for SSHGuard */ %s sshguard_attack sshguard_block /* for Mail services */ %s dovecot_loginerr cyrusimap_loginerr exim_esmtp_autherr exim_esmtp_loginerr sendmail_relaydenied sendmail_authfailure postfix_loginerr postfix_greylist opensmtpd_failedcmd /* for FTP services */ %s freebsdftpd_loginerr proftpd_loginerr pureftpd_loginerr vsftpd_loginerr /* for HTTP services */ %s clf_request clf_request_withuser clf_unauhtorized clfwebprobes_botsearch MONTH (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) MONTHNO 0[0-9]|1[0-2] DAYNO [0-9][0-9]? HOUR (0|1)[0-9]|2[0-4] MINPS [0-5][0-9] SECONDFRAC [0-5][0-9]([.,][0-9]+)? WORD [a-zA-Z0-9][-_a-zA-Z0-9]+ NUMBER [1-9][0-9]* FILENAME [a-zA-Z0-9\/.-]+ YEAR (1|2)[0-9]{3} TIMEZONE Z|[-+]{HOUR}(:?{MINPS})? TIMESTAMP_SYSLOG {MONTH}\ +{DAYNO}\ +{HOUR}:{MINPS}:{MINPS} TIMESTAMP_TAI64 [0-9A-Fa-f]{24} SOLARIS_MSGID_TAG "[ID "[0-9]+" "{WORD}"."{WORD}"]" TIMESTAMP_ISO8601 {YEAR}-{MONTHNO}-{DAYNO}(T|" "){HOUR}:?{MINPS}:?{SECONDFRAC}{TIMEZONE}? TIMESTAMP_LOCAL {DAYNO}"/"{MONTH}"/"{YEAR}":"{HOUR}":"{MINPS}":"{MINPS}" "{TIMEZONE} /* all words but "sshguard" provided that posix regex don't support negation nor intersection: * 1) all words of 2 to 7 characters or 8-* chars * 2) words of 7 chars different to "sshguard" (^s.* | s^s.* | ss^h.* */ PROCESSNAME ([-_a-zA-Z0-9]{2,7})|([-_a-zA-Z0-9]{9,})|([-_a-rt-zA-RT-Z0-9][-_a-zA-Z0-9]{7})|([sS][-_a-rt-zA-RT-Z0-9][-_a-zA-Z0-9]{6})|([sS]{2}[-_a-gi-zA-gI-Z0-9][-_a-zA-Z0-9]{5})|([sS]{2}[hH][-_a-fh-zA-FH-Z0-9][-_a-zA-Z0-9]{4})|([sS]{2}[hH][gG][-_a-tv-zA-TV-Z0-9][-_a-zA-Z0-9]{3})|([sS]{2}[hH][gG][uU][b-zB-Z0-9][-_a-zA-Z0-9]{2})|([sS]{2}[hH][gG][uU][-_aA][-_a-qs-zA-QS-Z0-9][-_a-zA-Z0-9])|([sS]{2}[hH][gG][uU][-_aA][rR][-_a-ce-zA-CE-Z0-9]) /* IPv4 address (used in IPv6 address too, for IPv4 encapsulation) */ IPV4 ((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]?|0)(\.(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]?|0)){3}) /* IPv6 addresses including compressed variants (RFC 2373) */ IPV6 (::|:(:[0-9a-fA-F]{1,4}){1,7}|[0-9a-fA-F]{1,4}:([0-9a-fA-F]{1,4}:(:[0-9a-fA-F]{1,4}){1,5}|(:[0-9a-fA-F]{1,4}){1,6})|([0-9a-fA-F]{1,4}:){3}([0-9a-fA-F]{1,4}:(:[0-9a-fA-F]{1,4}){1,3}|(:[0-9a-fA-F]{1,4}){1,4})|([0-9a-fA-F]{1,4}:){5}([0-9a-fA-F]{1,4}:[0-9a-fA-F]{0,4}:[0-9a-fA-F]{1,4}|(:[0-9a-fA-F]{1,4}){1,2})|([0-9a-fA-F]{1,4}:){1,7}:) /* an IPv4 packed in IPv6 as IPv4-mapped IPv6 address */ IPV4MAPPED6 ((:(:0{1,4}){0,4}|0{1,4}:(:0{1,4}){1,3}|(0{1,4}:){2}(0{1,4}:0{0,4}:0{1,4}|(:0{1,4}){1,2})|(0{1,4}:){1,4}):[fF]{4}:(((2[0-4]|1[0-9]|[1-9])?[0-9]|25[0-5])\.){3}((2[0-4]|1[0-9]|[1-9])?[0-9]|25[0-5])) KEY_ALGORITHM (?i:(RSA|DSA|ECDSA|ED25519)) KEY_FINGERPRINT (?i:(MD5|SHA256)((:[a-f0-9]{2}){16}|:[0-9a-z+\/]{43})) HOSTNAME ([-a-zA-Z0-9]+\.)*[-a-zA-Z0-9]+ HOSTADDR localhost|([-a-zA-Z0-9]+\.)+[a-zA-Z]+|{IPV4}|{IPV6}|{IPV4MAPPED6} FACLEVEL (<[a-zA-Z0-9]+\.[a-zA-Z0-9]+>) HTTP_REQUEST (GET|HEAD|PUT|POST|DELETE) HTTP_VERSION HTTP"/"[0-9]("."[0-9])? HTTP_STATUSCODE [0-9]{3} HTTP_SUCCESS 200 HTTP_REDIRECT 3[0-9]{2} HTTP_AUTHFAIL 401 HTTP_CLIERROR 4[0-9]{2} /* Common Log Format. */ CLF_MISSING "-"|"\"-\"" CLF_USER_ID {WORD}|"\""{WORD}"\"" CLF_USER_NAME {WORD}|"\""{WORD}"\"" CLF_OPT_USER_ID {CLF_MISSING}|{WORD} CLF_OPT_USER_NAME {CLF_MISSING}|{WORD} CLF_TIMESTAMP "["({TIMESTAMP_LOCAL}|{TIMESTAMP_ISO8601})"]" CLF_REQUEST "\""{HTTP_REQUEST}" "{FILENAME}" "{HTTP_VERSION}"\"" /* Common configuration for http botsearch * Adapted from fail2ban botsearch filters & tweaked by alip☮exherbo.org, * Original author: Frantisek Sumsal */ HTTP_BOTSEARCH_WEBMAIL roundcube|(ext)?mail|horde|(v-?)?webmail HTTP_BOTSEARCH_PHPMYADMIN (typo3"/"|xampp"/"|admin"/")?(pma|(php)?[Mm]y[Aa]dmin) HTTP_BOTSEARCH_WORDPRESS wp-(admin|config|login|signup)"."php HTTP_BOTSEARCH .*({HTTP_BOTSEARCH_WEBMAIL}|{HTTP_BOTSEARCH_PHPMYADMIN}|{HTTP_BOTSEARCH_WORDPRESS}|cgi-bin|mysqladmin)[^,]* WORDPRESS_LOGIN .*"/wp-login"(\.php)? %% /* * syslog banner, eg "Nov 22 09:58:58 freyja sshd[94637]: " * tokenized as: timestamp hostname procname(subname) [pid]: * both the subname and pid parts can be missing * * return SYSLOG_BANNER_PID or SYSLOG_BANNER depending on the presence of [pid] */ /* handle entries with PID and without PID from processes other than sshguard */ ({TIMESTAMP_SYSLOG}|{TIMESTAMP_ISO8601})[ ]+{FACLEVEL}?[ ]*([a-zA-Z0-9]|{WORD}|{HOSTADDR})[ ]+{PROCESSNAME}("/"{PROCESSNAME}){0,2}"["{NUMBER}"]: "{SOLARIS_MSGID_TAG}? { /* extract PID */ yylval.num = getsyslogpid(yytext, yyleng); return SYSLOG_BANNER_PID; } ({TIMESTAMP_SYSLOG}|{TIMESTAMP_ISO8601})[ ]+{FACLEVEL}?[ ]*([a-zA-Z0-9]|{WORD}|{HOSTADDR})[ ]+({PROCESSNAME}("/"{PROCESSNAME}){0,2})?":" { return SYSLOG_BANNER; } /* metalog banner */ {TIMESTAMP_SYSLOG}" ["{PROCESSNAME}("/"{PROCESSNAME}){0,2}"] " { return METALOG_BANNER; } /* * socklog banner, eg * "2015-05-27T04:31:28.10040 auth.info: May 27 04:31:28 sshd[30993]: " * * Some strip the redundant timestamp, eg * "2015-05-27T04:31:28.10040 auth.info: sshd[30993]: " */ ({TIMESTAMP_ISO8601}" ")?{WORD}.{WORD}": "({TIMESTAMP_SYSLOG}" ")?{PROCESSNAME}("/"{PROCESSNAME}){0,2}"["{NUMBER}"]: "{SOLARIS_MSGID_TAG}? { yylval.num = getsyslogpid(yytext, yyleng); return SOCKLOG_BANNER_PID; } ({TIMESTAMP_ISO8601}" ")?{WORD}.{WORD}": "({TIMESTAMP_SYSLOG}" ")?({PROCESSNAME}("/"{PROCESSNAME}){0,2}":")? { return SOCKLOG_BANNER; } /* * Busybox syslog banner, e/g/ * "Jun 20 02:18:39 vps auth.info sshd[13482]: " */ {TIMESTAMP_SYSLOG}" "([a-zA-Z0-9]|{WORD}|{HOSTADDR})" "{WORD}.{WORD}" "{PROCESSNAME}("/"{PROCESSNAME}){0,2}"["{NUMBER}"]: " { yylval.num = getsyslogpid(yytext, yyleng); return BUSYBOX_SYSLOG_BANNER_PID; } /* SSH: invalid or rejected user (cross platform [generated by openssh]) */ "Disconnecting "[Ii]"nvalid user "[^ ]+" " { return SSH_INVALUSERPREF; } "Failed password for "?[Ii]"nvalid user ".+" from " { return SSH_INVALUSERPREF; } /* match disallowed user (not in AllowUsers/AllowGroups or in DenyUsers/DenyGroups) on Linux Ubuntu/FreeBSD */ /* "User tinydns from 1.2.3.4 not allowed because not listed in AllowUsers" */ "User ".+" from " { BEGIN(ssh_notallowed); return SSH_NOTALLOWEDPREF; } " not allowed because ".+ { BEGIN(INITIAL); return SSH_NOTALLOWEDSUFF; } /* match disallowed user root (with PermitRootLogin = no) */ /* "ROOT LOGIN REFUSED FROM 1.2.3.4" */ "ROOT LOGIN REFUSED FROM " { BEGIN(ssh_notallowed); return SSH_NOTALLOWEDPREF; } "error: "?"maximum authentication attempts exceeded for".*"from" { return SSH_MAXAUTH; } "port "{NUMBER}" ssh"?." [preauth]"?(": "{KEY_ALGORITHM}" "{KEY_FINGERPRINT})? { return SSH_ADDR_SUFF; } "port "{NUMBER}": Change of username or service not allowed".*" [preauth]"? { return SSH_ADDR_SUFF; } /* Solaris-own */ "Failed none for from " { BEGIN(ssh_notallowed); return SSH_NOTALLOWEDPREF; } " port ".+ { BEGIN(INITIAL); return SSH_NOTALLOWEDSUFF; } /* get this instead: match invalid login @ Linux Ubuntu */ /* "Failed password for validuser from 1.2.3.4 port 54609 ssh2" */ "Failed "[^ ]+" for "[^ ]+" from " { return SSH_LOGINERR_PREF; } /* wrong password for valid user @ FreeBSD, Debian */ "error: PAM: "(([aA]"uthentication "(error|failure))|"unknown user")" for "("illegal user ")?.+" from " { return SSH_LOGINERR_PAM; } "via ".* { return SSH_VIA; } /* SSH: connections open and closed without auth attempts */ "Did not receive identification string from " { return SSH_NOIDENTIFSTR; } "error: "?"Received disconnect from " { BEGIN(ssh_disconnect); return SSH_DISCONNECT_PREF; } "Connection "(closed|reset)" by " { BEGIN(ssh_disconnect); return SSH_CONNECTION_CLOSED; } [: ].*"[preauth]" { BEGIN(INITIAL); return SSH_PREAUTH_SUFF; } /* SSH: clients connecting with other application protocols */ "Bad protocol version identification".*" from " { BEGIN(ssh_badproto); return SSH_BADPROTOCOLIDENTIF; } [ \n].* { BEGIN(INITIAL); return SSH_BADPROTOCOLIDENTIF_SUFF; } "Unable to negotiate with " { BEGIN(ssh_badkex); return SSH_BADKEX_PREF; } (" port ".*)?[: ].*"no matching ".*" found".* { BEGIN(INITIAL); return SSH_BADKEX_SUFF; } /* SSHGuard */ "Attack from \"" { BEGIN(sshguard_attack); return SSHGUARD_ATTACK_PREF; } "\" on service "{NUMBER}" with danger "{NUMBER}"." { BEGIN(INITIAL); return SSHGUARD_ATTACK_SUFF; } "Blocking \"" { BEGIN(sshguard_block); return SSHGUARD_BLOCK_PREF; } "/"{NUMBER}"\" for "{NUMBER}" secs ("{NUMBER}" attacks in "{NUMBER}" secs,".+ { BEGIN(INITIAL); return SSHGUARD_BLOCK_SUFF; } /* Cucipop */ "authentication failure "[^0-9]+ { return CUCIPOP_AUTHFAIL; } /* Exim */ "authenticator failed for ".+" [" { BEGIN(exim_esmtp_autherr); return EXIM_ESMTP_AUTHFAIL_PREF; } "]"(:{NUMBER})?(" I=".+)?(" U=".+)?": 535 Incorrect authentication data"(" (set_id=".+")")? { BEGIN(INITIAL); return EXIM_ESMTP_AUTHFAIL_SUFF; } "SMTP protocol error in \"AUTH LOGIN\" H="({HOSTNAME}" ")?"(".*") [" { BEGIN(exim_esmtp_loginerr); return EXIM_ESMTP_LOGINFAIL_PREF; } "] "("AUTH command used when not advertised"|"LOGIN authentication mechanism not supported") { BEGIN(INITIAL); return EXIM_ESMTP_LOGINFAIL_SUFF; } /* Sendmail */ "Relaying denied. IP name lookup failed [" { BEGIN(sendmail_relaydenied); return SENDMAIL_RELAYDENIED_PREF; } "]" { BEGIN(INITIAL); return SENDMAIL_RELAYDENIED_SUFF; } /* Sendmail */ [A-Za-z0-9]+": AUTH failure ("[A-Za-z0-9-]+"): ".+"relay=".*"[" { BEGIN(sendmail_authfailure); return SENDMAIL_AUTHFAILURE_PREF; } "]".* { BEGIN(INITIAL); return SENDMAIL_AUTHFAILURE_SUFF; } /* dovecot */ ("(libdovecot."[0-9\.]+".dylib) ")?(imap|pop3)"-login: "("Aborted login"|Disconnected)" (auth failed, "{NUMBER}" attempts".*"): ".+" rip=" { BEGIN(dovecot_loginerr); return DOVECOT_IMAP_LOGINERR_PREF; } ", lip=".+ { BEGIN(INITIAL); return DOVECOT_IMAP_LOGINERR_SUFF; } /* UWimap login errors */ "Login failed user="[^ ]+" auth="[^ ]*" host="[^ ]+" " { return UWIMAP_LOGINERR; } /* cyrus-imap login error */ "badlogin: "[^\[]*"[" { BEGIN(cyrusimap_loginerr); return CYRUSIMAP_SASL_LOGINERR_PREF; } "] ".*"SASL".*"failed".?$ { BEGIN(INITIAL); return CYRUSIMAP_SASL_LOGINERR_SUFF; } [iI]"maps TLS negotiation failed: " { return CYRUSIMAP_TLS_ERR_PREF; } "STARTTLS negotiation failed: " { return CYRUSIMAP_TLS_ERR_PREF; } /* postfix */ "warning: "({WORD}|{HOSTADDR})"[" { BEGIN(postfix_loginerr); return POSTFIX_SASL_LOGINERR_PREF; } "]: SASL "[-A-Z0-9]+" authentication failed".* { BEGIN(INITIAL); return POSTFIX_SASL_LOGINERR_SUFF; } "lost connection after AUTH from ".*"[" { return POSTFIX_NO_AUTH_PREF; } "action=greylist".*"client_address=" { BEGIN(postfix_greylist); return POSTFIX_GREYLIST; } ",".* { BEGIN(INITIAL); return POSTFIX_GREYLIST_SUFF; } /* FreeBSD's ftpd login errors */ "FTP LOGIN FAILED FROM " { BEGIN(freebsdftpd_loginerr); return FREEBSDFTPD_LOGINERR_PREF; } ", ".+ { BEGIN(INITIAL); return FREEBSDFTPD_LOGINERR_SUFF; } /* ProFTPd */ {HOSTADDR}" ("[^\[]+"[" { BEGIN(proftpd_loginerr); return PROFTPD_LOGINERR_PREF; } "])".*" no such user "("found ")?.+ { BEGIN(INITIAL); return PROFTPD_LOGINERR_SUFF; } /* another log entry from ProFTPd */ {HOSTADDR}" ("[[]+"[" { BEGIN(proftpd_loginerr); return PROFTPD_LOGINERR_PREF; } "]) - USER "{WORD}" (Login failed): ".* { BEGIN(INITIAL); return PROFTPD_LOGINERR_SUFF; } /* Pure-FTPd */ "pure-ftpd: "?"("("?"|{WORD}|{HOSTADDR})"@" { BEGIN(pureftpd_loginerr); return PUREFTPD_LOGINERR_PREF; } ") [WARNING] Authentication failed for user ".+ { BEGIN(INITIAL); return PUREFTPD_LOGINERR_SUFF; } /* vsftpd */ .+"FAIL LOGIN: Client \"" { BEGIN(vsftpd_loginerr); return VSFTPD_LOGINERR_PREF; } "\"" { BEGIN(INITIAL); return VSFTPD_LOGINERR_SUFF; } /* cockpit */ "pam_unix(cockpit:auth): "?"authentication failure; logname= uid=0 euid=0 tty= ruser= rhost=" { BEGIN(cockpit_authfail); return COCKPIT_AUTHFAIL_PREF; } " "+"user=".+ { BEGIN(INITIAL); return COCKPIT_AUTHFAIL_SUFF; } /* HTTP Basic AUTH – unauthorized. */ {CLF_OPT_USER_ID}" "{CLF_USER_NAME}" "{CLF_TIMESTAMP} { BEGIN(clf_request_withuser); return CLF_UNAUTHOIRIZED_PREF; } " "{CLF_REQUEST}" "{HTTP_AUTHFAIL}.+ { BEGIN(INITIAL); return CLF_UNAUTHOIRIZED_SUFF; } /* Common Log Format */ {CLF_OPT_USER_ID}" "{CLF_OPT_USER_NAME}" "{CLF_TIMESTAMP} { BEGIN(clf_request); return CLF_REQUEST_PREF; } /* HTTP probes for common web services. */ " \""{HTTP_REQUEST}" "{HTTP_BOTSEARCH}" "{HTTP_VERSION}"\" "{HTTP_CLIERROR}.+ { BEGIN(INITIAL); return CLFWEBPROBES_BOTSEARCH_SUFF; } /* WordPress. HTTP 200 OK responses to /wp-login.php via POST are failed requests, but GET or 302 aren’t. */ " \"POST "{WORDPRESS_LOGIN}" "{HTTP_VERSION}"\" 200".+ { BEGIN(INITIAL); return CLF_WORDPRESS_SUFF; } /* OpenSMTPD. */ /* Unsupported command when attempting to log in. */ [a-z0-9]+" smtp event=failed-command address=" { BEGIN(opensmtpd_failedcmd); return OPENSMTPD_FAILED_CMD_PREF; } "host="{HOSTNAME}" command=\"".+"\" result=\"503 5.5.1 Invalid command: Command not supported\"" { BEGIN(INITIAL); return OPENSMTPD_UNSUPPORTED_CMD_SUFF; } /* Bad credentials */ "host="{HOSTNAME}" command=\"AUTH ".+"\" result=\"535 Authentication failed\"" { BEGIN(INITIAL); return OPENSMTPD_AUTHFAIL_SUFF; } /* Courier IMAP/POP */ "LOGIN FAILED, "(user|method)=[^ ,]+", ip=" { return COURIER_AUTHFAIL_PREF; } /* OpenVPN */ ":"{NUMBER}" TLS Error: TLS handshake failed" { return OPENVPN_TLS_ERR_SUFF; } /** COMMON-USE TOKENS do not touch these **/ /* an IPv4 address */ {IPV4} { yylval.str = yytext; return IPv4; } {IPV4MAPPED6} { yylval.str = strrchr(yytext, ':')+1; return IPv4; } /* an IPv6 address */ /* standard | clouds implied | embedded IPv4 */ {IPV6} { yylval.str = strdup(yytext); return IPv6; } /* an host address (PTR) */ {HOSTADDR} { yylval.str = yytext; return HOSTADDR; } {NUMBER} { yylval.num = (int)strtol(yytext, (char **)NULL, 10); return INTEGER; } /* syslog timestamp */ /*{MONTH}\ +{DAYNO}\ +{HOUR}:{MINPS}:{MINPS} { return TIMESTAMP_SYSLOG; }*/ {TIMESTAMP_SYSLOG} { return TIMESTAMP_SYSLOG; } /* TAI64 timestamp */ "@"{TIMESTAMP_TAI64} { return AT_TIMESTAMP_TAI64; } {TIMESTAMP_TAI64} { return TIMESTAMP_TAI64; } /* iso8601 timestamp */ {TIMESTAMP_ISO8601} { return TIMESTAMP_ISO8601; } ": "[0-9]+" Time(s)" return REPETITIONS; /*[^ :]+:[^ ]+ { return FACILITYPRIORITY; } */ {WORD} { yylval.str = yytext; return WORD; } [ \n\r\t]+ /* eat blanks */ /* literals */ /*\n { return NEWLINE; } */ . { return yytext[0]; } /** end of COMMON-USE TOKENS **/ %% void scanner_init(char *str) { yy_scan_string(str); } void scanner_fin() { yy_delete_buffer(YY_CURRENT_BUFFER); } static int getsyslogpid(char *syslogbanner, int length) { int i; syslogbanner[length-2] = '\0'; for (i = length; syslogbanner[i] != '['; i--); return strtol(& syslogbanner[i+1], (char **)NULL, 10); } sshguard-2.3.1/src/parser/Makefile.in000644 001751 001751 00000102140 13412435607 020350 0ustar00kevinzkevinz000000 000000 # Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : libexec_PROGRAMS = sshg-parser$(EXEEXT) subdir = src/parser ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/common/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(libexecdir)" PROGRAMS = $(libexec_PROGRAMS) am_sshg_parser_OBJECTS = attack.$(OBJEXT) attack_parser.$(OBJEXT) \ attack_scanner.$(OBJEXT) parser.$(OBJEXT) sshg_parser_OBJECTS = $(am_sshg_parser_OBJECTS) sshg_parser_LDADD = $(LDADD) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/common depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/attack.Po \ ./$(DEPDIR)/attack_parser.Po ./$(DEPDIR)/attack_scanner.Po \ ./$(DEPDIR)/parser.Po am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = @MAINTAINER_MODE_FALSE@am__skiplex = test -f $@ || LEXCOMPILE = $(LEX) $(AM_LFLAGS) $(LFLAGS) AM_V_LEX = $(am__v_LEX_@AM_V@) am__v_LEX_ = $(am__v_LEX_@AM_DEFAULT_V@) am__v_LEX_0 = @echo " LEX " $@; am__v_LEX_1 = YLWRAP = $(top_srcdir)/ylwrap @MAINTAINER_MODE_FALSE@am__skipyacc = test -f $@ || am__yacc_c2h = sed -e s/cc$$/hh/ -e s/cpp$$/hpp/ -e s/cxx$$/hxx/ \ -e s/c++$$/h++/ -e s/c$$/h/ YACCCOMPILE = $(YACC) $(AM_YFLAGS) $(YFLAGS) AM_V_YACC = $(am__v_YACC_@AM_V@) am__v_YACC_ = $(am__v_YACC_@AM_DEFAULT_V@) am__v_YACC_0 = @echo " YACC " $@; am__v_YACC_1 = SOURCES = $(sshg_parser_SOURCES) DIST_SOURCES = $(sshg_parser_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__tty_colors_dummy = \ mgn= red= grn= lgn= blu= brg= std=; \ am__color_tests=no am__tty_colors = { \ $(am__tty_colors_dummy); \ if test "X$(AM_COLOR_TESTS)" = Xno; then \ am__color_tests=no; \ elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ am__color_tests=yes; \ elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ am__color_tests=yes; \ fi; \ if test $$am__color_tests = yes; then \ red=''; \ grn=''; \ lgn=''; \ blu=''; \ mgn=''; \ brg=''; \ std=''; \ fi; \ } am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__recheck_rx = ^[ ]*:recheck:[ ]* am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* # A command that, given a newline-separated list of test names on the # standard input, print the name of the tests that are to be re-run # upon "make recheck". am__list_recheck_tests = $(AWK) '{ \ recheck = 1; \ while ((rc = (getline line < ($$0 ".trs"))) != 0) \ { \ if (rc < 0) \ { \ if ((getline line2 < ($$0 ".log")) < 0) \ recheck = 0; \ break; \ } \ else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ { \ recheck = 0; \ break; \ } \ else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ { \ break; \ } \ }; \ if (recheck) \ print $$0; \ close ($$0 ".trs"); \ close ($$0 ".log"); \ }' # A command that, given a newline-separated list of test names on the # standard input, create the global log from their .trs and .log files. am__create_global_log = $(AWK) ' \ function fatal(msg) \ { \ print "fatal: making $@: " msg | "cat >&2"; \ exit 1; \ } \ function rst_section(header) \ { \ print header; \ len = length(header); \ for (i = 1; i <= len; i = i + 1) \ printf "="; \ printf "\n\n"; \ } \ { \ copy_in_global_log = 1; \ global_test_result = "RUN"; \ while ((rc = (getline line < ($$0 ".trs"))) != 0) \ { \ if (rc < 0) \ fatal("failed to read from " $$0 ".trs"); \ if (line ~ /$(am__global_test_result_rx)/) \ { \ sub("$(am__global_test_result_rx)", "", line); \ sub("[ ]*$$", "", line); \ global_test_result = line; \ } \ else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ copy_in_global_log = 0; \ }; \ if (copy_in_global_log) \ { \ rst_section(global_test_result ": " $$0); \ while ((rc = (getline line < ($$0 ".log"))) != 0) \ { \ if (rc < 0) \ fatal("failed to read from " $$0 ".log"); \ print line; \ }; \ printf "\n"; \ }; \ close ($$0 ".trs"); \ close ($$0 ".log"); \ }' # Restructured Text title. am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } # Solaris 10 'make', and several other traditional 'make' implementations, # pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it # by disabling -e (using the XSI extension "set +e") if it's set. am__sh_e_setup = case $$- in *e*) set +e;; esac # Default flags passed to test drivers. am__common_driver_flags = \ --color-tests "$$am__color_tests" \ --enable-hard-errors "$$am__enable_hard_errors" \ --expect-failure "$$am__expect_failure" # To be inserted before the command running the test. Creates the # directory for the log if needed. Stores in $dir the directory # containing $f, in $tst the test, in $log the log. Executes the # developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and # passes TESTS_ENVIRONMENT. Set up options for the wrapper that # will run the test scripts (or their associated LOG_COMPILER, if # thy have one). am__check_pre = \ $(am__sh_e_setup); \ $(am__vpath_adj_setup) $(am__vpath_adj) \ $(am__tty_colors); \ srcdir=$(srcdir); export srcdir; \ case "$@" in \ */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ *) am__odir=.;; \ esac; \ test "x$$am__odir" = x"." || test -d "$$am__odir" \ || $(MKDIR_P) "$$am__odir" || exit $$?; \ if test -f "./$$f"; then dir=./; \ elif test -f "$$f"; then dir=; \ else dir="$(srcdir)/"; fi; \ tst=$$dir$$f; log='$@'; \ if test -n '$(DISABLE_HARD_ERRORS)'; then \ am__enable_hard_errors=no; \ else \ am__enable_hard_errors=yes; \ fi; \ case " $(XFAIL_TESTS) " in \ *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ am__expect_failure=yes;; \ *) \ am__expect_failure=no;; \ esac; \ $(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) # A shell command to get the names of the tests scripts with any registered # extension removed (i.e., equivalently, the names of the test logs, with # the '.log' extension removed). The result is saved in the shell variable # '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, # we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", # since that might cause problem with VPATH rewrites for suffix-less tests. # See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. am__set_TESTS_bases = \ bases='$(TEST_LOGS)'; \ bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ bases=`echo $$bases` RECHECK_LOGS = $(TEST_LOGS) AM_RECURSIVE_TARGETS = check recheck TEST_SUITE_LOG = test-suite.log TEST_EXTENSIONS = @EXEEXT@ .test LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) am__set_b = \ case '$@' in \ */*) \ case '$*' in \ */*) b='$*';; \ *) b=`echo '$@' | sed 's/\.log$$//'`; \ esac;; \ *) \ b='$*';; \ esac am__test_logs1 = $(TESTS:=.log) am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log) TEST_LOGS = $(am__test_logs2:.test.log=.log) TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \ $(TEST_LOG_FLAGS) am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ $(top_srcdir)/test-driver $(top_srcdir)/ylwrap attack_parser.c \ attack_parser.h attack_scanner.c DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ RST2MAN_PROG = @RST2MAN_PROG@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = -I$(top_srcdir)/src/common -DSIMCLIST_NO_DUMPRESTORE AM_YFLAGS = -d BUILT_SOURCES = attack_parser.h EXTRA_DIST = tests.txt $(TESTS) LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) \ $(top_srcdir)/tap-driver.sh TESTS = test-sshg-parser sshg_parser_SOURCES = \ attack.c \ attack_parser.y \ attack_scanner.l \ parser.c \ parser.h all: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: .SUFFIXES: .c .l .log .o .obj .test .test$(EXEEXT) .trs .y $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/parser/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign src/parser/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) @list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(libexecdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libexecdir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(libexecdir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(libexecdir)$$dir" || exit $$?; \ } \ ; done uninstall-libexecPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(libexecdir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(libexecdir)" && rm -f $$files clean-libexecPROGRAMS: -test -z "$(libexec_PROGRAMS)" || rm -f $(libexec_PROGRAMS) attack_parser.h: attack_parser.c @if test ! -f $@; then rm -f attack_parser.c; else :; fi @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) attack_parser.c; else :; fi sshg-parser$(EXEEXT): $(sshg_parser_OBJECTS) $(sshg_parser_DEPENDENCIES) $(EXTRA_sshg_parser_DEPENDENCIES) @rm -f sshg-parser$(EXEEXT) $(AM_V_CCLD)$(LINK) $(sshg_parser_OBJECTS) $(sshg_parser_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/attack.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/attack_parser.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/attack_scanner.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/parser.Po@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .l.c: $(AM_V_LEX)$(am__skiplex) $(SHELL) $(YLWRAP) $< $(LEX_OUTPUT_ROOT).c $@ -- $(LEXCOMPILE) .y.c: $(AM_V_YACC)$(am__skipyacc) $(SHELL) $(YLWRAP) $< y.tab.c $@ y.tab.h `echo $@ | $(am__yacc_c2h)` y.output $*.output -- $(YACCCOMPILE) ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags # Recover from deleted '.trs' file; this should ensure that # "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create # both 'foo.log' and 'foo.trs'. Break the recipe in two subshells # to avoid problems with "make -n". .log.trs: rm -f $< $@ $(MAKE) $(AM_MAKEFLAGS) $< # Leading 'am--fnord' is there to ensure the list of targets does not # expand to empty, as could happen e.g. with make check TESTS=''. am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) am--force-recheck: @: $(TEST_SUITE_LOG): $(TEST_LOGS) @$(am__set_TESTS_bases); \ am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ redo_bases=`for i in $$bases; do \ am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ done`; \ if test -n "$$redo_bases"; then \ redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ if $(am__make_dryrun); then :; else \ rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ fi; \ fi; \ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ elif test -n "$$redo_logs"; then \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ st=0; \ errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ for i in $$redo_bases; do \ test -f $$i.trs && test -r $$i.trs \ || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ test -f $$i.log && test -r $$i.log \ || { echo "$$errmsg $$i.log" >&2; st=1; }; \ done; \ test $$st -eq 0 || exit 1; \ fi @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ ws='[ ]'; \ results=`for b in $$bases; do echo $$b.trs; done`; \ test -n "$$results" || results=/dev/null; \ all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ if test `expr $$fail + $$xpass + $$error` -eq 0; then \ success=true; \ else \ success=false; \ fi; \ br='==================='; br=$$br$$br$$br$$br; \ result_count () \ { \ if test x"$$1" = x"--maybe-color"; then \ maybe_colorize=yes; \ elif test x"$$1" = x"--no-color"; then \ maybe_colorize=no; \ else \ echo "$@: invalid 'result_count' usage" >&2; exit 4; \ fi; \ shift; \ desc=$$1 count=$$2; \ if test $$maybe_colorize = yes && test $$count -gt 0; then \ color_start=$$3 color_end=$$std; \ else \ color_start= color_end=; \ fi; \ echo "$${color_start}# $$desc $$count$${color_end}"; \ }; \ create_testsuite_report () \ { \ result_count $$1 "TOTAL:" $$all "$$brg"; \ result_count $$1 "PASS: " $$pass "$$grn"; \ result_count $$1 "SKIP: " $$skip "$$blu"; \ result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ result_count $$1 "FAIL: " $$fail "$$red"; \ result_count $$1 "XPASS:" $$xpass "$$red"; \ result_count $$1 "ERROR:" $$error "$$mgn"; \ }; \ { \ echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ $(am__rst_title); \ create_testsuite_report --no-color; \ echo; \ echo ".. contents:: :depth: 2"; \ echo; \ for b in $$bases; do echo $$b; done \ | $(am__create_global_log); \ } >$(TEST_SUITE_LOG).tmp || exit 1; \ mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ if $$success; then \ col="$$grn"; \ else \ col="$$red"; \ test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ fi; \ echo "$${col}$$br$${std}"; \ echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ echo "$${col}$$br$${std}"; \ create_testsuite_report --maybe-color; \ echo "$$col$$br$$std"; \ if $$success; then :; else \ echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ if test -n "$(PACKAGE_BUGREPORT)"; then \ echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ fi; \ echo "$$col$$br$$std"; \ fi; \ $$success || exit 1 check-TESTS: @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) @set +e; $(am__set_TESTS_bases); \ log_list=`for i in $$bases; do echo $$i.log; done`; \ trs_list=`for i in $$bases; do echo $$i.trs; done`; \ log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \ $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \ exit $$?; recheck: all @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) @set +e; $(am__set_TESTS_bases); \ bases=`for i in $$bases; do echo $$i; done \ | $(am__list_recheck_tests)` || exit 1; \ log_list=`for i in $$bases; do echo $$i.log; done`; \ log_list=`echo $$log_list`; \ $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ am__force_recheck=am--force-recheck \ TEST_LOGS="$$log_list"; \ exit $$? test-sshg-parser.log: test-sshg-parser @p='test-sshg-parser'; \ b='test-sshg-parser'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) .test.log: @p='$<'; \ $(am__set_b); \ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) @am__EXEEXT_TRUE@.test$(EXEEXT).log: @am__EXEEXT_TRUE@ @p='$<'; \ @am__EXEEXT_TRUE@ $(am__set_b); \ @am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ @am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \ @am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ @am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT) distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am $(MAKE) $(AM_MAKEFLAGS) check-TESTS check: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) check-am all-am: Makefile $(PROGRAMS) installdirs: for dir in "$(DESTDIR)$(libexecdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -rm -f attack_parser.c -rm -f attack_parser.h -rm -f attack_scanner.c -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) clean: clean-am clean-am: clean-generic clean-libexecPROGRAMS mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/attack.Po -rm -f ./$(DEPDIR)/attack_parser.Po -rm -f ./$(DEPDIR)/attack_scanner.Po -rm -f ./$(DEPDIR)/parser.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-libexecPROGRAMS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f ./$(DEPDIR)/attack.Po -rm -f ./$(DEPDIR)/attack_parser.Po -rm -f ./$(DEPDIR)/attack_scanner.Po -rm -f ./$(DEPDIR)/parser.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-libexecPROGRAMS .MAKE: all check check-am install install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \ check-am clean clean-generic clean-libexecPROGRAMS \ cscopelist-am ctags ctags-am distclean distclean-compile \ distclean-generic distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-libexecPROGRAMS install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \ recheck tags tags-am uninstall uninstall-am \ uninstall-libexecPROGRAMS .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: